diff --git a/appInfo.html b/appInfo.html new file mode 100644 index 0000000..0860fbc --- /dev/null +++ b/appInfo.html @@ -0,0 +1,52 @@ + + + + + + + + About Clear Paths PHL + + + + + +
+ +

About this tool

+

Clear Paths Philadelphia is a tool that helps pedestrians find + easier and safer routes to their destination. When providing a route, + the app uses open data to identify areas that may be unfriendly + to pedestrians. Some considerations include whether it's trash day, if + there are a lot of instances of cars parked on sidewalks or crosswalks, + sidewalk width, curb ramps, and Walk Score. +

+

Another vital part of the app's success is user-generated reports. Users + can report violations or events that impede upon walkability or accessibility. + These reports improve the route generated by the app by supplementing + the various data sources with real-time information. +

+

Everyone deserves a smooth journey, no matter how they travel. Obstructions + make the pedestrian experience more difficult and dangerous for everybody, + but individuals with impaired vision or restricted mobility are most affected + by this issue. By prioritizing the needs of these groups in our app, + Clear Paths Philadelphia contributes to the larger goal + of making our travel options more equitable and accessible for all. +

+
+ + \ No newline at end of file diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000..826a320 --- /dev/null +++ b/css/styles.css @@ -0,0 +1,244 @@ +html { + font-size: 24px; + font-family: 'Helvetica Neue'; +} + +body { + padding: 0; + margin: 0; + width: 100vw; + height: 100vh; +} + +#report-button { + height: 6%; + width: 30%; + position: absolute; + top: 25%; + bottom: 30%; + right: 0; + display: block; + padding: 0; + outline: none; + border: 0; + border-radius: 6px; + box-shadow: #eee 0 0 10px; + background-color: #8f1b1b; + color: white; + font-size: auto; + font-weight: bold; + cursor: pointer; + z-index: 1500; +} + +p { + font-size: 0.6em; + color: black; + text-align: left; +} + +.form-container { + display: none; + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + width: 75%; + height: 40%; + padding: 20px; + background-color: #f5f5f5; + border: 1px solid #ccc; + border-radius: 5px; + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); + z-index: 2000; +} + +#report-form { + width: 100%; + text-align: left; + color: black; + font-family: Arial, Helvetica, sans-serif; + font-size: 1em; + font-weight: bold; +} + +#submission { + position: absolute; + background-color: #8f1b1b; + right: 0; + bottom: 0; + color: white; + font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + font-weight: bold; + height: 12%; +} + +#close-form-button { + position: absolute; + top: 0; + right: 0; + color: black; + font-size: 0.6em; + padding: 5px; + font-weight: bold; + cursor: pointer; +} + +.marker { + background-image: url('../img/octagon-exclamation.png'); + background-size: cover; + width: 20px; + height:20px; + border-radius: 50%; + cursor: pointer; +} + +.map { + width: 100vw; + height: 100vh; + position: relative; +} + +.mapboxgl-popup { + max-width: 400px; + font: 20px; +} + +.mapboxgl-ctrl-geocoder, +.mapboxgl-ctrl-geocoder *, +.mapboxgl-ctrl-geocoder *:after, +.mapboxgl-ctrl-geocoder *:before { + -webkit-box-sizing:border-box; + -moz-box-sizing:border-box; + box-sizing:border-box; +} + +.mapboxgl-ctrl-geocoder { + font:15px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif; + position: relative; + background-color:white; + width: 95vw; + height: 6%; + border-radius:2px; + z-index: 1300; +} + +.mapbox-directions-origin .mapboxgl-ctrl-geocoder { + z-index: 1500; + position: relative; +} + +.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon { + background-image: none; +} + +.mapboxgl-ctrl-group button { + position: absolute; + width: 35vw; + height: 5vh; + display: block; + padding: 2px; + outline: none; + border: 0; + top: 10%; + right:55%; + box-sizing: border-box; + background-color: #25383C; + color: white; + font-size: 1.2em; + cursor: pointer; + z-index: 1500; +} + +.mapboxgl-ctrl-geocoder input[type='text'] { + font-size: 1.2em; + border:0; + background-color:transparent; + margin:0; + width: 100%; + height: 90%; + padding:12px 10px 10px 10px; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; +} + +.mapbox-directions-origin input[type='text'] { + box-shadow: 0 1px 0 0 #ddd; + position: relative; + z-index: auto; +} + +.mapboxgl-ctrl-geocoder button { + display: none; +} + +.mapbox-directions-inputs button { + display: none; +} + +.mapboxgl-ctrl-geocoder ul { + z-index: 2000; + top: 100%; + background-color:#fff; + border-radius: 0 0 3px 3px; + left:0; + list-style:none; + margin:0; + padding:0; + position:absolute; + width:100%; + overflow:hidden; + font-size:1.2em; + font-family: Arial, Helvetica, sans-serif; +} + +.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl-geocoder ul, +.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl-geocoder ul { + top:auto; + bottom:100%; +} + +.mapboxgl-ctrl-geocoder ul > li > a { + z-index: 2500; + clear: both; + cursor: default; + display: block; + padding: 5px 10px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + border-bottom:1px solid rgba(0,0,0,0.1); +} + +.mapboxgl-ctrl-geocoder ul > li:last-child > a { + border-bottom:none; +} + +.mapboxgl-ctrl-geocoder ul > li.active > a, +.mapboxgl-ctrl-geocoder ul > li > a:hover { + background-color:#eee; + text-decoration:none; + cursor:pointer; +} + +.directions-control { + width:95vw; + height:15vh; + z-index:1; + } +.directions-control.directions-control-directions { + box-sizing: border-box; + background:rgba(0,0,0,0.75); + color:#fff; + top:0; + right:0; + bottom:0; + padding: 10px; + overflow:auto; + overflow-x:hidden; + font-size: 1.5em; + font-weight: bold; + line-height: 2; + } \ No newline at end of file diff --git a/data/philadelphia-neighborhoods.json b/data/philadelphia-neighborhoods.json new file mode 100644 index 0000000..835440f --- /dev/null +++ b/data/philadelphia-neighborhoods.json @@ -0,0 +1,166 @@ +{ +"type": "FeatureCollection", +"name": "philadelphia-neighborhoods", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "NAME": "BRIDESBURG", "LISTNAME": "Bridesburg", "MAPNAME": "Bridesburg", "Shape_Leng": 27814.546520799999, "Shape_Area": 44586263.603200004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.067729845181233, 40.005402758971762 ], [ -75.067648557043526, 40.005198774366235 ], [ -75.067311471941622, 40.005358754783728 ], [ -75.065537078889818, 40.006001429263073 ], [ -75.064669565887968, 40.005982656112899 ], [ -75.063439165732419, 40.005915959355349 ], [ -75.06274271590425, 40.005967638954282 ], [ -75.061709020630488, 40.006693000395515 ], [ -75.05448438671813, 40.003651966010985 ], [ -75.054077829377022, 40.003494655930375 ], [ -75.054510790088941, 40.002806983687378 ], [ -75.05566625446545, 40.000971679710375 ], [ -75.056698487497655, 39.999332025358619 ], [ -75.058087491307177, 39.997405038103459 ], [ -75.058500498360615, 39.994802051654581 ], [ -75.059133502504338, 39.993333059583016 ], [ -75.059544822055727, 39.992379485952107 ], [ -75.059645504898427, 39.992146066684313 ], [ -75.059911506398464, 39.991530070604142 ], [ -75.059945506518574, 39.991452070457214 ], [ -75.062062511366747, 39.988651089763401 ], [ -75.063953515111862, 39.986300105640893 ], [ -75.064173515535145, 39.986028107949913 ], [ -75.064625515507814, 39.985632110815672 ], [ -75.06509451543495, 39.985219114255422 ], [ -75.065329515317245, 39.985013115362506 ], [ -75.065389515312646, 39.984959115814227 ], [ -75.065414515717777, 39.984937116081433 ], [ -75.065435515716942, 39.98491811603251 ], [ -75.065448515178005, 39.9849061164226 ], [ -75.065735940681208, 39.984986508434744 ], [ -75.06785757390746, 39.985615390430944 ], [ -75.069580360571251, 39.986316181671242 ], [ -75.069838854497803, 39.986042758871285 ], [ -75.070028349668306, 39.98584394134636 ], [ -75.070081137246007, 39.985713269051843 ], [ -75.070117312749431, 39.985655994076069 ], [ -75.07022273087783, 39.985449986720454 ], [ -75.07025331386258, 39.985421391868798 ], [ -75.070284233137869, 39.985406922360639 ], [ -75.07029630160433, 39.985403416209408 ], [ -75.070450453450363, 39.98542609806703 ], [ -75.07046623811442, 39.985431598069638 ], [ -75.070506912919839, 39.985450864178418 ], [ -75.070629009720207, 39.985522505883303 ], [ -75.070699150590841, 39.985550330503735 ], [ -75.070763290809865, 39.985632452215384 ], [ -75.070971262509858, 39.985802442193531 ], [ -75.071182237952272, 39.985896286526184 ], [ -75.071553195637208, 39.986120890560237 ], [ -75.071588647067529, 39.986091568321783 ], [ -75.071692029730116, 39.986006059604868 ], [ -75.071791532527968, 39.985923760758268 ], [ -75.073795836730241, 39.987469226619837 ], [ -75.075287104132784, 39.988619034144463 ], [ -75.077096918293606, 39.990014371752068 ], [ -75.077538661244617, 39.990368727214125 ], [ -75.078875590644756, 39.991539623660302 ], [ -75.080728229914826, 39.993603339468898 ], [ -75.081246614319781, 39.994180755922024 ], [ -75.082242668616672, 39.995331065803377 ], [ -75.082863356406676, 39.99598165119221 ], [ -75.082868209561667, 39.995987000796326 ], [ -75.082872044438687, 39.995991222967348 ], [ -75.082875112397261, 39.995994599263732 ], [ -75.082878443022807, 39.995999102553121 ], [ -75.08288355942139, 39.996004729485868 ], [ -75.082887735821686, 39.996010457115041 ], [ -75.082892521950171, 39.996015843003953 ], [ -75.082896155703708, 39.996020174931843 ], [ -75.08289926437952, 39.996023528746797 ], [ -75.082902991855548, 39.996027383501151 ], [ -75.082906620482277, 39.996032144202786 ], [ -75.082911553037135, 39.996037321750094 ], [ -75.082915962189489, 39.996042194297338 ], [ -75.082919716089236, 39.9960460325455 ], [ -75.082923235099884, 39.996050004995723 ], [ -75.082927393268605, 39.996054467144795 ], [ -75.082930783148541, 39.996058505973785 ], [ -75.082933876329108, 39.996061866635905 ], [ -75.082936970751092, 39.996065225524738 ], [ -75.082940068755505, 39.99606858269464 ], [ -75.082944201851902, 39.996073056874948 ], [ -75.082948339772145, 39.996077527563024 ], [ -75.082952481275001, 39.996081996532148 ], [ -75.082956627601646, 39.996086462009067 ], [ -75.082960777546276, 39.996090924866799 ], [ -75.082964933449801, 39.996095385159656 ], [ -75.082969093006639, 39.996099841933159 ], [ -75.082973257387351, 39.996104295214458 ], [ -75.082977426556482, 39.996108745903733 ], [ -75.082981601719837, 39.996113193128018 ], [ -75.082985781706967, 39.996117636860063 ], [ -75.08298996534748, 39.996122077072719 ], [ -75.082994156152694, 39.996126513847528 ], [ -75.082998351781754, 39.996130947130119 ], [ -75.083002552234561, 39.996135376920527 ], [ -75.083006759887439, 39.996139802372888 ], [ -75.083010972328807, 39.996144225233245 ], [ -75.08301519079977, 39.996148643728326 ], [ -75.083019415300313, 39.996153057858209 ], [ -75.083023647000957, 39.996157467650072 ], [ -75.083027883525432, 39.996161873949667 ], [ -75.083032127214594, 39.996166276811458 ], [ -75.083036375798258, 39.996170674380629 ], [ -75.083040632717129, 39.996175068539145 ], [ -75.083044895700965, 39.996179457432191 ], [ -75.083049446277329, 39.9961836827121 ], [ -75.08305368298187, 39.996188084509711 ], [ -75.083057926886539, 39.996192481969238 ], [ -75.083062176820761, 39.996196875063546 ], [ -75.083066703495234, 39.996201112401828 ], [ -75.083070928426778, 39.996205515727212 ], [ -75.083073879720288, 39.996208939764934 ], [ -75.083077434713317, 39.996212026426548 ], [ -75.083082449967364, 39.996215993993935 ], [ -75.083085676831118, 39.996219262248211 ], [ -75.083089409012786, 39.996222252110712 ], [ -75.083093709559819, 39.996226609437343 ], [ -75.08309909344851, 39.996230378331553 ], [ -75.083103614275274, 39.996234615532387 ], [ -75.083107008823418, 39.996237790370508 ], [ -75.083110405748201, 39.996240964362741 ], [ -75.083113807461146, 39.996244135762943 ], [ -75.083117211621413, 39.996247304516864 ], [ -75.083121756460599, 39.996251526957273 ], [ -75.08312630729408, 39.996255745932643 ], [ -75.083130861780944, 39.996259961388532 ], [ -75.083134282718163, 39.996263120620348 ], [ -75.083137706102619, 39.996266277205805 ], [ -75.083141133034175, 39.996269432972525 ], [ -75.083144563583474, 39.996272586120135 ], [ -75.083147996544696, 39.996275737521557 ], [ -75.083151433088332, 39.996278887204042 ], [ -75.083154872079319, 39.996282034240203 ], [ -75.083158314617265, 39.996285180457612 ], [ -75.083161759602561, 39.996288324028654 ], [ -75.083165208134901, 39.996291466780995 ], [ -75.083169810611636, 39.996295653616173 ], [ -75.083174417912176, 39.996299836959061 ], [ -75.083177877298041, 39.996302971853851 ], [ -75.083181339095816, 39.996306105002517 ], [ -75.083185959591063, 39.996310280542204 ], [ -75.083190584874714, 39.996314453489809 ], [ -75.083195216188045, 39.996318622072181 ], [ -75.083199851119375, 39.996322788035286 ], [ -75.083204490803851, 39.996326952306539 ], [ -75.083207975373128, 39.99633007246792 ], [ -75.083211461183907, 39.996333190855957 ], [ -75.083214949371268, 39.996336308398064 ], [ -75.083218439970608, 39.996339424194005 ], [ -75.083223100085448, 39.996343575423701 ], [ -75.083227763782943, 39.996347724934289 ], [ -75.083231264029976, 39.996350833745723 ], [ -75.083234767788667, 39.996353942638656 ], [ -75.083238273959296, 39.99635704978536 ], [ -75.083241781406812, 39.996360154258603 ], [ -75.083246463123118, 39.996364292473608 ], [ -75.083251148457407, 39.996368428069395 ], [ -75.083255838615543, 39.996372560172858 ], [ -75.083260532356377, 39.996376690557319 ], [ -75.083264055375381, 39.996379786381269 ], [ -75.083267580806421, 39.996382880459052 ], [ -75.083271108614028, 39.996385973690899 ], [ -75.083274638833558, 39.996389065176636 ], [ -75.083278171429697, 39.996392155816409 ], [ -75.083281705267353, 39.996395244682844 ], [ -75.083286421780315, 39.996399362079764 ], [ -75.083291141946674, 39.996403475957202 ], [ -75.083295865731046, 39.996407587215366 ], [ -75.083300593062717, 39.996411697654729 ], [ -75.083305324012414, 39.996415805474875 ], [ -75.08331005861551, 39.996419909775526 ], [ -75.083314796765876, 39.996424013257325 ], [ -75.083319538534283, 39.996428114119908 ], [ -75.08332428392066, 39.996432212363224 ], [ -75.083329031719273, 39.996436308860304 ], [ -75.083332595530123, 39.996439380400801 ], [ -75.083336161717568, 39.996442451095305 ], [ -75.083340917922939, 39.996446542380959 ], [ -75.083345677675638, 39.996450632847832 ], [ -75.083350441081706, 39.99645471979521 ], [ -75.083354014540973, 39.996457784350845 ], [ -75.083357591547326, 39.996460848087715 ], [ -75.083361168589377, 39.996463910924312 ], [ -75.083364748007966, 39.996466972914945 ], [ -75.083369522233326, 39.996471052904568 ], [ -75.083374301176434, 39.996475132102553 ], [ -75.083379081361272, 39.996479209527116 ], [ -75.083382668051783, 39.996482265378859 ], [ -75.083387153747381, 39.996486085472796 ], [ -75.083393738043497, 39.996491685215851 ], [ -75.083398229734115, 39.996495501844493 ], [ -75.083402424558585, 39.996499061988629 ], [ -75.083406020791628, 39.996502113556097 ], [ -75.083409619436623, 39.996505163377442 ], [ -75.083415319094669, 39.996509991101476 ], [ -75.083420420196802, 39.996514309348711 ], [ -75.083425224397402, 39.996518372011572 ], [ -75.083429431212139, 39.996521925224904 ], [ -75.083433638027387, 39.996525478438102 ], [ -75.083437246250625, 39.996528523074836 ], [ -75.083440855680067, 39.996531566838449 ], [ -75.083445969978669, 39.99653587728168 ], [ -75.083451086689578, 39.996540185978688 ], [ -75.083455300706575, 39.996543734853198 ], [ -75.083460120480879, 39.996547788865968 ], [ -75.083464941496914, 39.996551841105322 ], [ -75.083470065409784, 39.996556145463572 ], [ -75.083476096700068, 39.996561209752507 ], [ -75.083482130473612, 39.996566270494647 ], [ -75.083487091161487, 39.996571688344517 ], [ -75.083491441686931, 39.996575132264788 ], [ -75.08349579221283, 39.996578576184874 ], [ -75.08349973907761, 39.996582335099426 ], [ -75.083503463241911, 39.996585291422996 ], [ -75.083508090332202, 39.996589986098769 ], [ -75.083513554962295, 39.996594027159027 ], [ -75.083517869209999, 39.996597499969589 ], [ -75.083522037271649, 39.996601085617286 ], [ -75.083527265091291, 39.996605488797705 ], [ -75.083532692580548, 39.996610028168043 ], [ -75.083537706612589, 39.99661426689768 ], [ -75.083542193718657, 39.996617604062685 ], [ -75.08354640501544, 39.996621162781786 ], [ -75.083551379286448, 39.996625101443129 ], [ -75.083556353593451, 39.996629039204009 ], [ -75.083561177120885, 39.996633505072921 ], [ -75.083565729698066, 39.996637352843322 ], [ -75.083570059520696, 39.996640817003275 ], [ -75.083574374655598, 39.996643969063413 ], [ -75.083579289668236, 39.996647955002651 ], [ -75.083582975076723, 39.996650943761416 ], [ -75.0835866616207, 39.99665393344744 ], [ -75.083590348200289, 39.996656922233164 ], [ -75.083594034744905, 39.996659911918982 ], [ -75.083598948624683, 39.996663896929988 ], [ -75.083605101756902, 39.996668872136709 ], [ -75.083610430270824, 39.996673187548872 ], [ -75.083615346493488, 39.996677172613559 ], [ -75.083620261546272, 39.996681157650862 ], [ -75.083625177734717, 39.99668514361538 ], [ -75.083628864317717, 39.996688132399875 ], [ -75.083632550865701, 39.996691122084428 ], [ -75.083636867177191, 39.99669427416935 ], [ -75.083641196971769, 39.996697739226875 ], [ -75.083645751934043, 39.996701586148234 ], [ -75.083649882469899, 39.996705620536147 ], [ -75.083654304084561, 39.996709014742336 ], [ -75.083660005062242, 39.996713630740686 ], [ -75.083666201683513, 39.996718572714855 ], [ -75.083671695727773, 39.996722819886656 ], [ -75.083675850364543, 39.996726419633077 ], [ -75.083679603377931, 39.996729357699024 ], [ -75.083683899378698, 39.996732848099768 ], [ -75.083688360824169, 39.996736212594683 ], [ -75.08369348813504, 39.996740520625401 ], [ -75.083698687972259, 39.996744771773415 ], [ -75.083702973602939, 39.996749242259611 ], [ -75.083708017573073, 39.996753614129119 ], [ -75.083713062749652, 39.996757985125399 ], [ -75.083717390211248, 39.996761450125646 ], [ -75.083722646795593, 39.996765658440076 ], [ -75.085785756795588, 39.998345475107065 ], [ -75.0863274233797, 39.998883958095526 ], [ -75.086343150991596, 39.998899592938301 ], [ -75.086380408798249, 39.998936631451443 ], [ -75.08605388128241, 39.999107446433442 ], [ -75.079554459321656, 40.002525369310796 ], [ -75.077510022081569, 40.004131327177411 ], [ -75.076903893875098, 40.004757298701357 ], [ -75.076437467431276, 40.005038249315561 ], [ -75.075732078852567, 40.005605443873016 ], [ -75.074870554501913, 40.006330094607286 ], [ -75.07259756632763, 40.008118342299618 ], [ -75.068874478313873, 40.008582332973639 ], [ -75.06886663595337, 40.008552510904764 ], [ -75.068543771814831, 40.007324670034173 ], [ -75.068336961391722, 40.00692622449737 ], [ -75.067729845181233, 40.005402758971762 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "BUSTLETON", "LISTNAME": "Bustleton", "MAPNAME": "Bustleton", "Shape_Leng": 48868.458364799997, "Shape_Area": 114050423.594 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.015597892109454, 40.094871924086988 ], [ -75.017682822265456, 40.092756946142785 ], [ -75.021119447786873, 40.089132239522698 ], [ -75.021892263103723, 40.088316205239792 ], [ -75.022071114705057, 40.088175340362554 ], [ -75.022712246033308, 40.087501283695715 ], [ -75.024025440727257, 40.086165989017864 ], [ -75.024653233315945, 40.085431144403138 ], [ -75.025260186607568, 40.084822773562763 ], [ -75.026541733407569, 40.08361442263547 ], [ -75.027719155298286, 40.082365655770786 ], [ -75.028975923267367, 40.081004319393344 ], [ -75.030833262214756, 40.079069563216379 ], [ -75.031433393281574, 40.078508134825434 ], [ -75.032984908702474, 40.07679996004422 ], [ -75.033095041768576, 40.076778579014537 ], [ -75.03508602590837, 40.07461906784846 ], [ -75.036308199877325, 40.073334789258986 ], [ -75.036614578159146, 40.07309018839954 ], [ -75.03832634006308, 40.071271805256011 ], [ -75.039584479583553, 40.069852456979191 ], [ -75.040332610169742, 40.068755446675468 ], [ -75.040342160271891, 40.068741441635133 ], [ -75.040369302303958, 40.068632842154862 ], [ -75.040908158665644, 40.068945460520027 ], [ -75.041360875617713, 40.069291962253224 ], [ -75.04164130775051, 40.069706234481977 ], [ -75.041767922080226, 40.070281251493761 ], [ -75.041269156659837, 40.071105605113743 ], [ -75.039956890917935, 40.072229880762109 ], [ -75.039896617942318, 40.072674586565086 ], [ -75.040582224631848, 40.073647871127271 ], [ -75.042962103158573, 40.077055479354833 ], [ -75.043691215131815, 40.077483736652496 ], [ -75.043726956927429, 40.077850590250854 ], [ -75.047442579903461, 40.082914429029792 ], [ -75.050924219505092, 40.080272093701815 ], [ -75.05153297623113, 40.080624047899278 ], [ -75.052570957550259, 40.079584148418185 ], [ -75.054929710960096, 40.080981838696566 ], [ -75.057030890405159, 40.086781484295933 ], [ -75.05667255705805, 40.087066150534994 ], [ -75.056453758492651, 40.087429582667902 ], [ -75.056327087717605, 40.087820257886989 ], [ -75.056272877996307, 40.088326112330456 ], [ -75.056406793653721, 40.088781346576113 ], [ -75.056608378374463, 40.089109712884067 ], [ -75.057073715948917, 40.089752014656256 ], [ -75.057740420116957, 40.090021034231597 ], [ -75.058293218928583, 40.090184493103273 ], [ -75.063183338102476, 40.090542822417362 ], [ -75.063720928135709, 40.090598629464253 ], [ -75.064096026835898, 40.090678270796118 ], [ -75.064463998192835, 40.090877675504579 ], [ -75.06613139502754, 40.092470559450241 ], [ -75.065967752046632, 40.092675306278423 ], [ -75.068495563111853, 40.094638080058921 ], [ -75.069385845310975, 40.094483135885042 ], [ -75.067701656781352, 40.096224964852709 ], [ -75.06717265832711, 40.096772962544868 ], [ -75.065649662545866, 40.09835495669239 ], [ -75.064931663781152, 40.099092954564263 ], [ -75.064455665107232, 40.099584952784944 ], [ -75.064201665872034, 40.099846951519517 ], [ -75.063743667167259, 40.100321949584625 ], [ -75.063601667714963, 40.100466949507108 ], [ -75.063535668210619, 40.100533949182925 ], [ -75.062794669069746, 40.101300946783617 ], [ -75.062730669690382, 40.101367945934449 ], [ -75.061399672720171, 40.102741941683433 ], [ -75.060316675668034, 40.103859937622886 ], [ -75.059538677416143, 40.10465693420371 ], [ -75.059194678080118, 40.1050119329052 ], [ -75.058340680437027, 40.105892930277413 ], [ -75.057951680744353, 40.1061639292287 ], [ -75.057516681712585, 40.106377927354359 ], [ -75.057065682421126, 40.10663292582791 ], [ -75.057176682196641, 40.106694926188801 ], [ -75.055326684675066, 40.107990920556375 ], [ -75.054319686975916, 40.108692916695119 ], [ -75.052973689019566, 40.109636912296516 ], [ -75.052923688901231, 40.109669912262795 ], [ -75.052132689444747, 40.110221909507779 ], [ -75.051410278666268, 40.110726525458567 ], [ -75.050656692241233, 40.111252905098347 ], [ -75.049524693686777, 40.112042901261297 ], [ -75.049390694052903, 40.112135901403562 ], [ -75.049298694631958, 40.112199900371081 ], [ -75.048595531892744, 40.112691555901328 ], [ -75.048560496951822, 40.112673292095138 ], [ -75.047767655944824, 40.11225124109793 ], [ -75.041169788630711, 40.108402315391132 ], [ -75.038842114755752, 40.107113989565434 ], [ -75.0371420490265, 40.106964994075248 ], [ -75.035585814505964, 40.106748410091896 ], [ -75.034720676936416, 40.10627345982234 ], [ -75.033873517176872, 40.10572413141567 ], [ -75.032907291353226, 40.105154722681299 ], [ -75.029940085349182, 40.103289479981221 ], [ -75.028815480418587, 40.10256094444356 ], [ -75.027615582458665, 40.101842120586895 ], [ -75.026906464296118, 40.101589434577157 ], [ -75.025666730509599, 40.101117046690796 ], [ -75.024063568798624, 40.100739590561503 ], [ -75.022800669546683, 40.100412441645446 ], [ -75.021841622268767, 40.100100030511179 ], [ -75.019696421391686, 40.098300041077657 ], [ -75.018853649813352, 40.097647137031736 ], [ -75.018264577286942, 40.097075687857725 ], [ -75.015597892109454, 40.094871924086988 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "CEDARBROOK", "LISTNAME": "Cedarbrook", "MAPNAME": "Cedarbrook", "Shape_Leng": 20021.4158021, "Shape_Area": 24871744.631499995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.188475710387095, 40.072730381489826 ], [ -75.18845949445695, 40.072751334117996 ], [ -75.187063502394736, 40.074178327594097 ], [ -75.18609450664276, 40.075124322627332 ], [ -75.185835508306113, 40.075379321789278 ], [ -75.185377510242688, 40.075822320055309 ], [ -75.185034512427592, 40.076154318426006 ], [ -75.184950512658162, 40.076238318072122 ], [ -75.183684828744163, 40.077503194791525 ], [ -75.183397520520401, 40.077790310804374 ], [ -75.183111522294581, 40.078065308973819 ], [ -75.18289652322045, 40.078277308585051 ], [ -75.182615524131705, 40.078553307474472 ], [ -75.182303661411538, 40.078857430224879 ], [ -75.182051526910413, 40.079103304385214 ], [ -75.181817527802522, 40.079330303632467 ], [ -75.181471529730629, 40.079671301773878 ], [ -75.180899532197913, 40.080220299194202 ], [ -75.180581533411569, 40.080531298341519 ], [ -75.180273534972386, 40.080831296472326 ], [ -75.180017536288631, 40.081076295294245 ], [ -75.179754537865904, 40.081334294408272 ], [ -75.17921254081493, 40.081868291911853 ], [ -75.178709542280629, 40.08236828980386 ], [ -75.178221544476202, 40.082856287479579 ], [ -75.177694547372141, 40.083379284757712 ], [ -75.176526900683371, 40.084560386926242 ], [ -75.176479552873602, 40.084608279224824 ], [ -75.176436552916897, 40.084650278981336 ], [ -75.176168553229587, 40.084491279228743 ], [ -75.175871551995527, 40.084310278095572 ], [ -75.175329551126183, 40.08398927732199 ], [ -75.175070550903243, 40.083836277180502 ], [ -75.174780550296134, 40.083665276140515 ], [ -75.174154549269034, 40.083295275416816 ], [ -75.173590548328889, 40.08295927394397 ], [ -75.172949547978959, 40.082582273436685 ], [ -75.171904546389953, 40.081988271278306 ], [ -75.171659545705111, 40.081849270655731 ], [ -75.169912544065951, 40.080819267379326 ], [ -75.168241541002246, 40.079835264327478 ], [ -75.167639539931741, 40.079480262840548 ], [ -75.164968536987857, 40.07787025861542 ], [ -75.163553521861019, 40.077042506533317 ], [ -75.163594872884644, 40.076998160595544 ], [ -75.164073682385052, 40.0765038816402 ], [ -75.164617836471876, 40.075934692441983 ], [ -75.165596589509889, 40.074941264333937 ], [ -75.166166493944928, 40.074403068273035 ], [ -75.166722033720092, 40.073841098767993 ], [ -75.167214344573125, 40.073336324322852 ], [ -75.167688990864946, 40.07285870289823 ], [ -75.168334264599864, 40.072218427707391 ], [ -75.169026256830122, 40.071531614485679 ], [ -75.169594166335727, 40.070968007912853 ], [ -75.170098734389299, 40.070467799581735 ], [ -75.170686790036072, 40.06988362791698 ], [ -75.171300036236048, 40.069284011504827 ], [ -75.172260150853276, 40.06832205854009 ], [ -75.173047857789015, 40.067614739526654 ], [ -75.173566861694169, 40.06711356407915 ], [ -75.174209002958932, 40.066452937829759 ], [ -75.174764082380875, 40.065896524358685 ], [ -75.17535619504784, 40.065280170760708 ], [ -75.176530238030892, 40.06595928619425 ], [ -75.177297437234387, 40.066394115233877 ], [ -75.178044832269975, 40.066819875666909 ], [ -75.178702847532975, 40.067196074768262 ], [ -75.179372041713933, 40.067577801737663 ], [ -75.180146535675178, 40.068018240496293 ], [ -75.180541925843201, 40.068241102834904 ], [ -75.180960246351916, 40.068482305558184 ], [ -75.181771666297891, 40.068966586906441 ], [ -75.18251954200376, 40.069414203134215 ], [ -75.183255799983158, 40.069832176575197 ], [ -75.183948271315046, 40.070214680367492 ], [ -75.184730939334514, 40.070599612527353 ], [ -75.185918501143377, 40.071280819741872 ], [ -75.186621985791305, 40.071679126325549 ], [ -75.187330316651199, 40.072077548203822 ], [ -75.18810656322232, 40.072524968945395 ], [ -75.188475710387095, 40.072730381489826 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "CHESTNUT_HILL", "LISTNAME": "Chestnut Hill", "MAPNAME": "Chestnut Hill", "Shape_Leng": 56394.297194600003, "Shape_Area": 79664975.189899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.21220653400627, 40.086035376514964 ], [ -75.212104533070971, 40.08603037609781 ], [ -75.211990533301716, 40.086056376045654 ], [ -75.211879334134849, 40.086084175751516 ], [ -75.211866533982828, 40.086087375413726 ], [ -75.21152353337088, 40.085916374695962 ], [ -75.210447532347061, 40.085420372763544 ], [ -75.210386531954001, 40.085393372572909 ], [ -75.209768531568415, 40.085134371633906 ], [ -75.20939453089008, 40.08492837100151 ], [ -75.208738529245693, 40.084436369987465 ], [ -75.208410527568859, 40.084176369192846 ], [ -75.208105206255183, 40.083964460575707 ], [ -75.207838526272923, 40.083779368980828 ], [ -75.207647525525118, 40.083669368637395 ], [ -75.207239806668653, 40.083472030143028 ], [ -75.206709525022049, 40.083215366427652 ], [ -75.206320523452561, 40.082994365927242 ], [ -75.204863521571241, 40.082158363055328 ], [ -75.204714520938836, 40.082072363222693 ], [ -75.204145520026103, 40.081742362385526 ], [ -75.202650517447552, 40.080895359315953 ], [ -75.200926514521939, 40.079900356318696 ], [ -75.200376513314509, 40.079591355138923 ], [ -75.19849051046333, 40.078508351820972 ], [ -75.198332510090523, 40.078416351882041 ], [ -75.197719508847015, 40.07806235082375 ], [ -75.197599508885261, 40.077992350201207 ], [ -75.196417506983281, 40.077306348117325 ], [ -75.195936506931801, 40.077035347644262 ], [ -75.194990504961439, 40.076497346052946 ], [ -75.191738500209411, 40.074653339694656 ], [ -75.190829498155395, 40.074115338549014 ], [ -75.18925614555549, 40.073206575407028 ], [ -75.189276255391619, 40.073185707645749 ], [ -75.189630594386955, 40.072838916857236 ], [ -75.19045777892434, 40.072201194293079 ], [ -75.190892871713274, 40.07181915215277 ], [ -75.191370968694017, 40.071310753590588 ], [ -75.191703788779066, 40.070936225948124 ], [ -75.192043249105595, 40.070385566019269 ], [ -75.192549752781389, 40.069799449626039 ], [ -75.193291593049693, 40.069056978858022 ], [ -75.194544344760814, 40.067968952630274 ], [ -75.195013930249772, 40.067583171608916 ], [ -75.195231811296154, 40.06743651857542 ], [ -75.19552634499864, 40.067268261399192 ], [ -75.195885008052244, 40.067008200741071 ], [ -75.196448840973545, 40.066614767632814 ], [ -75.196796196058045, 40.066423372302665 ], [ -75.197245063139945, 40.065892026016527 ], [ -75.197872698341399, 40.065494093308331 ], [ -75.198082707196946, 40.065204561640968 ], [ -75.19816364952446, 40.065088681605424 ], [ -75.198262108621435, 40.064914350739762 ], [ -75.198392942819993, 40.064693667860844 ], [ -75.198567030531578, 40.064544551394917 ], [ -75.198770398687969, 40.064431388770629 ], [ -75.199019674762397, 40.064319245131585 ], [ -75.199282927042972, 40.064242714245971 ], [ -75.199608276843691, 40.064144025339687 ], [ -75.199905229077928, 40.063985867228986 ], [ -75.200127874989235, 40.063767219447449 ], [ -75.200272236410157, 40.06359390576069 ], [ -75.200354056845939, 40.063454507871811 ], [ -75.200822419667134, 40.063742828705728 ], [ -75.201162575944934, 40.063934457032943 ], [ -75.202144643090122, 40.062983997904368 ], [ -75.202500691080502, 40.06258017278892 ], [ -75.201917551948114, 40.061936653915922 ], [ -75.201868945733821, 40.061724013990634 ], [ -75.20183143461405, 40.061538640197917 ], [ -75.201857679464268, 40.061313671514675 ], [ -75.201919732328463, 40.06108266115082 ], [ -75.20209630020949, 40.060881531354752 ], [ -75.202264236868757, 40.060673373115236 ], [ -75.202414140354549, 40.06047165064281 ], [ -75.202511998170934, 40.060234599913031 ], [ -75.202486253355985, 40.059906156281251 ], [ -75.202288897168316, 40.059513012938091 ], [ -75.201810472983468, 40.058733295307611 ], [ -75.201483803800727, 40.058547705059524 ], [ -75.201328710636503, 40.058042672389846 ], [ -75.201238973138416, 40.057728579650551 ], [ -75.201322744032055, 40.057429481748535 ], [ -75.201573482735483, 40.056933450570355 ], [ -75.201895427465743, 40.056472438073754 ], [ -75.202306421687894, 40.055957666585741 ], [ -75.202804371907476, 40.05544482101579 ], [ -75.204510507133563, 40.054515346866189 ], [ -75.205341664403278, 40.053208923945128 ], [ -75.206213840179558, 40.05300511171793 ], [ -75.209194337631033, 40.052350394346909 ], [ -75.208965830252367, 40.052048157369747 ], [ -75.208767767166847, 40.051341319173716 ], [ -75.209920676199218, 40.050402405912628 ], [ -75.210229572623135, 40.0498071987248 ], [ -75.210260005067369, 40.049402598434334 ], [ -75.210165848210394, 40.049027118817961 ], [ -75.209755350609967, 40.04874650223158 ], [ -75.210631543682197, 40.047982930489518 ], [ -75.210690355003109, 40.048017722188519 ], [ -75.210901319823805, 40.048200943688201 ], [ -75.2113458364325, 40.048540701048388 ], [ -75.211433060466206, 40.048588229005908 ], [ -75.2115223296924, 40.048627754362514 ], [ -75.211615488512408, 40.048656637396213 ], [ -75.212005268304793, 40.0487336495991 ], [ -75.212709415148893, 40.048698233549295 ], [ -75.212854581094788, 40.048698059130913 ], [ -75.213000858437596, 40.048785803298287 ], [ -75.213041778800701, 40.048867840106396 ], [ -75.213078657841706, 40.0490579651552 ], [ -75.213054029808006, 40.049128412772099 ], [ -75.213155464406597, 40.04916448254869 ], [ -75.213380011757295, 40.049224915389395 ], [ -75.213707370014205, 40.04924770883121 ], [ -75.213816380530304, 40.049392158786503 ], [ -75.213981243872212, 40.049804619112408 ], [ -75.214195912964598, 40.050146499611103 ], [ -75.214327437064696, 40.050446305935218 ], [ -75.214551225009302, 40.050795068747021 ], [ -75.214908882100701, 40.051175027869611 ], [ -75.21538119392558, 40.051613294373496 ], [ -75.215688692812847, 40.051842602429879 ], [ -75.215811730792396, 40.051934353640391 ], [ -75.21626477720821, 40.052215526727814 ], [ -75.216703613758114, 40.052445203448201 ], [ -75.216858104661, 40.052555038473095 ], [ -75.216931102399997, 40.052639446946408 ], [ -75.217115383370597, 40.052866149961496 ], [ -75.217171673827707, 40.05295377499052 ], [ -75.217207140947494, 40.053023234520687 ], [ -75.217252817362805, 40.053114504299501 ], [ -75.217310695865109, 40.053256617829199 ], [ -75.217358593243517, 40.053359256648299 ], [ -75.217397350197899, 40.053421568040797 ], [ -75.217438079574293, 40.053493954600683 ], [ -75.217474917142397, 40.053567453681296 ], [ -75.217536914366093, 40.053717792067914 ], [ -75.2175833430164, 40.05387258145079 ], [ -75.21760504987661, 40.053977397942091 ], [ -75.217707908950104, 40.054616075546491 ], [ -75.217772958928606, 40.05513783597651 ], [ -75.217819524586318, 40.055364779046421 ], [ -75.217805002706584, 40.05539222051862 ], [ -75.217581235769202, 40.055351087424498 ], [ -75.217507800625995, 40.055320387262014 ], [ -75.217320089345662, 40.055434240561056 ], [ -75.217236078328398, 40.055485195887407 ], [ -75.217162425358097, 40.055535987697091 ], [ -75.21687218144092, 40.055864410118993 ], [ -75.2167655660826, 40.055959265304999 ], [ -75.216499512940899, 40.056099808181102 ], [ -75.216206318309901, 40.056172547402802 ], [ -75.216025479974306, 40.056205762192477 ], [ -75.21582052617913, 40.056218158772303 ], [ -75.215630647312494, 40.05619825350481 ], [ -75.215461545861302, 40.056168121288501 ], [ -75.215161996140395, 40.0561183099353 ], [ -75.214982144363404, 40.056125142019191 ], [ -75.214723769440894, 40.056185445246406 ], [ -75.214038630670402, 40.056507546454796 ], [ -75.213769529945594, 40.05668761838151 ], [ -75.213426746387995, 40.057000472092483 ], [ -75.212819877192359, 40.057802256822455 ], [ -75.212722701202196, 40.05808199810987 ], [ -75.212557667691698, 40.058383506961519 ], [ -75.212894394566803, 40.058190572327085 ], [ -75.213010947306657, 40.057797220628217 ], [ -75.213414031327005, 40.057577481217791 ], [ -75.213779211107408, 40.057261996307716 ], [ -75.214264673655322, 40.056803329306632 ], [ -75.214878475124536, 40.056565706636363 ], [ -75.215628117047515, 40.05704947030106 ], [ -75.216265749709564, 40.056837650663134 ], [ -75.216637292249928, 40.057294733206383 ], [ -75.216522826600951, 40.058346610257679 ], [ -75.217375904391716, 40.059297829164613 ], [ -75.217949732262625, 40.058305927440657 ], [ -75.219788083079422, 40.060679549440536 ], [ -75.21933189872729, 40.061005871521758 ], [ -75.221356403346732, 40.06414143988372 ], [ -75.218305365030986, 40.066716669313372 ], [ -75.216673345379533, 40.067683934144171 ], [ -75.215947410951003, 40.067225987893039 ], [ -75.214735741505194, 40.068429695698597 ], [ -75.216212026210457, 40.069235291061993 ], [ -75.216721394984773, 40.068802425132311 ], [ -75.217191718857009, 40.068546046332735 ], [ -75.218127480806928, 40.06805534538951 ], [ -75.219043155205497, 40.067788998930887 ], [ -75.220641794801594, 40.069434604213718 ], [ -75.219885086920783, 40.069974081243124 ], [ -75.22061987626536, 40.070370928674045 ], [ -75.220805242102728, 40.070170031296158 ], [ -75.221393486995765, 40.070749103722662 ], [ -75.221671715207293, 40.070442878999231 ], [ -75.222492808609417, 40.071251567526708 ], [ -75.221644366945043, 40.071857597583815 ], [ -75.221921884364065, 40.072017429370639 ], [ -75.221509188297546, 40.072476646062746 ], [ -75.221579221245236, 40.072661722088768 ], [ -75.221279212700495, 40.072874449827651 ], [ -75.220539785522547, 40.072858177626301 ], [ -75.218772252421402, 40.072897347383226 ], [ -75.215800137609392, 40.072870891438413 ], [ -75.215416391991354, 40.073235964542491 ], [ -75.215297077239413, 40.073371265945966 ], [ -75.217169639271987, 40.075057577996382 ], [ -75.215116179250401, 40.077127457132818 ], [ -75.215288490573101, 40.07714995098334 ], [ -75.215671595598707, 40.077154564311492 ], [ -75.216102937581354, 40.077074679799018 ], [ -75.216520201764681, 40.076924862593046 ], [ -75.216884347673243, 40.076881601255366 ], [ -75.217228970322751, 40.076926584298384 ], [ -75.218584338354688, 40.075741590460829 ], [ -75.222194027938684, 40.078391666808599 ], [ -75.221722548035757, 40.078920299033747 ], [ -75.222571159349513, 40.078690551849668 ], [ -75.223450065216014, 40.079259183140884 ], [ -75.223959405966639, 40.080029271362278 ], [ -75.223656470099314, 40.080330220617533 ], [ -75.224542427610231, 40.081535302438333 ], [ -75.226127489798742, 40.082786167588417 ], [ -75.22773521902397, 40.084126262627031 ], [ -75.228390042835159, 40.08472574516955 ], [ -75.230457988398413, 40.086019336836365 ], [ -75.230485403535837, 40.08603668904388 ], [ -75.229770524002376, 40.08675942379157 ], [ -75.229610525445452, 40.086923423584011 ], [ -75.229579525567388, 40.08695442346248 ], [ -75.229059528189453, 40.087470420403754 ], [ -75.228688530945817, 40.087840418716894 ], [ -75.228275532695179, 40.088252416648686 ], [ -75.227880534415064, 40.088643415084185 ], [ -75.227827535464641, 40.088697414275444 ], [ -75.227774535816238, 40.088746414734906 ], [ -75.227705535607342, 40.088819414191271 ], [ -75.225180549287913, 40.091348402320733 ], [ -75.223608557769509, 40.092908394582871 ], [ -75.222418555980269, 40.092233392995823 ], [ -75.221571553686005, 40.091756391390689 ], [ -75.221220553346669, 40.091558390811315 ], [ -75.22030355161057, 40.091031389399262 ], [ -75.220232551511145, 40.09099138947461 ], [ -75.220054551094307, 40.09089038871295 ], [ -75.2196485501441, 40.090655388635916 ], [ -75.217999546791589, 40.089706385690661 ], [ -75.21796254691688, 40.089685385633622 ], [ -75.216796544238449, 40.089016383998029 ], [ -75.216780544011101, 40.089006383504362 ], [ -75.21669454377124, 40.088956383019998 ], [ -75.215170540904566, 40.088075380539259 ], [ -75.21434653877094, 40.087606379072405 ], [ -75.213568537092314, 40.087155378493321 ], [ -75.213278536772819, 40.086976378082966 ], [ -75.213163537040884, 40.086873377956195 ], [ -75.213129387225266, 40.086836193345334 ], [ -75.213118536354543, 40.086824377851151 ], [ -75.212774535099896, 40.086446377004748 ], [ -75.212728534532445, 40.086389377250796 ], [ -75.212487533461825, 40.086181376739937 ], [ -75.212376533122892, 40.086091377126088 ], [ -75.212295533184928, 40.086050376413191 ], [ -75.21220653400627, 40.086035376514964 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "EAST_FALLS", "LISTNAME": "East Falls", "MAPNAME": "East Falls", "Shape_Leng": 27400.776417100002, "Shape_Area": 40576887.8464 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.184757777761206, 40.028294786520597 ], [ -75.18426199203212, 40.027895191900072 ], [ -75.184167896354737, 40.027788668128331 ], [ -75.183548876410072, 40.027315678697057 ], [ -75.183540967849623, 40.027309039014533 ], [ -75.182076829935994, 40.026079704590558 ], [ -75.181730728373708, 40.025688558285665 ], [ -75.17984875862814, 40.024115746289212 ], [ -75.179108370865322, 40.023382061421842 ], [ -75.178174678387137, 40.022598590321486 ], [ -75.176913973355312, 40.021482204470225 ], [ -75.176903121086383, 40.021472596179251 ], [ -75.174999119348911, 40.019896883543218 ], [ -75.173271180230785, 40.018412915640312 ], [ -75.172556061356445, 40.017782241441999 ], [ -75.175248661519745, 40.016515913681936 ], [ -75.175848693820484, 40.016115923673382 ], [ -75.178319665868884, 40.014502296449734 ], [ -75.181108482537482, 40.012680950127653 ], [ -75.182554455335932, 40.011821061456487 ], [ -75.184139140810672, 40.010928060607711 ], [ -75.185089366651297, 40.010588479100811 ], [ -75.185856566872843, 40.01035105403728 ], [ -75.186959499165894, 40.009989730184742 ], [ -75.187127263464248, 40.009966421210436 ], [ -75.18941770289932, 40.009087918402351 ], [ -75.189826015259584, 40.008866365344218 ], [ -75.190684333132594, 40.00833930812523 ], [ -75.192245608218826, 40.007291439160859 ], [ -75.192343210375867, 40.007201928538485 ], [ -75.192205605112335, 40.007119125374103 ], [ -75.192082800000307, 40.007036650932434 ], [ -75.191742354647587, 40.006649178050282 ], [ -75.191737656098283, 40.00659815214901 ], [ -75.19187755735976, 40.006575809367241 ], [ -75.192722620403302, 40.00646733481755 ], [ -75.192994369820653, 40.006636335143384 ], [ -75.193384257189678, 40.006833426601425 ], [ -75.196479476216382, 40.007836802492406 ], [ -75.196493434758565, 40.007838600551139 ], [ -75.197556646953984, 40.008182303278886 ], [ -75.203350019991262, 40.010116122215031 ], [ -75.205836593920523, 40.011267493864295 ], [ -75.206600393680787, 40.01166767526442 ], [ -75.206284205707419, 40.011924498716688 ], [ -75.206403206023694, 40.0120034988173 ], [ -75.207597206808614, 40.012720501120505 ], [ -75.207626207487479, 40.012737501922516 ], [ -75.207726206644978, 40.012806501255092 ], [ -75.207744586012723, 40.012819104197398 ], [ -75.207486266296158, 40.012947219780486 ], [ -75.206441632244548, 40.014736243905531 ], [ -75.206246069678585, 40.014696950336898 ], [ -75.206150878593732, 40.014736961981406 ], [ -75.205897388587232, 40.015339656966574 ], [ -75.205055845012367, 40.01505579120618 ], [ -75.202286050549915, 40.015823505668038 ], [ -75.202229986658821, 40.016076923231751 ], [ -75.202211298189226, 40.0161613963379 ], [ -75.201108107758216, 40.017060117718763 ], [ -75.200341497636842, 40.018558578698844 ], [ -75.198778027907892, 40.020228889594172 ], [ -75.196303219971981, 40.022186592992313 ], [ -75.196126216188006, 40.022015997537288 ], [ -75.195662866550364, 40.022364647230759 ], [ -75.195968820032206, 40.022653488886618 ], [ -75.195172164444486, 40.02319357265106 ], [ -75.193161705393678, 40.024103923200286 ], [ -75.193535756135404, 40.024457077789052 ], [ -75.19325873451757, 40.024942340468293 ], [ -75.192614252809307, 40.027324224831602 ], [ -75.192484139991706, 40.027405185720909 ], [ -75.192358353045904, 40.027444432541692 ], [ -75.191767212227106, 40.027561232311001 ], [ -75.191231079612194, 40.027537821091805 ], [ -75.191051073617501, 40.0275643904506 ], [ -75.190900300244309, 40.027606901913899 ], [ -75.190645984848004, 40.027757959220295 ], [ -75.190546548393698, 40.027889532683709 ], [ -75.190501329884697, 40.028033782434704 ], [ -75.1904766107602, 40.028392146450173 ], [ -75.190285814888099, 40.028869941401204 ], [ -75.190156566667895, 40.029000850112311 ], [ -75.189947535493403, 40.029137625290403 ], [ -75.189900066219337, 40.029156452044283 ], [ -75.189710279970399, 40.029231722728397 ], [ -75.189409587384105, 40.029293825160806 ], [ -75.188904462733802, 40.029352242981489 ], [ -75.188832899547819, 40.029422400546402 ], [ -75.188721866830505, 40.029465795514895 ], [ -75.188294945446287, 40.029578595168999 ], [ -75.1881268107404, 40.029685699189507 ], [ -75.187997988177003, 40.029805147074015 ], [ -75.187964764814424, 40.029864727372555 ], [ -75.187837979989496, 40.030092092762196 ], [ -75.187773378811201, 40.030354407801298 ], [ -75.187764727312413, 40.030583568805909 ], [ -75.187778852320093, 40.030780734121812 ], [ -75.187379658592207, 40.030432036180287 ], [ -75.186196116080097, 40.029478058606294 ], [ -75.184757777761206, 40.028294786520597 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "MOUNT_AIRY_EAST", "LISTNAME": "Mount Airy, East", "MAPNAME": "East Mount Airy", "Shape_Leng": 28845.549808, "Shape_Area": 43152469.566100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.18087372010821, 40.043248002340938 ], [ -75.180954001881616, 40.043170198685303 ], [ -75.180987036417903, 40.043209051078904 ], [ -75.181045264701211, 40.043331117213306 ], [ -75.181289704144163, 40.043665940094726 ], [ -75.181514680600699, 40.044208481250053 ], [ -75.181804003173568, 40.044829961628693 ], [ -75.182312612693934, 40.0459238711572 ], [ -75.182843743731553, 40.047090343813167 ], [ -75.183473783361919, 40.048319214401978 ], [ -75.183798498100714, 40.048906846773797 ], [ -75.18400720213431, 40.049274600077489 ], [ -75.184296969150097, 40.049773094810902 ], [ -75.184453458040991, 40.050066859800772 ], [ -75.18477800707241, 40.050676096775035 ], [ -75.185077577351379, 40.051238436236183 ], [ -75.185244517081813, 40.051551804036848 ], [ -75.185365050999451, 40.051778058875762 ], [ -75.185717253309136, 40.052467743692965 ], [ -75.186185309986442, 40.053256336763404 ], [ -75.186565144620388, 40.053942519493951 ], [ -75.186895604811411, 40.054509335095574 ], [ -75.187070099099103, 40.054851688797335 ], [ -75.187408696128841, 40.055471238003271 ], [ -75.188202886864786, 40.056897596482436 ], [ -75.188496308311784, 40.057393795342556 ], [ -75.189487667613434, 40.058384539420658 ], [ -75.190078431973504, 40.058956123519124 ], [ -75.190299126858008, 40.059160736719072 ], [ -75.19096921364725, 40.059906245079048 ], [ -75.191149087981827, 40.060157100291526 ], [ -75.191347007135988, 40.060417477929384 ], [ -75.191995660901028, 40.061244513404354 ], [ -75.193003676996426, 40.062558392874237 ], [ -75.194007908563293, 40.0639737518473 ], [ -75.194203790824517, 40.064408496383329 ], [ -75.195165685592528, 40.064894909568189 ], [ -75.1961488479282, 40.065414796190382 ], [ -75.196248845612615, 40.065814786493725 ], [ -75.196448840973545, 40.066614767632814 ], [ -75.195885008052244, 40.067008200741071 ], [ -75.19552634499864, 40.067268261399192 ], [ -75.195231811296154, 40.06743651857542 ], [ -75.195013930249772, 40.067583171608916 ], [ -75.194544344760814, 40.067968952630274 ], [ -75.193291593049693, 40.069056978858022 ], [ -75.192549752781389, 40.069799449626039 ], [ -75.192043249105595, 40.070385566019269 ], [ -75.191703788779066, 40.070936225948124 ], [ -75.191370968694017, 40.071310753590588 ], [ -75.190892871713274, 40.07181915215277 ], [ -75.19045777892434, 40.072201194293079 ], [ -75.189630594386955, 40.072838916857236 ], [ -75.189276255391619, 40.073185707645749 ], [ -75.18925614555549, 40.073206575407028 ], [ -75.189115496295841, 40.073125334743786 ], [ -75.188864495634149, 40.072972334594425 ], [ -75.188748495905912, 40.072909334063588 ], [ -75.188512121237594, 40.072780105919101 ], [ -75.18845949445695, 40.072751334117996 ], [ -75.188475710387095, 40.072730381489826 ], [ -75.18810656322232, 40.072524968945395 ], [ -75.187330316651199, 40.072077548203822 ], [ -75.186621985791305, 40.071679126325549 ], [ -75.185918501143377, 40.071280819741872 ], [ -75.184730939334514, 40.070599612527353 ], [ -75.183948271315046, 40.070214680367492 ], [ -75.183255799983158, 40.069832176575197 ], [ -75.18251954200376, 40.069414203134215 ], [ -75.181771666297891, 40.068966586906441 ], [ -75.180960246351916, 40.068482305558184 ], [ -75.180541925843201, 40.068241102834904 ], [ -75.180146535675178, 40.068018240496293 ], [ -75.179372041713933, 40.067577801737663 ], [ -75.178702847532975, 40.067196074768262 ], [ -75.178044832269975, 40.066819875666909 ], [ -75.177297437234387, 40.066394115233877 ], [ -75.176530238030892, 40.06595928619425 ], [ -75.17535619504784, 40.065280170760708 ], [ -75.174488017298927, 40.064777964070416 ], [ -75.174056369896704, 40.064528267555609 ], [ -75.173754128863536, 40.064353427460048 ], [ -75.172966568803702, 40.063897832573666 ], [ -75.172196862126228, 40.063452577051898 ], [ -75.171495370283637, 40.063046984136641 ], [ -75.17084680620718, 40.062670857617363 ], [ -75.17007097010196, 40.062195826213134 ], [ -75.169437823034414, 40.061842357369954 ], [ -75.168718247514789, 40.06144062931395 ], [ -75.167885936541126, 40.060975950979838 ], [ -75.16705084341163, 40.060509707215374 ], [ -75.166233105057103, 40.060045503484567 ], [ -75.16554765445612, 40.059614918552491 ], [ -75.164730322304919, 40.059100501232123 ], [ -75.16569138019932, 40.058119979473972 ], [ -75.166084910081651, 40.057738291349857 ], [ -75.167557469578398, 40.056306582077909 ], [ -75.168303066604508, 40.055582067473033 ], [ -75.168960443266187, 40.054943066873093 ], [ -75.17219417231135, 40.051783362569743 ], [ -75.172233560245303, 40.051745537342491 ], [ -75.172810358071871, 40.051191631879725 ], [ -75.173284164045, 40.050699995913362 ], [ -75.173243856329506, 40.050651977070054 ], [ -75.174921275656317, 40.049058648370497 ], [ -75.175545328217623, 40.048441981025469 ], [ -75.17659857305965, 40.047438329665226 ], [ -75.177758635400011, 40.046294025685462 ], [ -75.179612223182119, 40.044482565641246 ], [ -75.18087372010821, 40.043248002340938 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "GRAYS_FERRY", "LISTNAME": "Grays Ferry", "MAPNAME": "Grays Ferry", "Shape_Leng": 25521.572356199998, "Shape_Area": 31311634.9529 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.195356379944627, 39.920827594330014 ], [ -75.194285287083957, 39.925885034232934 ], [ -75.196717159534145, 39.928486467033927 ], [ -75.206467221120718, 39.933309659203687 ], [ -75.206333151468655, 39.933758122731589 ], [ -75.205126944866223, 39.93470292079347 ], [ -75.204802932870678, 39.935234184469536 ], [ -75.204684751159448, 39.935547610690321 ], [ -75.20467029565782, 39.935933570512027 ], [ -75.204522601999898, 39.936222929900062 ], [ -75.204522461895635, 39.936632619136383 ], [ -75.204504499364518, 39.93711214594915 ], [ -75.204517065956153, 39.937182658065346 ], [ -75.204554313863881, 39.938213014018473 ], [ -75.204650497161595, 39.940416746656339 ], [ -75.205250528434206, 39.940516746144652 ], [ -75.205250525187566, 39.941316740936351 ], [ -75.204650488358055, 39.94251673357023 ], [ -75.20394293149522, 39.942914715392142 ], [ -75.20305040075219, 39.943416728264886 ], [ -75.200350260002722, 39.943716727324095 ], [ -75.196950086142209, 39.942716734945591 ], [ -75.193770631846689, 39.94220110815634 ], [ -75.192769837601347, 39.942628288458451 ], [ -75.191723602201435, 39.942139679188955 ], [ -75.191187049986041, 39.94192650272678 ], [ -75.189716362344726, 39.941105816134055 ], [ -75.188890500781667, 39.940608423240377 ], [ -75.188049078887559, 39.940101645736313 ], [ -75.187577629305025, 39.940382188772332 ], [ -75.184942526881343, 39.940099941155935 ], [ -75.185498278292371, 39.937599858962258 ], [ -75.185978332400339, 39.93525740500187 ], [ -75.186244289022184, 39.934030878486794 ], [ -75.186500657867569, 39.932816227823245 ], [ -75.186769327309378, 39.931593047064901 ], [ -75.187024463693078, 39.930390411797944 ], [ -75.186244857093669, 39.930282941614699 ], [ -75.185778470487179, 39.930227432046294 ], [ -75.185230511190639, 39.930161079658824 ], [ -75.185329083590332, 39.929721473123962 ], [ -75.185487719578319, 39.928931563427263 ], [ -75.185678908004206, 39.928210005860009 ], [ -75.185732707490033, 39.927715298536725 ], [ -75.185988835857529, 39.926489013614216 ], [ -75.186245210503955, 39.925305811903321 ], [ -75.186539863816094, 39.924014014747335 ], [ -75.186741623184133, 39.923207129797063 ], [ -75.186834235869625, 39.922765717737185 ], [ -75.186953281204723, 39.922285418849839 ], [ -75.187333261196102, 39.92222843714417 ], [ -75.188933741212395, 39.921912064194352 ], [ -75.189260807710681, 39.921851234447303 ], [ -75.189556863823569, 39.921794679415839 ], [ -75.190153617357041, 39.9216806805102 ], [ -75.190546200585089, 39.921605681937045 ], [ -75.190949832681298, 39.921616884709948 ], [ -75.191316308955578, 39.921604023509822 ], [ -75.193966224533526, 39.921086489824695 ], [ -75.194545422738813, 39.92098129517121 ], [ -75.195079782088101, 39.920877479806158 ], [ -75.195356379944627, 39.920827594330014 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "OLNEY", "LISTNAME": "Olney", "MAPNAME": "Olney", "Shape_Leng": 32197.205270599999, "Shape_Area": 50308402.666699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.123625576275089, 40.045052015543341 ], [ -75.12281939315956, 40.044943400677461 ], [ -75.122083049548209, 40.044863775518152 ], [ -75.121410468495185, 40.044766459923473 ], [ -75.120787936743866, 40.044680336100129 ], [ -75.120148285997558, 40.044591840942083 ], [ -75.119526110717871, 40.044505760717257 ], [ -75.117514518547125, 40.044208669804107 ], [ -75.116935391573847, 40.044147282478725 ], [ -75.115952179465992, 40.044011219233568 ], [ -75.113241964784834, 40.043683259657712 ], [ -75.113045614210989, 40.04375636983746 ], [ -75.112781676471727, 40.043662407242408 ], [ -75.112753820430541, 40.043652490636994 ], [ -75.112687364241509, 40.043643630288635 ], [ -75.112593729317524, 40.043597473967196 ], [ -75.112504434424508, 40.043562418778713 ], [ -75.112429013753584, 40.043538683686002 ], [ -75.112358360254476, 40.043515058022962 ], [ -75.112291761834257, 40.043509861357599 ], [ -75.112227223335452, 40.043574389334992 ], [ -75.112118641183599, 40.04366724227576 ], [ -75.112078490912083, 40.043690742474041 ], [ -75.112278100452158, 40.0433563242483 ], [ -75.112464551434229, 40.042659501247492 ], [ -75.112904557470856, 40.041947936977273 ], [ -75.113388922212408, 40.041458612532921 ], [ -75.113972102669734, 40.04052543045708 ], [ -75.114334065488222, 40.040164274324894 ], [ -75.11453365234803, 40.039829852104923 ], [ -75.114325770694549, 40.038936898415038 ], [ -75.114071900035569, 40.038110028685615 ], [ -75.113787640455797, 40.037279161076079 ], [ -75.113430574935961, 40.036775342976519 ], [ -75.113169101496666, 40.036496422867614 ], [ -75.112451708838677, 40.035973327714451 ], [ -75.112081504704577, 40.035107100768613 ], [ -75.111541299727634, 40.034723451595646 ], [ -75.111158256920035, 40.034336430116078 ], [ -75.110918406061742, 40.033727795954348 ], [ -75.110824492315047, 40.03330667468326 ], [ -75.111028171844893, 40.032251447747235 ], [ -75.111020228040275, 40.03186568353297 ], [ -75.111164758173018, 40.030514134582141 ], [ -75.111045659625177, 40.030065655126187 ], [ -75.110861399043699, 40.029488376938438 ], [ -75.110995814042326, 40.029025162198238 ], [ -75.111170200840704, 40.028663387392598 ], [ -75.111718679591704, 40.028026223855925 ], [ -75.112109340465423, 40.027957396269088 ], [ -75.112555576510587, 40.02791992382739 ], [ -75.112764331134116, 40.027386134350436 ], [ -75.114662458415168, 40.027125212506824 ], [ -75.115559142394375, 40.026967782784027 ], [ -75.116043605583769, 40.02687620056664 ], [ -75.117147585094884, 40.026655050867198 ], [ -75.119517400445162, 40.026141859304012 ], [ -75.123494764780816, 40.025656291830394 ], [ -75.127221351788535, 40.025028917030866 ], [ -75.133258195872543, 40.023848249650854 ], [ -75.133292181724457, 40.0238416015696 ], [ -75.134238007689589, 40.023703313465631 ], [ -75.134254560593646, 40.023698267317656 ], [ -75.135801408051833, 40.022919333637297 ], [ -75.135807372538565, 40.022916037448447 ], [ -75.13580940716237, 40.022886181580851 ], [ -75.136684724387976, 40.022568704159148 ], [ -75.138355334192795, 40.02172125192174 ], [ -75.139964371948821, 40.020942032350248 ], [ -75.139355225127105, 40.023440429643884 ], [ -75.138662179929142, 40.026534786293318 ], [ -75.138385528919216, 40.028041523631146 ], [ -75.137733766685159, 40.031126307344685 ], [ -75.137400024340081, 40.032694787662876 ], [ -75.13899180351946, 40.032888598538158 ], [ -75.140005357094111, 40.034256553338643 ], [ -75.139323975910898, 40.034913522147178 ], [ -75.138137181449409, 40.035916236102118 ], [ -75.136473943757821, 40.037244326123265 ], [ -75.135857977499057, 40.037198260889873 ], [ -75.135076707678209, 40.038648382290965 ], [ -75.134784464589373, 40.038891989029707 ], [ -75.134736573372138, 40.046025325945074 ], [ -75.134862139324412, 40.046194066460487 ], [ -75.132882871574139, 40.046093365265811 ], [ -75.13215747271515, 40.046057948779392 ], [ -75.131304169308891, 40.046016280522331 ], [ -75.130415504791401, 40.045997234997998 ], [ -75.129541800731204, 40.045870576044635 ], [ -75.128543879531207, 40.045725901222994 ], [ -75.127388956241347, 40.045558424778491 ], [ -75.126625545747018, 40.04544793749097 ], [ -75.125635110215271, 40.045284274858531 ], [ -75.123630723016802, 40.04505270898705 ], [ -75.123625576275089, 40.045052015543341 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "PENNYPACK_PARK", "LISTNAME": "Pennypack Park", "MAPNAME": "Pennypack Park", "Shape_Leng": 87084.285588600003, "Shape_Area": 60140755.755399995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.056453758492651, 40.087429582667902 ], [ -75.05667255705805, 40.087066150534994 ], [ -75.057030890405159, 40.086781484295933 ], [ -75.054929710960096, 40.080981838696566 ], [ -75.052570957550259, 40.079584148418185 ], [ -75.05153297623113, 40.080624047899278 ], [ -75.050924219505092, 40.080272093701815 ], [ -75.047442579903461, 40.082914429029792 ], [ -75.043726956927429, 40.077850590250854 ], [ -75.043691215131815, 40.077483736652496 ], [ -75.042962103158573, 40.077055479354833 ], [ -75.040582224631848, 40.073647871127271 ], [ -75.039896617942318, 40.072674586565086 ], [ -75.039956890917935, 40.072229880762109 ], [ -75.041269156659837, 40.071105605113743 ], [ -75.041767922080226, 40.070281251493761 ], [ -75.04164130775051, 40.069706234481977 ], [ -75.041360875617713, 40.069291962253224 ], [ -75.040908158665644, 40.068945460520027 ], [ -75.040369302303958, 40.068632842154862 ], [ -75.040342160271891, 40.068741441635133 ], [ -75.040332610169742, 40.068755446675468 ], [ -75.038528780037126, 40.067712262777249 ], [ -75.037775376955693, 40.06728896063629 ], [ -75.037064301397734, 40.066877613185774 ], [ -75.036367485267633, 40.066466597016067 ], [ -75.035673087422822, 40.06599535324689 ], [ -75.035200068853896, 40.065743236869622 ], [ -75.034997421133639, 40.065548857149274 ], [ -75.034491846215261, 40.065147621089203 ], [ -75.034040426232664, 40.064620184854377 ], [ -75.033764575858939, 40.064010331932657 ], [ -75.033670858311424, 40.063288752662501 ], [ -75.033547409627246, 40.062261458865621 ], [ -75.033424369794432, 40.061407744046022 ], [ -75.033401111258229, 40.061244221733261 ], [ -75.033598081726538, 40.060817005251984 ], [ -75.03391027501624, 40.06014486140316 ], [ -75.034453438565009, 40.058782210072152 ], [ -75.034312240561675, 40.058247905993134 ], [ -75.033833075957659, 40.057901440314311 ], [ -75.034184546696835, 40.057315220890104 ], [ -75.034190285109602, 40.057305649525325 ], [ -75.034576714379284, 40.057449881996938 ], [ -75.034735314576494, 40.057204217135386 ], [ -75.03453596822358, 40.057116368633807 ], [ -75.036229589497964, 40.0546726471825 ], [ -75.036361765829525, 40.05407302149991 ], [ -75.036376302599749, 40.053709637603021 ], [ -75.036180068577139, 40.053206176101106 ], [ -75.03602458722807, 40.053073210805266 ], [ -75.036019153656511, 40.053063921437648 ], [ -75.036013608712906, 40.053054660975143 ], [ -75.03600797018467, 40.053045424431652 ], [ -75.036002258238, 40.053036205976341 ], [ -75.035996488209207, 40.053027003268362 ], [ -75.035990677921745, 40.053017810421409 ], [ -75.035984845162943, 40.053008622449504 ], [ -75.035979008819425, 40.05299943619471 ], [ -75.035973186678504, 40.052990246670902 ], [ -75.035967394184681, 40.052981048836727 ], [ -75.035961651396008, 40.052971839561927 ], [ -75.035955973828933, 40.052962612004734 ], [ -75.035950381505486, 40.052953363935011 ], [ -75.035944891077591, 40.052944089438896 ], [ -75.03593951912508, 40.052934784402872 ], [ -75.035934285777927, 40.052925443896363 ], [ -75.035929206444578, 40.052916063778085 ], [ -75.035924300047711, 40.05290663998997 ], [ -75.035919584374383, 40.052897167545979 ], [ -75.035915076040524, 40.052887641432477 ], [ -75.035910795104044, 40.05287805851917 ], [ -75.03590674060959, 40.052868413377226 ], [ -75.035902633220488, 40.052858712922237 ], [ -75.035898378899788, 40.052848963041683 ], [ -75.03589400089561, 40.052839168790193 ], [ -75.035889526114644, 40.052829331704494 ], [ -75.035884981283246, 40.052819457822423 ], [ -75.035880389793647, 40.052809548597743 ], [ -75.03587577723701, 40.052799609140337 ], [ -75.035871171619164, 40.052789642815128 ], [ -75.035866595088791, 40.052779652848606 ], [ -75.035862075651849, 40.052769642605647 ], [ -75.035857637763868, 40.052759616268347 ], [ -75.035853307087805, 40.052749577146258 ], [ -75.035849110422021, 40.05273952947676 ], [ -75.035845071086698, 40.052729476514088 ], [ -75.03584121474465, 40.052719421567808 ], [ -75.035837569401679, 40.052709368002745 ], [ -75.035834158305832, 40.052699320873614 ], [ -75.035831007156006, 40.052689282589732 ], [ -75.035828141615013, 40.05267925646065 ], [ -75.035825588445178, 40.052669247624017 ], [ -75.03582337217388, 40.052659258461524 ], [ -75.035821517292533, 40.052649292255012 ], [ -75.035820051734746, 40.052639354169905 ], [ -75.03581899882046, 40.052629447460284 ], [ -75.035818385419887, 40.052619574563266 ], [ -75.03581823598843, 40.052609739660895 ], [ -75.03581857732415, 40.052599946990583 ], [ -75.035819433918363, 40.052590199834192 ], [ -75.035820831433853, 40.052580501501325 ], [ -75.035822707965792, 40.052570846023826 ], [ -75.035824912942559, 40.052561216328172 ], [ -75.035827430036377, 40.052551610226395 ], [ -75.035830247568967, 40.052542026541474 ], [ -75.03583335148339, 40.052532464941308 ], [ -75.035836726623174, 40.052522923265506 ], [ -75.035840361274239, 40.052513401237405 ], [ -75.035844241451557, 40.052503896724339 ], [ -75.035848354305614, 40.052494408521625 ], [ -75.035852684607931, 40.052484936269465 ], [ -75.035857219545093, 40.052475477862899 ], [ -75.035861946267474, 40.052466032097279 ], [ -75.035866850754161, 40.052456597740274 ], [ -75.03587191898427, 40.052447173559393 ], [ -75.035877138072195, 40.052437759250282 ], [ -75.035882495240472, 40.052428351807777 ], [ -75.035887975224796, 40.05241895177226 ], [ -75.035893566383081, 40.052409557066525 ], [ -75.035899253559023, 40.052400165530386 ], [ -75.035905023831077, 40.052390777759463 ], [ -75.035910864385883, 40.052381391648979 ], [ -75.035916760067053, 40.052372005038656 ], [ -75.035922699124598, 40.052362618551925 ], [ -75.035928667609639, 40.052353229156012 ], [ -75.03593465146534, 40.052343836518808 ], [ -75.035940636670801, 40.052334439407943 ], [ -75.035946610376655, 40.052325036618832 ], [ -75.035952559769441, 40.052315626046536 ], [ -75.035958470792352, 40.052306207358967 ], [ -75.035964329424587, 40.052296779323783 ], [ -75.03597012281665, 40.052287340736363 ], [ -75.035975836983894, 40.052277889464115 ], [ -75.035981457869383, 40.052268425174987 ], [ -75.035986973831228, 40.052258945791834 ], [ -75.035992369641178, 40.052249450954783 ], [ -75.035997632485945, 40.05223993855909 ], [ -75.036002748308647, 40.0522304082726 ], [ -75.036007704296082, 40.052220857990442 ], [ -75.036012486391314, 40.052211287380565 ], [ -75.036017081781154, 40.052201694338152 ], [ -75.036021476444887, 40.052192077630885 ], [ -75.036025656325634, 40.052182436926635 ], [ -75.036029608610221, 40.052172770120571 ], [ -75.036033320449192, 40.052163076008135 ], [ -75.036036776614623, 40.052153354229446 ], [ -75.036039964329092, 40.052143601779584 ], [ -75.036042920482359, 40.052133805113279 ], [ -75.036045774485515, 40.052123924037751 ], [ -75.03604852733001, 40.052113963081631 ], [ -75.03605117294282, 40.052103927507794 ], [ -75.036053705178901, 40.052093824379483 ], [ -75.03605611558649, 40.052083659804296 ], [ -75.036058398056468, 40.05207343994531 ], [ -75.036060545344498, 40.052063170037663 ], [ -75.036062551305548, 40.052052857144609 ], [ -75.036064408659257, 40.052042507401474 ], [ -75.036066110161244, 40.052032126043393 ], [ -75.036067650801897, 40.0520217210615 ], [ -75.036069021030002, 40.052011296735373 ], [ -75.036070215872073, 40.052000860155943 ], [ -75.03607122804766, 40.051990417458548 ], [ -75.03607205144786, 40.051979974806208 ], [ -75.036072677620837, 40.051969538306544 ], [ -75.036073100457727, 40.051959114122695 ], [ -75.036073313849514, 40.051948708417591 ], [ -75.036073309344417, 40.051938327298913 ], [ -75.036073082004989, 40.051927976957387 ], [ -75.036072623343486, 40.051917664400854 ], [ -75.03607192732288, 40.051907393991989 ], [ -75.036070987798283, 40.051897172793907 ], [ -75.03606979628195, 40.051887007814578 ], [ -75.03606834787243, 40.051876904344361 ], [ -75.036066632982511, 40.051866867563163 ], [ -75.03606464773803, 40.051856906389922 ], [ -75.036062383795382, 40.051847024231655 ], [ -75.036059834973571, 40.051837229051777 ], [ -75.036056992856899, 40.051827526057664 ], [ -75.036053852507848, 40.051817921440154 ], [ -75.036050466313043, 40.051808365977976 ], [ -75.036046993702655, 40.051798713863505 ], [ -75.036043441777224, 40.051788963462378 ], [ -75.036039807797849, 40.051779124621504 ], [ -75.036036089061781, 40.051769206287517 ], [ -75.036032282866088, 40.051759217406996 ], [ -75.03602838537266, 40.051749165998743 ], [ -75.036024395050049, 40.051739061037118 ], [ -75.036020306852535, 40.051728911413306 ], [ -75.036016120420214, 40.051718726129387 ], [ -75.036011831878767, 40.051708514104291 ], [ -75.036007438525402, 40.05169828428469 ], [ -75.036002937693269, 40.05168804471694 ], [ -75.035998325472193, 40.051677805220336 ], [ -75.035993600366709, 40.05166757386889 ], [ -75.03598875850264, 40.051657359581554 ], [ -75.035983797177067, 40.051647171305007 ], [ -75.035978713687271, 40.051637017985897 ], [ -75.035973505366286, 40.051626907670602 ], [ -75.035968169475368, 40.051616850206031 ], [ -75.035962703311668, 40.051606854538733 ], [ -75.035957103072988, 40.05159692778728 ], [ -75.035951367155775, 40.051587080726456 ], [ -75.035945490586528, 40.051577320447073 ], [ -75.035939472933123, 40.05156765775147 ], [ -75.035933310393304, 40.05155809975826 ], [ -75.035927000264252, 40.051548655414102 ], [ -75.035920539807123, 40.05153933456571 ], [ -75.035913925147639, 40.051530146132116 ], [ -75.035907154826319, 40.051521097287228 ], [ -75.035900224932959, 40.051512197850101 ], [ -75.035893132764656, 40.051503456767456 ], [ -75.035885875654586, 40.051494882085642 ], [ -75.035878450863748, 40.051486483651495 ], [ -75.035870855689396, 40.051478270411636 ], [ -75.035863087500616, 40.051470249512271 ], [ -75.035855142351096, 40.051462431672718 ], [ -75.035847018781297, 40.051454824066951 ], [ -75.035838712880931, 40.051447436513989 ], [ -75.035830221947151, 40.051440277960495 ], [ -75.035821543276967, 40.051433357353105 ], [ -75.035812674239523, 40.051426681837953 ], [ -75.035803610888451, 40.051420262134386 ], [ -75.0357943517282, 40.0514141063165 ], [ -75.03578489405578, 40.051408223330874 ], [ -75.035775227796876, 40.051402601225782 ], [ -75.035765313516407, 40.051397112021007 ], [ -75.035755151123396, 40.051391728682844 ], [ -75.035744748745444, 40.051386453205382 ], [ -75.035734113410982, 40.05138128575458 ], [ -75.035723254491046, 40.051376226551888 ], [ -75.035712178978031, 40.051371276663474 ], [ -75.035700895071543, 40.051366436283111 ], [ -75.035689410935305, 40.051361706504579 ], [ -75.035677733633662, 40.051357086593818 ], [ -75.035665873673082, 40.051352577700044 ], [ -75.035653836910384, 40.051348179961586 ], [ -75.035641632680665, 40.051343894500064 ], [ -75.035629266804904, 40.051339722354051 ], [ -75.035616751068829, 40.051335661999893 ], [ -75.035604090050057, 40.051331716248853 ], [ -75.035591293155449, 40.051327884422115 ], [ -75.035578367413478, 40.051324166685752 ], [ -75.035565323330459, 40.051320564189083 ], [ -75.03555216676331, 40.051317077070422 ], [ -75.035538905875654, 40.051313706423763 ], [ -75.035525548867199, 40.051310452442792 ], [ -75.035512105108836, 40.051307315348964 ], [ -75.035498580421574, 40.051304296180859 ], [ -75.035484984212374, 40.051301394259696 ], [ -75.035471324608864, 40.051298611579661 ], [ -75.035457609810706, 40.051295948334477 ], [ -75.035443846846107, 40.051293404690227 ], [ -75.035430043914715, 40.051290980840697 ], [ -75.035416209180141, 40.051288677879811 ], [ -75.03540235084202, 40.051286496001381 ], [ -75.035388477099943, 40.051284435399189 ], [ -75.035374596117606, 40.051282497167207 ], [ -75.035360714923158, 40.051280681471518 ], [ -75.035346842851666, 40.051278989433811 ], [ -75.035332985759936, 40.051277421192516 ], [ -75.035319155361748, 40.051275977024488 ], [ -75.035305356342533, 40.051274657040423 ], [ -75.035291598037347, 40.051273462362076 ], [ -75.035277887438355, 40.051272394055694 ], [ -75.035264235124004, 40.051271451470349 ], [ -75.035250646915088, 40.051270635644606 ], [ -75.035237131011229, 40.051269946772337 ], [ -75.03522369557605, 40.051269385947542 ], [ -75.035210348809159, 40.051268953364044 ], [ -75.035197100045508, 40.051268650143619 ], [ -75.035183955178027, 40.051268475524417 ], [ -75.035170922370327, 40.051268430600544 ], [ -75.035158010957275, 40.051268516493693 ], [ -75.035145229174617, 40.05126873249759 ], [ -75.035132583978523, 40.051269080578699 ], [ -75.035120083604653, 40.051269560030718 ], [ -75.035107730143551, 40.051270177210426 ], [ -75.035095409289127, 40.051271063672914 ], [ -75.035083073376114, 40.051272267849427 ], [ -75.035070723899764, 40.051273781665799 ], [ -75.035058368320662, 40.051275594485759 ], [ -75.035046006926706, 40.051277699107672 ], [ -75.035033647178324, 40.051280084895339 ], [ -75.03502129057091, 40.051282743774614 ], [ -75.035008942150213, 40.05128566685422 ], [ -75.034996604655021, 40.051288844287321 ], [ -75.034984284266329, 40.051292268110593 ], [ -75.034971982551639, 40.051295928449534 ], [ -75.034959705691932, 40.051299817340734 ], [ -75.034947455254837, 40.051303924909732 ], [ -75.034935237457304, 40.051308242292976 ], [ -75.034923056173668, 40.051312760571527 ], [ -75.034910912935416, 40.05131747077106 ], [ -75.034898813959629, 40.05132236402806 ], [ -75.034886763120682, 40.051327431423609 ], [ -75.034874763121394, 40.051332664011028 ], [ -75.034862819007571, 40.051338052899197 ], [ -75.03485093468953, 40.051343588268914 ], [ -75.034839112870287, 40.051349261173627 ], [ -75.03482735969483, 40.051355064550151 ], [ -75.034815676802822, 40.051360986723623 ], [ -75.034804070339433, 40.051367020630913 ], [ -75.034792543043665, 40.051373156425214 ], [ -75.034781097618435, 40.051379385159962 ], [ -75.034769741452379, 40.051385697999258 ], [ -75.034758474905672, 40.051392085941146 ], [ -75.034747304195591, 40.051398540122094 ], [ -75.034736233232493, 40.051405050723027 ], [ -75.034725264683459, 40.05141160969756 ], [ -75.034714403594208, 40.051418208154473 ], [ -75.034703653839287, 40.051424837174821 ], [ -75.034693019329112, 40.051431486939535 ], [ -75.034682502766785, 40.051438148502051 ], [ -75.034672110369527, 40.051444812998845 ], [ -75.034661843632989, 40.051451472355858 ], [ -75.034651708810514, 40.051458116809293 ], [ -75.034641708605136, 40.051464737412637 ], [ -75.034631802072809, 40.051471361130645 ], [ -75.034621937186671, 40.051478028181791 ], [ -75.034612113982703, 40.051484737665874 ], [ -75.034602330190197, 40.05149148772712 ], [ -75.034592585809094, 40.051498278365543 ], [ -75.034582879740086, 40.051505107753023 ], [ -75.034573210775733, 40.051511976762178 ], [ -75.034563579024152, 40.051518882692299 ], [ -75.034553982142526, 40.051525825488135 ], [ -75.034544420202892, 40.051532803349197 ], [ -75.03453489316928, 40.051539817175723 ], [ -75.034525398770953, 40.051546865111966 ], [ -75.034515937043892, 40.051553946257677 ], [ -75.034506506852722, 40.051561059684992 ], [ -75.034497107062151, 40.051568204466058 ], [ -75.034487737708147, 40.051575379700658 ], [ -75.034478396447952, 40.051582585333399 ], [ -75.034469083353585, 40.051589819563958 ], [ -75.034459797289742, 40.051597081464358 ], [ -75.03445053829239, 40.051604370134463 ], [ -75.0344413051902, 40.051611685546504 ], [ -75.034432095676323, 40.051619026745009 ], [ -75.034422910994309, 40.051626391957228 ], [ -75.034413748837366, 40.051633780227561 ], [ -75.034404608034109, 40.05164119152839 ], [ -75.034395489791891, 40.051648624987145 ], [ -75.034386390632662, 40.051656079620564 ], [ -75.03437731179983, 40.051663553655906 ], [ -75.03436825212205, 40.051671047065625 ], [ -75.034359210463847, 40.051678558921658 ], [ -75.034350184518544, 40.051686088268497 ], [ -75.034341176664952, 40.051693634261376 ], [ -75.034332182289532, 40.051701194989043 ], [ -75.034323203699088, 40.051708771407156 ], [ -75.034314237451483, 40.051716361632202 ], [ -75.03430528475414, 40.051723964791663 ], [ -75.03429634443566, 40.051731580857854 ], [ -75.034287414261357, 40.051739207074839 ], [ -75.034278495366536, 40.051746844370449 ], [ -75.034269584309186, 40.051754490861228 ], [ -75.034260683432052, 40.051762146602563 ], [ -75.034251789292981, 40.051769809710997 ], [ -75.034242901928025, 40.051777479286336 ], [ -75.034234020165826, 40.051785155300834 ], [ -75.034225144042367, 40.051792836854304 ], [ -75.034216272458323, 40.051800522118697 ], [ -75.034207404242323, 40.051808211066273 ], [ -75.034198538295058, 40.051815901868963 ], [ -75.034189673445084, 40.051823594499055 ], [ -75.034180810863845, 40.051831288984253 ], [ -75.034171947145197, 40.051838982540843 ], [ -75.034163083460584, 40.051846675196579 ], [ -75.034154217539282, 40.051854365095664 ], [ -75.034145348173851, 40.051862053110519 ], [ -75.034136476607728, 40.051869737468536 ], [ -75.034127600534205, 40.051877417214051 ], [ -75.034118718817922, 40.051885091419202 ], [ -75.034109832630207, 40.05189276011172 ], [ -75.034100938565089, 40.051900420507799 ], [ -75.034092036586429, 40.051908073507768 ], [ -75.034083125558922, 40.051915718183643 ], [ -75.034074206762, 40.051923351862555 ], [ -75.034065276645549, 40.051930975361586 ], [ -75.034056336416938, 40.051938587808273 ], [ -75.034047382634029, 40.051946187319082 ], [ -75.034038417639707, 40.05195377394945 ], [ -75.034029437991734, 40.051961345815819 ], [ -75.034020444861582, 40.051968902945909 ], [ -75.034011435978542, 40.051976443483959 ], [ -75.034002410135102, 40.051983968302402 ], [ -75.033993368610851, 40.051991474728389 ], [ -75.033984307891586, 40.051998962678802 ], [ -75.033975229184705, 40.052006431281114 ], [ -75.033966131354873, 40.052013879607465 ], [ -75.033957012095314, 40.052021306702223 ], [ -75.033947872613496, 40.052028711692905 ], [ -75.03393870939523, 40.052036094496344 ], [ -75.033929524891406, 40.052043452467402 ], [ -75.033920315587793, 40.052050785523015 ], [ -75.033911081484462, 40.052058093663042 ], [ -75.033901822653434, 40.052065375087196 ], [ -75.033892536751964, 40.052072629740039 ], [ -75.033883223888168, 40.052079854920947 ], [ -75.033873882818497, 40.052087052402655 ], [ -75.033864512515819, 40.052094218556611 ], [ -75.033855112907943, 40.052101355183211 ], [ -75.033845682967723, 40.05210845865399 ], [ -75.033836220280264, 40.052115530713877 ], [ -75.033826726125028, 40.052122568690059 ], [ -75.033817199330699, 40.052129572554733 ], [ -75.033807637626524, 40.052136540452153 ], [ -75.03379804097645, 40.052143473282477 ], [ -75.033788408317193, 40.052150368317406 ], [ -75.03377873964881, 40.052157225556911 ], [ -75.033769033799928, 40.052164044973352 ], [ -75.033759288535734, 40.052170823810663 ], [ -75.033749505027799, 40.052177562096524 ], [ -75.033739680969205, 40.052184258875322 ], [ -75.033729816360093, 40.052190914147118 ], [ -75.033719910101098, 40.052197526083738 ], [ -75.033709961056843, 40.052204093757261 ], [ -75.033699969263409, 40.052210616267523 ], [ -75.03368993237801, 40.052217093559094 ], [ -75.033679850472694, 40.052223523831557 ], [ -75.033669722412156, 40.05222990615701 ], [ -75.033659548196312, 40.052236240535407 ], [ -75.033649325554592, 40.052242525110962 ], [ -75.033639050864593, 40.052248762501144 ], [ -75.033628709853204, 40.052254957774785 ], [ -75.033618303619818, 40.052261112759865 ], [ -75.033607832200474, 40.052267226556168 ], [ -75.033597295559176, 40.052273300064016 ], [ -75.033586697282075, 40.052279331565927 ], [ -75.033576037333262, 40.052285321962195 ], [ -75.033565316920132, 40.052291270380302 ], [ -75.033554536006648, 40.052297177720334 ], [ -75.033543698143063, 40.052303043165288 ], [ -75.03353280212194, 40.052308867587598 ], [ -75.033521849186798, 40.052314649214523 ], [ -75.033510841644357, 40.052320389001729 ], [ -75.033499780666105, 40.052326086976827 ], [ -75.033488666288008, 40.052331742239637 ], [ -75.033477500852854, 40.052337354845555 ], [ -75.033466283153331, 40.052342925667055 ], [ -75.033455016739609, 40.052348453887021 ], [ -75.033443701647769, 40.052353938605258 ], [ -75.03343233901316, 40.05235938074965 ], [ -75.033420931214692, 40.052364779475376 ], [ -75.03340947704487, 40.052370135654918 ], [ -75.033397978882576, 40.052375448443499 ], [ -75.033386436763891, 40.052380716940881 ], [ -75.033374854130912, 40.052385943030593 ], [ -75.033363229884358, 40.052391124884444 ], [ -75.033351566330992, 40.052396263458121 ], [ -75.03333986350691, 40.052401357851359 ], [ -75.033328122583484, 40.052406408091905 ], [ -75.033316345903557, 40.052411414235053 ], [ -75.033304534674599, 40.052416375408413 ], [ -75.033292687653102, 40.052421293384562 ], [ -75.033280808425445, 40.052426166446281 ], [ -75.033268896991558, 40.052430994593578 ], [ -75.033256954522955, 40.052435777854065 ], [ -75.03324498215494, 40.052440517155709 ], [ -75.033232979959649, 40.052445210698039 ], [ -75.033220951415259, 40.05244985946441 ], [ -75.033208895386494, 40.05245446252691 ], [ -75.033196814216126, 40.052459019940905 ], [ -75.033184709039517, 40.052463532634349 ], [ -75.033172579892707, 40.052467999706934 ], [ -75.033160429154705, 40.052472420313997 ], [ -75.033148256789318, 40.052476795355616 ], [ -75.033136063968101, 40.05248112485959 ], [ -75.033123853069895, 40.052485407981059 ], [ -75.033111624094659, 40.052489644720048 ], [ -75.033099378213905, 40.052493835104194 ], [ -75.03308711659902, 40.052497979161302 ], [ -75.033074840457488, 40.052502076018783 ], [ -75.03306255092474, 40.052506126604634 ], [ -75.033050248000706, 40.052510130918748 ], [ -75.03303793527175, 40.0525140872439 ], [ -75.033025611530462, 40.052517996452586 ], [ -75.033013279083647, 40.052521859500366 ], [ -75.033000939174798, 40.052525674614635 ], [ -75.032988591803999, 40.052529441795286 ], [ -75.032976238106542, 40.05253316197031 ], [ -75.032963880461381, 40.052536834294884 ], [ -75.032951518868529, 40.052540458769016 ], [ -75.032939155706813, 40.0525440345479 ], [ -75.032926789732826, 40.052547563404239 ], [ -75.032914424532891, 40.052551043620767 ], [ -75.032902060107077, 40.052554475197468 ], [ -75.032889696455371, 40.052557858134392 ], [ -75.03287733705595, 40.052561193414803 ], [ -75.032864980809521, 40.052564479210652 ], [ -75.032852630022916, 40.052567716477476 ], [ -75.03284028590366, 40.052570904342879 ], [ -75.032827948415616, 40.052574043707018 ], [ -75.032815619937793, 40.052577133725109 ], [ -75.032803283133674, 40.052580138846018 ], [ -75.032790873198877, 40.05258292057681 ], [ -75.032778382186109, 40.052585472422109 ], [ -75.032765816763302, 40.052587803550168 ], [ -75.032753177777565, 40.052589922090398 ], [ -75.032740467319442, 40.052591834399657 ], [ -75.032727690813374, 40.052593551418859 ], [ -75.032714849142579, 40.052595080377301 ], [ -75.032701945532807, 40.052596428559632 ], [ -75.032688981930448, 40.052597605923495 ], [ -75.032675963904225, 40.05259861980899 ], [ -75.032662891129746, 40.052599478317902 ], [ -75.032649769067447, 40.052600191491024 ], [ -75.032636598672553, 40.052600764757152 ], [ -75.032623384198132, 40.052601209029575 ], [ -75.032610127734671, 40.052601530665065 ], [ -75.032596831228417, 40.052601739621259 ], [ -75.032583500248094, 40.05260184323825 ], [ -75.032570134469168, 40.052601849617858 ], [ -75.032556739388255, 40.052601767900661 ], [ -75.032543315888418, 40.052601605315857 ], [ -75.032529868294631, 40.052601370976362 ], [ -75.032516398625361, 40.052601073039355 ], [ -75.032502910070278, 40.052600719689757 ], [ -75.032489404647777, 40.052600319084824 ], [ -75.032475886682946, 40.052599880337389 ], [ -75.032462357094801, 40.052599409776519 ], [ -75.032448821307696, 40.052598918343172 ], [ -75.032435279069276, 40.052598412338767 ], [ -75.032421735875985, 40.052597900903869 ], [ -75.032408193746136, 40.052597392195658 ], [ -75.032394655869467, 40.052596894399123 ], [ -75.032381124264177, 40.052596415671438 ], [ -75.032367602083937, 40.052595965097808 ], [ -75.03235409138307, 40.052595549935191 ], [ -75.032340596486634, 40.052595179296496 ], [ -75.032327119412855, 40.05259486133891 ], [ -75.03231366455887, 40.052594603374921 ], [ -75.032300231527941, 40.052594415306729 ], [ -75.032286825924771, 40.052594303574317 ], [ -75.03227344969531, 40.052594278135302 ], [ -75.032260106029312, 40.052594347174647 ], [ -75.032246798152457, 40.052594517977063 ], [ -75.03222932707115, 40.052594912852385 ], [ -75.032222381327088, 40.052586242578379 ], [ -75.032215365245804, 40.052577601275487 ], [ -75.03220828834273, 40.052568985564612 ], [ -75.032201161376989, 40.052560390293984 ], [ -75.032193992692584, 40.052551812056898 ], [ -75.032186793012571, 40.052543246601715 ], [ -75.032179574231222, 40.052534689704558 ], [ -75.032172344728778, 40.05252613705855 ], [ -75.032165114056767, 40.05251758438429 ], [ -75.032157894109488, 40.052509027458107 ], [ -75.032150694402475, 40.052500462900802 ], [ -75.032143524523335, 40.052491885532966 ], [ -75.03213639519501, 40.052483291103087 ], [ -75.032129317140445, 40.052474675359591 ], [ -75.03212229866763, 40.052466035795916 ], [ -75.032115351779069, 40.052457365487662 ], [ -75.032108484746757, 40.052448662828432 ], [ -75.032101709537059, 40.05243992179404 ], [ -75.032095034494134, 40.052431138977724 ], [ -75.032088471512182, 40.052422310155684 ], [ -75.032082030142789, 40.05241343104862 ], [ -75.032075719937467, 40.052404497377367 ], [ -75.032069551583035, 40.052395505790585 ], [ -75.032063534703127, 40.052386450208679 ], [ -75.032057624027019, 40.052377348482501 ], [ -75.032051756460689, 40.052368224348662 ], [ -75.032045929625141, 40.052359078651982 ], [ -75.032040142385114, 40.052349910464457 ], [ -75.03203439342488, 40.052340723359272 ], [ -75.032028681645173, 40.052331515508214 ], [ -75.032023004595004, 40.052322289556514 ], [ -75.032017363481813, 40.052313044631724 ], [ -75.032011754719278, 40.052303782451006 ], [ -75.032006177099902, 40.052294503886905 ], [ -75.032000629416203, 40.052285209811878 ], [ -75.031995111704305, 40.052275899325785 ], [ -75.031989621513091, 40.052266575073723 ], [ -75.031984157671303, 40.052257237028037 ], [ -75.031978718971303, 40.05224788606116 ], [ -75.031973303034391, 40.052238523017863 ], [ -75.031967909860413, 40.052229147898174 ], [ -75.031962538205875, 40.052219762474806 ], [ -75.031957185728018, 40.052210366692258 ], [ -75.03195185235468, 40.052200962350959 ], [ -75.031946535779099, 40.052191548495244 ], [ -75.031941233550356, 40.052182127770372 ], [ -75.031935946875819, 40.052172699303753 ], [ -75.031930673340582, 40.052163264840431 ], [ -75.031925411737205, 40.052153825252823 ], [ -75.031920159722844, 40.052144380485537 ], [ -75.031914917261489, 40.052134931438786 ], [ -75.031909681974199, 40.052125478957286 ], [ -75.031904453825007, 40.052116023941267 ], [ -75.031899230434959, 40.052106567235469 ], [ -75.031894010596659, 40.052097109712385 ], [ -75.031888793138663, 40.052087651344308 ], [ -75.031883577988879, 40.052078193931635 ], [ -75.031878361633019, 40.052068737391231 ], [ -75.031873142863745, 40.052059282595494 ], [ -75.031867921644903, 40.052049830444652 ], [ -75.031862696769082, 40.052040381811246 ], [ -75.031857465893495, 40.052030936639788 ], [ -75.031852228945965, 40.052021496730667 ], [ -75.03184698237628, 40.052012062900978 ], [ -75.03184172735584, 40.052002635178361 ], [ -75.031836461505748, 40.051993214407638 ], [ -75.031831182447192, 40.051983801433551 ], [ -75.031825891351517, 40.051974396283811 ], [ -75.031820583425031, 40.051965001548119 ], [ -75.031815261046546, 40.05195561638174 ], [ -75.03180992066585, 40.051946241601691 ], [ -75.031804561039309, 40.051936878980626 ], [ -75.031799180995677, 40.051927528490864 ], [ -75.031793779327415, 40.051918191004916 ], [ -75.031788355998472, 40.051908867422853 ], [ -75.031782907494673, 40.051899557661677 ], [ -75.031777433743983, 40.051890263521656 ], [ -75.031771933538778, 40.051880985875293 ], [ -75.031766404536413, 40.051871724667151 ], [ -75.031760846700763, 40.051862480797439 ], [ -75.031755257652975, 40.05185325511092 ], [ -75.031749636185708, 40.051844048480042 ], [ -75.031743981091367, 40.05183486177728 ], [ -75.031738292369994, 40.051825695002627 ], [ -75.031732566435352, 40.051816549873323 ], [ -75.031726803287398, 40.05180742638936 ], [ -75.031721001718736, 40.051798325423206 ], [ -75.031715159350441, 40.051789247819627 ], [ -75.031709276146501, 40.051780194478802 ], [ -75.031703349728062, 40.051771166245501 ], [ -75.031697378887699, 40.051762163992166 ], [ -75.031691363625427, 40.051753187718759 ], [ -75.031685300390961, 40.051744238242478 ], [ -75.031679190283612, 40.051735317391213 ], [ -75.031673029789232, 40.051726425081888 ], [ -75.031666818907794, 40.051717561314533 ], [ -75.03166055522442, 40.051708727834026 ], [ -75.031654238703055, 40.051699925540625 ], [ -75.031647868136218, 40.051691155306784 ], [ -75.031641441181165, 40.051682417077004 ], [ -75.031634955459097, 40.05167371169604 ], [ -75.031628412105263, 40.051665040091869 ], [ -75.031621808740894, 40.051656403109142 ], [ -75.031615144194603, 40.051647800720161 ], [ -75.031608416015388, 40.051639235570157 ], [ -75.031601624239372, 40.05163070675875 ], [ -75.031594766487657, 40.051622215130841 ], [ -75.031587694299631, 40.051613778798135 ], [ -75.031580320307071, 40.051605412812847 ], [ -75.031572651322193, 40.051597122742535 ], [ -75.031564700013732, 40.051588914293276 ], [ -75.0315564755727, 40.051580792187742 ], [ -75.031547989424439, 40.051572763904751 ], [ -75.031539250795873, 40.05156483326676 ], [ -75.031530269977011, 40.05155700682468 ], [ -75.031521057330139, 40.051549289328918 ], [ -75.031511623145192, 40.051541687330314 ], [ -75.031501976576976, 40.051534206451805 ], [ -75.03149213033042, 40.051526851499275 ], [ -75.031482092352775, 40.05151962896818 ], [ -75.031471874177484, 40.051512543636647 ], [ -75.031461486130738, 40.051505601155355 ], [ -75.031450937331059, 40.051498808047462 ], [ -75.031440239312019, 40.051492169091112 ], [ -75.031429401228166, 40.051485689909313 ], [ -75.031418433369552, 40.051479377052857 ], [ -75.031407347269649, 40.05147323529998 ], [ -75.031396150911633, 40.051467270245972 ], [ -75.031384856964308, 40.051461487596903 ], [ -75.03137347461832, 40.051455892075538 ], [ -75.031362014127552, 40.051450491132933 ], [ -75.031350484682704, 40.051445289491923 ], [ -75.031338897781026, 40.051440292830925 ], [ -75.03132726374858, 40.051435506800594 ], [ -75.031315592911227, 40.051430937051705 ], [ -75.03130389445964, 40.05142658830696 ], [ -75.031292179855029, 40.051422467145045 ], [ -75.031280458251999, 40.051418579188997 ], [ -75.031268700077192, 40.051414930947139 ], [ -75.031256785524434, 40.051411527693382 ], [ -75.031244712539433, 40.051408362170534 ], [ -75.031232489718533, 40.051405424670463 ], [ -75.031220123243315, 40.051402707229961 ], [ -75.031207620502627, 40.05140020101333 ], [ -75.031194990020779, 40.051397898112903 ], [ -75.031182240321982, 40.051395790620823 ], [ -75.031169376488549, 40.051393868745826 ], [ -75.031156407080815, 40.051392123679896 ], [ -75.031143339379483, 40.051390549288101 ], [ -75.031130180881746, 40.051389134034068 ], [ -75.031116940039723, 40.051387871810505 ], [ -75.031103623071076, 40.051386753754031 ], [ -75.031090238572148, 40.051385770156507 ], [ -75.031076793895849, 40.051384913082501 ], [ -75.031063295187707, 40.051384175469025 ], [ -75.031049752251604, 40.051383546735529 ], [ -75.031036170061597, 40.051383019791224 ], [ -75.031022558385544, 40.051382584955846 ], [ -75.031008922197515, 40.051382235138632 ], [ -75.030995272436897, 40.051381960686946 ], [ -75.030981612942284, 40.051381753582241 ], [ -75.030967953409558, 40.051381605944457 ], [ -75.030954301263748, 40.051381508037828 ], [ -75.030940663821767, 40.051381452827137 ], [ -75.030927048508801, 40.051381430576591 ], [ -75.030913461506401, 40.05138143332303 ], [ -75.030899912546403, 40.051381452286293 ], [ -75.030886407810399, 40.051381479503263 ], [ -75.03087295468751, 40.051381506138377 ], [ -75.030859561702144, 40.051381524283961 ], [ -75.030846236279459, 40.05138152420416 ], [ -75.030832984564952, 40.051381498836136 ], [ -75.030819795924927, 40.051381479465043 ], [ -75.030806612559928, 40.051381591771005 ], [ -75.030793429676152, 40.051381838343772 ], [ -75.030780247598173, 40.051382211081524 ], [ -75.030767065479324, 40.051382701854756 ], [ -75.030753883608028, 40.05138330346184 ], [ -75.030740701137717, 40.051384007773279 ], [ -75.030727519564323, 40.051384806715056 ], [ -75.030714338041093, 40.051385692157574 ], [ -75.030701155649282, 40.051386657771772 ], [ -75.030687972785543, 40.051387693655442 ], [ -75.03067479087396, 40.051388793534912 ], [ -75.030661606761058, 40.051389948324989 ], [ -75.030648423042081, 40.051391151779754 ], [ -75.030635238906513, 40.051392394869488 ], [ -75.030622053507642, 40.051393669464673 ], [ -75.030608867134063, 40.051394968363731 ], [ -75.030595680110551, 40.051396283464868 ], [ -75.030582491554313, 40.051397607538718 ], [ -75.030569302997577, 40.051398931611089 ], [ -75.030556111178711, 40.051400249297309 ], [ -75.03054291997276, 40.051401551678651 ], [ -75.030529726190224, 40.051402830570147 ], [ -75.030516531255159, 40.051404079698031 ], [ -75.030503334356993, 40.051405290032712 ], [ -75.0304901358205, 40.051406453472296 ], [ -75.030476935934331, 40.051407562815257 ], [ -75.030463732680531, 40.051408609904286 ], [ -75.030450528690494, 40.051409587593326 ], [ -75.03043732198249, 40.051410486824842 ], [ -75.030424112845068, 40.051411300397312 ], [ -75.030410902738339, 40.051412021136841 ], [ -75.030397688509183, 40.051412639958194 ], [ -75.030384472788953, 40.051413149715344 ], [ -75.030371253523668, 40.051413543151185 ], [ -75.030358030136071, 40.051413834668871 ], [ -75.030344794348878, 40.051414143011506 ], [ -75.030331544557683, 40.05141447895366 ], [ -75.03031828204216, 40.05141483982252 ], [ -75.030305008117978, 40.051415222045016 ], [ -75.030291722929448, 40.051415622020265 ], [ -75.030278427792339, 40.051416036175347 ], [ -75.030265124058417, 40.051416460036911 ], [ -75.03025181183591, 40.051416890904349 ], [ -75.030238493648085, 40.051417324332164 ], [ -75.030225168431798, 40.051417757592013 ], [ -75.030211837538772, 40.051418186210668 ], [ -75.030198503456234, 40.05141860664277 ], [ -75.030185165157135, 40.051419015259803 ], [ -75.030171823957176, 40.051419408488684 ], [ -75.030158482307385, 40.05141978368431 ], [ -75.030145139252966, 40.051420135417722 ], [ -75.030131796073576, 40.051420461016079 ], [ -75.030118455292396, 40.05142075603392 ], [ -75.030105115810244, 40.051421018643033 ], [ -75.030091779015052, 40.051421243469989 ], [ -75.030078446222603, 40.051421426941715 ], [ -75.030065118712514, 40.051421566385422 ], [ -75.030051795493989, 40.051421657272279 ], [ -75.030038480225414, 40.051421696084766 ], [ -75.030025171843803, 40.051421680094542 ], [ -75.030011872872393, 40.051421604856088 ], [ -75.029998582320218, 40.051421465840662 ], [ -75.029985302602384, 40.051421261303425 ], [ -75.029972033935309, 40.051420985843087 ], [ -75.029958777598821, 40.051420636786837 ], [ -75.02994553373729, 40.051420210533912 ], [ -75.029932304837814, 40.051419703538912 ], [ -75.029919089909598, 40.051419111273226 ], [ -75.029905891439753, 40.051418430191504 ], [ -75.029892709536696, 40.051417657593042 ], [ -75.029879544380847, 40.051416788977015 ], [ -75.029866398459362, 40.051415820798077 ], [ -75.029853271916778, 40.051414749455375 ], [ -75.02984016603277, 40.051413572276068 ], [ -75.029827081023925, 40.051412283859051 ], [ -75.029814018169986, 40.051410881531382 ], [ -75.02980097878671, 40.051409361720069 ], [ -75.029787963018606, 40.051407720824308 ], [ -75.029774972217538, 40.05140595437085 ], [ -75.029762007663308, 40.051404059686888 ], [ -75.029749062055316, 40.051402072641636 ], [ -75.02973611801643, 40.051400075720416 ], [ -75.029723174303172, 40.051398070696038 ], [ -75.029710233222232, 40.051396058524062 ], [ -75.029697292430725, 40.051394039149031 ], [ -75.029684353100194, 40.051392012598711 ], [ -75.029671415194429, 40.051389979773262 ], [ -75.029658477614305, 40.051387938844577 ], [ -75.029645541495057, 40.051385890740605 ], [ -75.029632606800675, 40.051383836361488 ], [ -75.029619673567211, 40.051381774807098 ], [ -75.029606741794652, 40.051379706077377 ], [ -75.029593810275529, 40.051377631044872 ], [ -75.029580880217381, 40.051375548837015 ], [ -75.029567951584056, 40.051373460354071 ], [ -75.029555023240292, 40.051371364668107 ], [ -75.029542096285283, 40.051369263607171 ], [ -75.029529170827288, 40.051367154470817 ], [ -75.029516246758078, 40.051365039959514 ], [ -75.029503322978456, 40.051362918245189 ], [ -75.029490400623686, 40.05136079025575 ], [ -75.029477479693739, 40.051358655991201 ], [ -75.02946455898126, 40.051356516324006 ], [ -75.029451640901044, 40.051354369509291 ], [ -75.029438721903006, 40.051352216363966 ], [ -75.029425805465095, 40.051350057871502 ], [ -75.029412889280749, 40.051347893076155 ], [ -75.029399974521226, 40.051345722005763 ], [ -75.029387060015239, 40.051343544632488 ], [ -75.029374146898064, 40.051341361884354 ], [ -75.029361235169659, 40.051339173761271 ], [ -75.029348323694762, 40.051336979335396 ], [ -75.029335413644773, 40.051334778634384 ], [ -75.029322503812253, 40.051332572530761 ], [ -75.029309596539889, 40.051330361080012 ], [ -75.029296688313607, 40.05132814419882 ], [ -75.029283782647482, 40.051325921970545 ], [ -75.029270877234893, 40.051323693439343 ], [ -75.029257972039801, 40.051321459505544 ], [ -75.029245068197369, 40.051319221097046 ], [ -75.029232165779902, 40.051316976413474 ], [ -75.029219264715152, 40.051314727255168 ], [ -75.029206362696499, 40.051312472666531 ], [ -75.029193463238087, 40.051310212730733 ], [ -75.029180563960992, 40.051307948292461 ], [ -75.029167664901379, 40.051305678451548 ], [ -75.029154768401995, 40.051303403263525 ], [ -75.029141870912582, 40.051301123545301 ], [ -75.029128974812039, 40.051298838452162 ], [ -75.02911608006427, 40.051296548884359 ], [ -75.029103185497831, 40.05129425481411 ], [ -75.029090292320276, 40.051291955368974 ], [ -75.029077399324123, 40.051289651421371 ], [ -75.029064507680715, 40.051287342999132 ], [ -75.029051616218695, 40.051285030074425 ], [ -75.02903872610942, 40.051282712675004 ], [ -75.029025836181532, 40.051280390773137 ], [ -75.029012947606461, 40.051278064396648 ], [ -75.029000059212805, 40.051275733517677 ], [ -75.028987172135785, 40.051273399064222 ], [ -75.028974285240125, 40.051271060108327 ], [ -75.028961399697351, 40.051268716677733 ], [ -75.028948514335909, 40.051266368744685 ], [ -75.028935629119772, 40.051264017209469 ], [ -75.02892274525648, 40.05126166119949 ], [ -75.028909861538438, 40.051259301587322 ], [ -75.028896979137116, 40.051256938400627 ], [ -75.028884096917224, 40.051254570711528 ], [ -75.028871216014011, 40.051252199447909 ], [ -75.028858335256118, 40.051249824582108 ], [ -75.028845454643545, 40.051247446114004 ], [ -75.028832575347707, 40.051245064071459 ], [ -75.028819696233242, 40.051242677526425 ], [ -75.028806818399417, 40.051240288307142 ], [ -75.028793940710912, 40.05123789548562 ], [ -75.028781063167756, 40.051235499061832 ], [ -75.028768186941306, 40.051233099063587 ], [ -75.028755310824053, 40.051230696363291 ], [ -75.02874243605963, 40.051228289188352 ], [ -75.02872956019695, 40.051225880183779 ], [ -75.028716686858502, 40.051223466732267 ], [ -75.028703812421767, 40.051221051451179 ], [ -75.028690939301796, 40.051218632595628 ], [ -75.028678066327132, 40.051216210137852 ], [ -75.028665194633106, 40.051213785005721 ], [ -75.028652321876962, 40.051211357143863 ], [ -75.028639451572786, 40.051208926635461 ], [ -75.028626580206506, 40.051206493397224 ], [ -75.028613710156918, 40.051204056584531 ], [ -75.028600840180502, 40.051201617970008 ], [ -75.028587970313353, 40.051199176653448 ], [ -75.028575101762911, 40.051196731762381 ], [ -75.028562232114282, 40.051194285041802 ], [ -75.028549364881457, 40.05119183657483 ], [ -75.028536496622706, 40.051189384477858 ], [ -75.028523629608458, 40.051186930606818 ], [ -75.028510761532061, 40.051184474005971 ], [ -75.028497895871595, 40.051182015658867 ], [ -75.028485029149024, 40.051179554581857 ], [ -75.028472163670969, 40.051177091730828 ], [ -75.028459298266114, 40.051174627077977 ], [ -75.028446432970469, 40.051172159723045 ], [ -75.028433567747982, 40.051169690566319 ], [ -75.028420702598652, 40.051167219607727 ], [ -75.028407838693866, 40.051164746875067 ], [ -75.028394974862266, 40.051162272340555 ], [ -75.028382111103795, 40.051159796004249 ], [ -75.02836924741851, 40.051157317866043 ], [ -75.028356384977698, 40.051154837953796 ], [ -75.028343522610129, 40.05115235623969 ], [ -75.028330659144345, 40.051149872695994 ], [ -75.028317796886938, 40.05114738827843 ], [ -75.02830493587409, 40.051144902086762 ], [ -75.028292073726945, 40.051142414965746 ], [ -75.028279211652972, 40.051139926042872 ], [ -75.028266350787405, 40.051137436246108 ], [ -75.028253489995038, 40.05113494464748 ], [ -75.02824062923969, 40.051132452147243 ], [ -75.028227768521418, 40.051129958745392 ], [ -75.028214907876318, 40.051127463541647 ], [ -75.028202047268294, 40.051124967436316 ], [ -75.028189186697304, 40.051122470429341 ], [ -75.028176327298667, 40.051119973448628 ], [ -75.028163466801814, 40.051117474638367 ], [ -75.028150607513382, 40.051114974954238 ], [ -75.028137748225902, 40.051112475268653 ], [ -75.028124887840221, 40.051109973753476 ], [ -75.028112028626921, 40.051107472264619 ], [ -75.028099169414517, 40.051104970774311 ], [ -75.02808631027527, 40.051102467482139 ], [ -75.028073451137047, 40.051099964188573 ], [ -75.028060591999719, 40.051097460893544 ], [ -75.028047732899424, 40.051094956696922 ], [ -75.028034873800166, 40.051092452498828 ], [ -75.028022015909272, 40.051089947426846 ], [ -75.028009156811905, 40.051087443225882 ], [ -75.027996297751542, 40.051084938123267 ], [ -75.027983438692161, 40.051082433019204 ], [ -75.027970579669869, 40.051079927013504 ], [ -75.027957721783736, 40.051077421934316 ], [ -75.027944862727225, 40.051074916825947 ], [ -75.027932003671623, 40.05107241171617 ], [ -75.027919144616959, 40.051069906604923 ], [ -75.027906286698567, 40.051067402420159 ], [ -75.027893427645822, 40.051064897306041 ], [ -75.027880568557961, 40.051062393090668 ], [ -75.027867709434858, 40.051059889774059 ], [ -75.027854850348845, 40.051057385555801 ], [ -75.027841991191593, 40.051054883136537 ], [ -75.027829132035251, 40.051052380715774 ], [ -75.027816272879846, 40.051049878293604 ], [ -75.027803413653203, 40.0510473776704 ], [ -75.027790553256096, 40.051044877017965 ], [ -75.027777693995191, 40.051042377292084 ], [ -75.027764834735237, 40.051039877564719 ], [ -75.027751974232601, 40.051037379608601 ], [ -75.02773911486625, 40.051034882578961 ], [ -75.027726254329394, 40.051032385520138 ], [ -75.027713393721271, 40.05102989026026 ], [ -75.027700533077962, 40.051027395899141 ], [ -75.027687672363385, 40.051024903337023 ], [ -75.027674811649732, 40.051022410773406 ], [ -75.027661949693425, 40.05101991998098 ], [ -75.027649088873318, 40.051017430115095 ], [ -75.027636226810543, 40.051014942020423 ], [ -75.02762336584783, 40.051012455752435 ], [ -75.027610503678531, 40.051009970355508 ], [ -75.027597641474102, 40.051007485857241 ], [ -75.027584778026977, 40.05100500313025 ], [ -75.027571915679957, 40.051002522229943 ], [ -75.027559052090254, 40.0510000431008 ], [ -75.027546189600585, 40.05099756579844 ], [ -75.027533325868291, 40.0509950902672 ], [ -75.027520460893285, 40.050992616507216 ], [ -75.027507597018328, 40.050990144573916 ], [ -75.027494731900759, 40.050987674411786 ], [ -75.027481867883182, 40.05098520607644 ], [ -75.027469002622965, 40.050982739512222 ], [ -75.027456136083927, 40.050980275619423 ], [ -75.027443270644966, 40.050977813553324 ], [ -75.027430403963308, 40.050975353258437 ], [ -75.027417537138106, 40.050972896562882 ], [ -75.027404670277704, 40.050970440766136 ], [ -75.027391802138467, 40.050967987640718 ], [ -75.027378935063183, 40.050965537242227 ], [ -75.027366066709106, 40.050963089515101 ], [ -75.027353197112305, 40.050960643559229 ], [ -75.027340328579413, 40.050958200330214 ], [ -75.027327458767786, 40.050955759772613 ], [ -75.027314588848625, 40.050953321914164 ], [ -75.027301718822031, 40.050950886754876 ], [ -75.02728884748052, 40.050948455167152 ], [ -75.027275976067656, 40.050946025378373 ], [ -75.027263103376001, 40.050943598261 ], [ -75.027250231712117, 40.050941174770728 ], [ -75.027237358769355, 40.050938753951833 ], [ -75.027224484511706, 40.050936336704567 ], [ -75.027211611317924, 40.050933922184171 ], [ -75.027198736845349, 40.05093151033519 ], [ -75.027185861057788, 40.050929102057736 ], [ -75.027172986297984, 40.050926697407476 ], [ -75.027160110259373, 40.050924295428551 ], [ -75.027147232905804, 40.050921897021212 ], [ -75.027134355408577, 40.050919502213205 ], [ -75.027121477767821, 40.050917111004544 ], [ -75.027108600019574, 40.050914722495051 ], [ -75.027095720920173, 40.050912338457366 ], [ -75.027072755600827, 40.050908096122548 ], [ -75.027060765261069, 40.050903754434451 ], [ -75.027048799924785, 40.050899344857662 ], [ -75.027036858275935, 40.050894870965223 ], [ -75.027024937791339, 40.05089033720261 ], [ -75.027013037155015, 40.050885747142765 ], [ -75.027001156150249, 40.050881106187013 ], [ -75.026989292289841, 40.050876417880538 ], [ -75.026977444257881, 40.050871685796359 ], [ -75.02696561066621, 40.050866915307914 ], [ -75.026953788991506, 40.050862110860628 ], [ -75.026941977953982, 40.050857275127427 ], [ -75.026930177336922, 40.050852413509389 ], [ -75.026918384653072, 40.050847529551802 ], [ -75.026906597378925, 40.050842627700142 ], [ -75.02689481646928, 40.05083771338338 ], [ -75.026883038301463, 40.050832789218781 ], [ -75.02687126152351, 40.050827859679501 ], [ -75.026859484783401, 40.050822929238848 ], [ -75.026847707900487, 40.050818002397762 ], [ -75.026835927179974, 40.050813083573964 ], [ -75.026824143648753, 40.050808176395954 ], [ -75.026812353612002, 40.050803285281468 ], [ -75.026800555717713, 40.050798414703642 ], [ -75.026788748649921, 40.050793568235605 ], [ -75.026776932228003, 40.050788750378224 ], [ -75.026765102757167, 40.05078396554925 ], [ -75.026753260056722, 40.050779218249637 ], [ -75.026741402810785, 40.050774512052449 ], [ -75.026729528459768, 40.05076985230324 ], [ -75.026717635723884, 40.050765241674874 ], [ -75.026705724386346, 40.050760685568541 ], [ -75.026693790788414, 40.050756187501705 ], [ -75.026681834749468, 40.050751751975298 ], [ -75.026669854917415, 40.050747383462578 ], [ -75.02665784880493, 40.050743085508799 ], [ -75.026645816231323, 40.050738862614899 ], [ -75.026633753465646, 40.050734720098774 ], [ -75.026621660399471, 40.050730660660932 ], [ -75.026609536815926, 40.050726689702685 ], [ -75.026597377884983, 40.050722810713573 ], [ -75.026585184633447, 40.050719027322238 ], [ -75.02657295563688, 40.050715345802288 ], [ -75.026560687308987, 40.050711767870723 ], [ -75.026548380567974, 40.050708299856772 ], [ -75.026536031791395, 40.050704944377593 ], [ -75.026523640762377, 40.050701706834396 ], [ -75.026511204957359, 40.050698591672663 ], [ -75.026498723096594, 40.050695601565153 ], [ -75.026486194963155, 40.050692741913025 ], [ -75.026473616898329, 40.050690016233759 ], [ -75.026460989856645, 40.05068742995627 ], [ -75.026448311748183, 40.050684976723645 ], [ -75.026435599881552, 40.05068257585134 ], [ -75.026422858565923, 40.05068020761837 ], [ -75.026410087801167, 40.050677872024707 ], [ -75.026397289857826, 40.050675570926224 ], [ -75.026384463636774, 40.050673302494843 ], [ -75.02637161027323, 40.050671067658406 ], [ -75.026358732073774, 40.050668867372799 ], [ -75.0263458279031, 40.050666700709954 ], [ -75.026332900103981, 40.050664567725391 ], [ -75.026319947432796, 40.050662470191781 ], [ -75.026306972304468, 40.050660406364251 ], [ -75.026293973511557, 40.050658377115155 ], [ -75.026280954568037, 40.050656382527961 ], [ -75.026267913095097, 40.050654423447192 ], [ -75.026254852642964, 40.050652499055943 ], [ -75.026241772004113, 40.050650610226732 ], [ -75.026228672349902, 40.050648756987272 ], [ -75.026215554851603, 40.05064693936535 ], [ -75.026202419509275, 40.050645157360897 ], [ -75.026189267494246, 40.050643411001786 ], [ -75.026176099941779, 40.050641701215945 ], [ -75.026162916851774, 40.050640028003336 ], [ -75.026149719431714, 40.050638390491599 ], [ -75.026136507609408, 40.050636790481079 ], [ -75.026123282592238, 40.05063522709932 ], [ -75.02611004438026, 40.050633700346346 ], [ -75.026096795316136, 40.050632210277755 ], [ -75.026083535363682, 40.050630757793705 ], [ -75.026070264486805, 40.050629343794405 ], [ -75.02605698392918, 40.050627966507179 ], [ -75.026043694825859, 40.050626626860051 ], [ -75.026030398312187, 40.050625325780999 ], [ -75.026017093252847, 40.050624062342038 ], [ -75.026003780783029, 40.050622837471103 ], [ -75.025990463281673, 40.050621650323635 ], [ -75.025977140676417, 40.050620502699907 ], [ -75.025963811831986, 40.050619393672022 ], [ -75.025950480262509, 40.050618323323299 ], [ -75.025937145931834, 40.050617292553973 ], [ -75.025923807704643, 40.050616300435991 ], [ -75.025910469058999, 40.050615347952977 ], [ -75.025897127615863, 40.050614435949505 ], [ -75.0258837869617, 40.050613562708484 ], [ -75.025870447060342, 40.050612729130236 ], [ -75.025857106668042, 40.050611936987259 ], [ -75.025843769407331, 40.050611183662376 ], [ -75.025830433998451, 40.050610471828335 ], [ -75.025817101648812, 40.050609800612783 ], [ -75.025803773565912, 40.050609169143264 ], [ -75.025790449677487, 40.050608579220196 ], [ -75.025777131154882, 40.050608030871338 ], [ -75.025763819205565, 40.050607523224336 ], [ -75.025750512621997, 40.050607057151538 ], [ -75.025737214918294, 40.05060663273629 ], [ -75.025723924922929, 40.050606249950896 ], [ -75.025710643771319, 40.05060590972321 ], [ -75.02569737149939, 40.050605611153181 ], [ -75.025684110450001, 40.050605354296266 ], [ -75.025670859415527, 40.050605140024928 ], [ -75.025657620702546, 40.050604969294973 ], [ -75.025644394383335, 40.050604840305908 ], [ -75.025631181556918, 40.050604754886017 ], [ -75.025617982259504, 40.050604712135048 ], [ -75.025604797626215, 40.050604712980999 ], [ -75.02559162769316, 40.050604756523711 ], [ -75.02557847355942, 40.050604844591305 ], [ -75.025565336468631, 40.050604975411225 ], [ -75.025552217519916, 40.050605150811649 ], [ -75.025539115541761, 40.050605370764785 ], [ -75.025526032913035, 40.050605634425999 ], [ -75.025512969597656, 40.050605942695491 ], [ -75.025499926803064, 40.050606294700906 ], [ -75.025486890487414, 40.050606718942902 ], [ -75.025473839110674, 40.050607255458033 ], [ -75.025460773880326, 40.050607903373873 ], [ -75.025447694868603, 40.050608660890013 ], [ -75.025434605661815, 40.050609526289399 ], [ -75.025421507503623, 40.050610497799461 ], [ -75.025408400393871, 40.050611575420191 ], [ -75.025395286856124, 40.050612754706123 ], [ -75.025382169196789, 40.050614036613048 ], [ -75.025369047560432, 40.050615417540193 ], [ -75.025355924325893, 40.050616896642879 ], [ -75.025342800700713, 40.05061847304875 ], [ -75.025329678000716, 40.050620143184844 ], [ -75.025316557397232, 40.050621907078813 ], [ -75.025303442512808, 40.050623762113545 ], [ -75.02529033221208, 40.050625707360979 ], [ -75.025277228910184, 40.050627741076383 ], [ -75.025264133850612, 40.050629861487053 ], [ -75.025251050655982, 40.050632065975798 ], [ -75.025237978154749, 40.050634354514905 ], [ -75.02522491879823, 40.050636724459224 ], [ -75.02521187500129, 40.050639174064067 ], [ -75.025198846836176, 40.050641701528981 ], [ -75.02518583664569, 40.050644306909589 ], [ -75.025172844610537, 40.050646985704809 ], [ -75.025159875379956, 40.050649738926118 ], [ -75.025146926719614, 40.050652563817287 ], [ -75.02513400338735, 40.050655458689107 ], [ -75.025121104283954, 40.050658421713408 ], [ -75.025108232995862, 40.050661451173099 ], [ -75.025095389559212, 40.050664546168093 ], [ -75.02508257642512, 40.050667704053346 ], [ -75.025069794801126, 40.050670923956467 ], [ -75.025057045930822, 40.050674204104844 ], [ -75.025044331094136, 40.050677541825635 ], [ -75.025031652633658, 40.050680937174555 ], [ -75.025019011829229, 40.050684387478704 ], [ -75.025006409888391, 40.050687891865728 ], [ -75.02499384929844, 40.050691446790424 ], [ -75.024981328851794, 40.050695053125239 ], [ -75.024968853378653, 40.050698707380512 ], [ -75.024956422951178, 40.050702407755928 ], [ -75.024944038740813, 40.050706154279226 ], [ -75.024931703198746, 40.05070994430541 ], [ -75.024919416397239, 40.050713776034158 ], [ -75.024907181922686, 40.050717647748428 ], [ -75.024894998639894, 40.050721558520216 ], [ -75.024882870171481, 40.05072550573238 ], [ -75.024870797724859, 40.050729488512523 ], [ -75.024858779065823, 40.050733504104443 ], [ -75.024846758040823, 40.050737549373849 ], [ -75.024834712393741, 40.050741623792646 ], [ -75.02482264563865, 40.050745727444252 ], [ -75.024810561181297, 40.050749863112586 ], [ -75.024798462535642, 40.050754030881052 ], [ -75.024786351972196, 40.050758232605624 ], [ -75.024774231797423, 40.050762469242031 ], [ -75.024762106660759, 40.050766741801716 ], [ -75.024749978832489, 40.050771052140547 ], [ -75.024737850619275, 40.050775401214402 ], [ -75.024725726706521, 40.050779789134445 ], [ -75.024713609328487, 40.050784218656766 ], [ -75.024701501963136, 40.050788690765032 ], [ -75.024689405745661, 40.050793206387183 ], [ -75.024677326496715, 40.05079776656239 ], [ -75.024665265315321, 40.050802373118884 ], [ -75.024653226887025, 40.050807026167782 ], [ -75.024641212274602, 40.05081172843758 ], [ -75.024629226163611, 40.050816480039309 ], [ -75.024617270824379, 40.050821282829105 ], [ -75.024605348599749, 40.05082613686244 ], [ -75.024593465237984, 40.050831044978978 ], [ -75.024581620702889, 40.050836008078896 ], [ -75.024569819680011, 40.050841026273318 ], [ -75.024558064439759, 40.050846101418358 ], [ -75.024546358423805, 40.050851235397694 ], [ -75.02453470514638, 40.050856428294829 ], [ -75.024523106877794, 40.050861681965699 ], [ -75.024511567059903, 40.050866998294097 ], [ -75.024500088071548, 40.050872376435422 ], [ -75.024488674453607, 40.050877820101711 ], [ -75.024477328548784, 40.050883329348544 ], [ -75.024466052663598, 40.0508889051317 ], [ -75.024454850239877, 40.050894549335005 ], [ -75.024443724791766, 40.050900262041914 ], [ -75.024432679724868, 40.05090604603631 ], [ -75.024421716210455, 40.050911901346126 ], [ -75.02441083886184, 40.050917829882891 ], [ -75.024400051156832, 40.050923832630275 ], [ -75.024389354194582, 40.050929911416446 ], [ -75.024378753867992, 40.05093606548018 ], [ -75.024368250032566, 40.050942298422378 ], [ -75.024357847373636, 40.050948610354169 ], [ -75.024347549369196, 40.050955002259215 ], [ -75.024337359424933, 40.050961476921529 ], [ -75.024327278748345, 40.050968033468699 ], [ -75.0243173107812, 40.050974673784566 ], [ -75.02430746013674, 40.050981399780738 ], [ -75.024297727950071, 40.050988212385207 ], [ -75.024288118870629, 40.050995112609421 ], [ -75.024278635204951, 40.051002101409203 ], [ -75.024269280394861, 40.051009180668345 ], [ -75.024260056746911, 40.051016351342703 ], [ -75.024250967739135, 40.051023614415854 ], [ -75.024241980269494, 40.051030947477038 ], [ -75.024233010925144, 40.051038296285583 ], [ -75.024224058570866, 40.051045659913576 ], [ -75.024215122107634, 40.051053036532736 ], [ -75.024206201463031, 40.051060427943561 ], [ -75.024197296709445, 40.051067832345595 ], [ -75.024188407810712, 40.051075250639059 ], [ -75.02417953363161, 40.051082681896013 ], [ -75.024170675343569, 40.05109012614416 ], [ -75.024161831738937, 40.051097584255956 ], [ -75.024153004061532, 40.051105054458795 ], [ -75.024144191067563, 40.051112538525317 ], [ -75.024135392793283, 40.051120035555265 ], [ -75.024126608103387, 40.051127544620655 ], [ -75.024117839340676, 40.051135065777153 ], [ -75.024109084126238, 40.051142599869316 ], [ -75.024100342496183, 40.051150145996949 ], [ -75.024091615585789, 40.051157705088045 ], [ -75.024082902295987, 40.051165275314418 ], [ -75.024074203762012, 40.051172857604094 ], [ -75.024065517641063, 40.051180451901452 ], [ -75.024056846275926, 40.051188058262071 ], [ -75.024048187359966, 40.051195675730213 ], [ -75.024039540893284, 40.051203304305886 ], [ -75.024030908047138, 40.051210944016809 ], [ -75.024022288785403, 40.051218595763252 ], [ -75.024013681972946, 40.051226258617191 ], [ -75.024005087645818, 40.051233931678468 ], [ -75.023996505767897, 40.051241615847232 ], [ -75.023987936375391, 40.051249310223341 ], [ -75.023979379432134, 40.051257015706959 ], [ -75.023970833802835, 40.051264731370104 ], [ -75.02396230065888, 40.051272457240572 ], [ -75.023953778792816, 40.051280194190767 ], [ -75.023945268276876, 40.051287940420316 ], [ -75.023936770246365, 40.051295696857203 ], [ -75.023928283566022, 40.051303462573422 ], [ -75.023919807028292, 40.051311238441365 ], [ -75.023911341840716, 40.051319023588668 ], [ -75.023902887967196, 40.051326818915506 ], [ -75.023894445479954, 40.051334622621511 ], [ -75.023886011963981, 40.051342436451485 ], [ -75.023877589834356, 40.051350258660591 ], [ -75.023869177883483, 40.051358090121248 ], [ -75.023860777319001, 40.051365929961086 ], [ -75.023852385761927, 40.051373779024651 ], [ -75.023844003248399, 40.051381636411833 ], [ -75.023835632121276, 40.051389502178154 ], [ -75.023827270037714, 40.051397376268056 ], [ -75.023818916961531, 40.051405259581735 ], [ -75.023810573001271, 40.051413149418579 ], [ -75.023802239219862, 40.051421048507024 ], [ -75.023793914518137, 40.0514289550188 ], [ -75.02378559772481, 40.051436868926181 ], [ -75.02377729118264, 40.051444790284762 ], [ -75.023768991341271, 40.051452719911318 ], [ -75.023760701787211, 40.051460656088892 ], [ -75.023752420105339, 40.051468600562231 ], [ -75.023744146404184, 40.051476550630746 ], [ -75.023735880575231, 40.051484508995067 ], [ -75.023727622690856, 40.051492473854807 ], [ -75.023719372750975, 40.051500445209925 ], [ -75.023711129584314, 40.051508423032622 ], [ -75.023702895533518, 40.051516407378543 ], [ -75.023694668219761, 40.05152439909228 ], [ -75.023686447751473, 40.051532395473181 ], [ -75.023678234020181, 40.051540399221928 ], [ -75.023670028269606, 40.051548408565878 ], [ -75.023661828157003, 40.051556423449426 ], [ -75.02365363598895, 40.051564444828408 ], [ -75.023645449494992, 40.051572470846779 ], [ -75.02363726860284, 40.051580503304955 ], [ -75.023629095727514, 40.051588540458191 ], [ -75.023620927318845, 40.051596583123185 ], [ -75.023612765719434, 40.051604631355609 ], [ -75.023604609794205, 40.051612684227472 ], [ -75.023596459543086, 40.051620741738738 ], [ -75.023588314966062, 40.05162880388945 ], [ -75.023580174855596, 40.051636871551985 ], [ -75.02357204045552, 40.051644942953708 ], [ -75.023563911729468, 40.051653018994891 ], [ -75.023555787542378, 40.051661098747481 ], [ -75.023547667858026, 40.051669183111692 ], [ -75.023539552676382, 40.051677272087574 ], [ -75.023531442033658, 40.051685364774805 ], [ -75.023523335966061, 40.051693460273341 ], [ -75.023515234401202, 40.051701560383478 ], [ -75.023507137411414, 40.051709663304841 ], [ -75.023499042581562, 40.051717770782219 ], [ -75.023490953534392, 40.05172588019844 ], [ -75.023482866683366, 40.051733993270496 ], [ -75.02347478437126, 40.051742110054015 ], [ -75.023466704327603, 40.051750228692924 ], [ -75.023458628822908, 40.051758351043276 ], [ -75.023450555586678, 40.051766475249089 ], [ -75.023442484546607, 40.051774603110701 ], [ -75.023434418153968, 40.051782731983167 ], [ -75.023426352786075, 40.051790864483699 ], [ -75.023418290894213, 40.051798997967239 ], [ -75.023410231234706, 40.051807134206371 ], [ -75.023402172672277, 40.05181527227321 ], [ -75.023394117549756, 40.05182341222325 ], [ -75.023386063524342, 40.05183155400092 ], [ -75.023378011803587, 40.051839696733836 ], [ -75.023369962351296, 40.051847841322193 ], [ -75.023361912860935, 40.051855986810196 ], [ -75.023353865639024, 40.051864134153618 ], [ -75.0233458195504, 40.051872282424497 ], [ -75.023337774595063, 40.051880431622784 ], [ -75.023329730809195, 40.051888580848328 ], [ -75.02332168812039, 40.051896731901486 ], [ -75.023313645429738, 40.051904882954133 ], [ -75.02330560390844, 40.051913034033966 ], [ -75.023297561177714, 40.051921185985641 ], [ -75.023289520787813, 40.051929337992377 ], [ -75.023281479188356, 40.05193749087092 ], [ -75.023273437623217, 40.051945642848708 ], [ -75.023265396056075, 40.051953794825963 ], [ -75.023257354487058, 40.051961946802599 ], [ -75.023249311780859, 40.051970097850671 ], [ -75.023241269108965, 40.051978247997994 ], [ -75.023233225263695, 40.051986398116981 ], [ -75.023225180281287, 40.051994547307359 ], [ -75.023217134125517, 40.052002696469337 ], [ -75.023209088040176, 40.052010843830416 ], [ -75.023201039682505, 40.052018989334904 ], [ -75.023192990151529, 40.052027134810984 ], [ -75.023184938348166, 40.052035278430488 ], [ -75.023176885443775, 40.052043420221281 ], [ -75.023168830267082, 40.052051560155455 ], [ -75.023160773953251, 40.052059699161049 ], [ -75.023152714195646, 40.052067836282276 ], [ -75.023144653373294, 40.052075970674558 ], [ -75.023136589107111, 40.05208410318243 ], [ -75.023128522568584, 40.052092233833719 ], [ -75.023120452622493, 40.052100361700418 ], [ -75.023112380440253, 40.05210848681034 ], [ -75.02310430481424, 40.052116610035917 ], [ -75.023096226988187, 40.052124729604451 ], [ -75.023088144583141, 40.052132846360657 ], [ -75.023080059905823, 40.052140961260214 ], [ -75.02307197072183, 40.052149071547042 ], [ -75.023063878094092, 40.052157179949404 ], [ -75.023055782131109, 40.052165283766882 ], [ -75.02304768158919, 40.052173384771883 ], [ -75.023039576504473, 40.052181482064306 ], [ -75.023031466876986, 40.052189575644142 ], [ -75.023023353878031, 40.05219766553919 ], [ -75.023015235164962, 40.052205751693798 ], [ -75.02300711311662, 40.052213833263423 ], [ -75.022998985390302, 40.052221910192479 ], [ -75.022990851949771, 40.052229983381096 ], [ -75.022982714002623, 40.05223805195692 ], [ -75.0229745703775, 40.05224611589211 ], [ -75.022966422245716, 40.052254175214507 ], [ -75.022958267300766, 40.052262228968303 ], [ -75.022950107812974, 40.052270279009477 ], [ -75.022941941511988, 40.052278323482028 ], [ -75.02293376956915, 40.052286362413753 ], [ -75.022925591984503, 40.052294395804694 ], [ -75.022917407550466, 40.052302424527191 ], [ -75.022909216339343, 40.052310446780858 ], [ -75.022901018315011, 40.052318463465895 ], [ -75.022892814648856, 40.052326474610084 ], [ -75.02288460299809, 40.052334480157839 ], [ -75.022876384570196, 40.052342479236813 ], [ -75.022868159365373, 40.052350471846907 ], [ -75.022859927347255, 40.052358458888385 ], [ -75.022851686245502, 40.052366438505196 ], [ -75.022843439501898, 40.05237441258118 ], [ -75.022835183674644, 40.052382379232483 ], [ -75.022826919898947, 40.052390339387181 ], [ -75.022815521134447, 40.052401295906741 ], [ -75.022920743173486, 40.052421795360154 ], [ -75.024960843343649, 40.053334049694314 ], [ -75.023528333775744, 40.055508006219881 ], [ -75.023519439110331, 40.055521503758094 ], [ -75.023463357487515, 40.055459442424628 ], [ -75.023416799329596, 40.055407919687362 ], [ -75.023396499342368, 40.055393664315012 ], [ -75.023181067785842, 40.055242373291456 ], [ -75.022495268639588, 40.054760753251351 ], [ -75.020801241721657, 40.053872072088211 ], [ -75.019031448250786, 40.053038126442488 ], [ -75.018062612665062, 40.05242117449982 ], [ -75.017530448362166, 40.051927728492466 ], [ -75.017186679431035, 40.051325635363085 ], [ -75.016987705669663, 40.050783548421705 ], [ -75.016834606181646, 40.050016298884017 ], [ -75.016863064378441, 40.049309932379849 ], [ -75.016994989431055, 40.048775718602869 ], [ -75.017386543810062, 40.048191117084443 ], [ -75.01792628658113, 40.047581756986474 ], [ -75.018722235417584, 40.04700676889275 ], [ -75.017937311743253, 40.046394185946419 ], [ -75.019352173899705, 40.045070306365467 ], [ -75.018299906220179, 40.044269258924302 ], [ -75.01846073846994, 40.044151120620839 ], [ -75.019474651024794, 40.043626531558864 ], [ -75.0206634860631, 40.043575648718601 ], [ -75.020731743807502, 40.043572727662827 ], [ -75.021798745954257, 40.043685034074258 ], [ -75.021651298858885, 40.044161713397457 ], [ -75.021475284148579, 40.044675896161799 ], [ -75.021231018424288, 40.045087573097085 ], [ -75.020730162110169, 40.045558764747099 ], [ -75.020081642863062, 40.046010413151798 ], [ -75.020008479157141, 40.046608315684239 ], [ -75.020103311232631, 40.047134976569019 ], [ -75.020433415975489, 40.047832988025306 ], [ -75.021138250539025, 40.04848711352065 ], [ -75.02190822563901, 40.048986274419278 ], [ -75.022699529845283, 40.049254564131594 ], [ -75.023418472946062, 40.049302957080492 ], [ -75.024113946233811, 40.049184660959838 ], [ -75.026194059405611, 40.04831481029872 ], [ -75.028763357836525, 40.048654680618498 ], [ -75.029615677075896, 40.048650570854157 ], [ -75.030582965841987, 40.048404611174988 ], [ -75.031494061951904, 40.04773058657954 ], [ -75.03181450318236, 40.046978446810165 ], [ -75.031828501696282, 40.046372726297328 ], [ -75.03151765628165, 40.045724046715677 ], [ -75.034265672611156, 40.044526018086223 ], [ -75.034407020498932, 40.044531108265687 ], [ -75.034892013881844, 40.044548573702073 ], [ -75.035706504911147, 40.044654614620363 ], [ -75.036470886443155, 40.044954749817194 ], [ -75.036936945674128, 40.045302078316027 ], [ -75.037277817360916, 40.045603053471943 ], [ -75.037737149289853, 40.045765786177284 ], [ -75.038467907892056, 40.045848132408935 ], [ -75.039046565094878, 40.045850941614674 ], [ -75.039518274635313, 40.046057355599871 ], [ -75.039832253070671, 40.046325140401663 ], [ -75.039858542556843, 40.046727174162022 ], [ -75.040011761980864, 40.047132202806957 ], [ -75.04041970976462, 40.047521541609832 ], [ -75.040849988829621, 40.047705274167441 ], [ -75.04146556306479, 40.047844554959575 ], [ -75.042171169706222, 40.047850340701899 ], [ -75.042185705084009, 40.047839833839696 ], [ -75.042858083527349, 40.047617003471942 ], [ -75.043456216479129, 40.047132043573093 ], [ -75.043664904462304, 40.046854885759771 ], [ -75.044250488326327, 40.046684247381371 ], [ -75.045245060468091, 40.04652323719408 ], [ -75.047058045497636, 40.04637063005557 ], [ -75.047783784046473, 40.046224970328396 ], [ -75.049566122753873, 40.046841879397491 ], [ -75.051300939329209, 40.047109096976513 ], [ -75.051640577699814, 40.047157730060512 ], [ -75.051436929028739, 40.047736026330483 ], [ -75.051310715886004, 40.048154148856192 ], [ -75.051192489393443, 40.049297413121351 ], [ -75.051191980636531, 40.049302333496669 ], [ -75.05075207889962, 40.049078374645518 ], [ -75.050462634770327, 40.049243204605048 ], [ -75.048442811681923, 40.048115075878009 ], [ -75.047528769978555, 40.048019902843038 ], [ -75.046642905430389, 40.048286557290901 ], [ -75.04516646875733, 40.048848496728567 ], [ -75.04213867759087, 40.050079046015483 ], [ -75.041515587663284, 40.050834637200452 ], [ -75.041534354854974, 40.051778942703393 ], [ -75.040221274085766, 40.053196322032363 ], [ -75.039966125321058, 40.053575442990521 ], [ -75.040028452993894, 40.054135637401387 ], [ -75.03945936817874, 40.055304754735779 ], [ -75.038708632124596, 40.056426187803041 ], [ -75.038600653358642, 40.057714672115587 ], [ -75.038433602505165, 40.058361671246317 ], [ -75.038438008761034, 40.058377230967182 ], [ -75.03824897903236, 40.058891854999715 ], [ -75.038099746071794, 40.060260321819179 ], [ -75.038130945934014, 40.060822739713252 ], [ -75.038320076499417, 40.061556919620948 ], [ -75.038612969422104, 40.062003030606547 ], [ -75.040786528589805, 40.064312174287323 ], [ -75.041179316580809, 40.06457531755148 ], [ -75.041385248999291, 40.064708148836601 ], [ -75.041703311959367, 40.064825774204763 ], [ -75.041990935826973, 40.0649321407261 ], [ -75.042020057455815, 40.064942909879328 ], [ -75.042423299467075, 40.065071629762464 ], [ -75.04301461477246, 40.06514974996518 ], [ -75.043459892570866, 40.06517839588922 ], [ -75.043689392999198, 40.065118179778537 ], [ -75.044114558696094, 40.06506117963297 ], [ -75.044484140362059, 40.064989289297017 ], [ -75.044716316948325, 40.06500486997421 ], [ -75.044973524641307, 40.065084111982934 ], [ -75.046387419011907, 40.065874417089432 ], [ -75.048216529369029, 40.066915688163519 ], [ -75.047498797413937, 40.067665872635622 ], [ -75.047313688344971, 40.068229887965167 ], [ -75.04738312024223, 40.068797340812978 ], [ -75.047624836034998, 40.069297013503856 ], [ -75.047912751259247, 40.070029116719994 ], [ -75.047367867763384, 40.070621064840452 ], [ -75.045944626027023, 40.069784285891991 ], [ -75.04577294180713, 40.06976161067012 ], [ -75.045473081168922, 40.06987289446981 ], [ -75.045294234598629, 40.069969982965198 ], [ -75.045102270433688, 40.070125693593106 ], [ -75.044861109762024, 40.070501239286735 ], [ -75.044074688260537, 40.071996782442874 ], [ -75.044037403074981, 40.072338900809065 ], [ -75.044158688955534, 40.072762319286866 ], [ -75.044341089605879, 40.073088188512507 ], [ -75.04526328840393, 40.074145494634735 ], [ -75.046075369206775, 40.075256149207874 ], [ -75.046773168045448, 40.076087647949294 ], [ -75.047419422459711, 40.076535116541514 ], [ -75.048185226876313, 40.076711678775808 ], [ -75.049034503580259, 40.076778548378002 ], [ -75.049748741385272, 40.076571074161784 ], [ -75.050390536141876, 40.076248412405754 ], [ -75.055771170218534, 40.073443016590758 ], [ -75.056068338966327, 40.073255908325336 ], [ -75.056318106647595, 40.073017279210696 ], [ -75.057220477731065, 40.073724814439139 ], [ -75.058405645422638, 40.074748793190288 ], [ -75.060954266048256, 40.072836895090248 ], [ -75.063321611782641, 40.071383872960674 ], [ -75.065502338860298, 40.070238141435148 ], [ -75.067590261021394, 40.071177390669277 ], [ -75.068699376136991, 40.071663134040328 ], [ -75.068638868990647, 40.071670243172349 ], [ -75.068883031939734, 40.071808056672147 ], [ -75.069021413843075, 40.072067714353921 ], [ -75.068884771487305, 40.072304241357536 ], [ -75.067280973728543, 40.075549887031279 ], [ -75.066202001766101, 40.077829250157919 ], [ -75.067137866419301, 40.078299691201828 ], [ -75.067621242802559, 40.078861339834987 ], [ -75.068481653979447, 40.080196928862712 ], [ -75.063654157869124, 40.083603963063879 ], [ -75.06232900966053, 40.084523085892016 ], [ -75.062671309576231, 40.084749293117525 ], [ -75.063027293630867, 40.084826421200617 ], [ -75.063354946536933, 40.084854546803285 ], [ -75.067120063524712, 40.084883321130754 ], [ -75.067520766698451, 40.084936154500085 ], [ -75.06802285673713, 40.085062706789657 ], [ -75.071619154506578, 40.086638228218206 ], [ -75.072111440099192, 40.086808730481266 ], [ -75.072556190474558, 40.086952230937129 ], [ -75.074302297806639, 40.087241013415898 ], [ -75.074256362429068, 40.087361222683114 ], [ -75.07385500024057, 40.087745093831316 ], [ -75.074370350431636, 40.087787637936209 ], [ -75.076194586228567, 40.087432544040567 ], [ -75.074580637940912, 40.089103990323075 ], [ -75.074559638575835, 40.0891249903217 ], [ -75.071367647427664, 40.092430978496658 ], [ -75.071279646958132, 40.092520977623657 ], [ -75.071268647001801, 40.092532978077195 ], [ -75.071169647825982, 40.092635977760189 ], [ -75.071007648596847, 40.092802976577076 ], [ -75.070706649432211, 40.093114975650046 ], [ -75.069454652675731, 40.094411970912951 ], [ -75.069385845310975, 40.094483135885042 ], [ -75.068495563111853, 40.094638080058921 ], [ -75.065967752046632, 40.092675306278423 ], [ -75.06613139502754, 40.092470559450241 ], [ -75.064463998192835, 40.090877675504579 ], [ -75.064096026835898, 40.090678270796118 ], [ -75.063720928135709, 40.090598629464253 ], [ -75.063183338102476, 40.090542822417362 ], [ -75.058293218928583, 40.090184493103273 ], [ -75.057740420116957, 40.090021034231597 ], [ -75.057073715948917, 40.089752014656256 ], [ -75.056608378374463, 40.089109712884067 ], [ -75.056406793653721, 40.088781346576113 ], [ -75.056272877996307, 40.088326112330456 ], [ -75.056327087717605, 40.087820257886989 ], [ -75.056453758492651, 40.087429582667902 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "SOMERTON", "LISTNAME": "Somerton", "MAPNAME": "Somerton", "Shape_Leng": 55054.575495999998, "Shape_Area": 129254596.792 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.998516726156709, 40.128190762263095 ], [ -74.99788372816316, 40.127816762291197 ], [ -74.997798728382307, 40.127902762586558 ], [ -74.9975697291773, 40.128117762398745 ], [ -74.997446729579607, 40.128249762150034 ], [ -74.99418574390198, 40.131516758437307 ], [ -74.994093576445664, 40.131632022977328 ], [ -74.993758746434395, 40.132050758574437 ], [ -74.993593746579634, 40.132266758505963 ], [ -74.993460747007703, 40.132104758189776 ], [ -74.993260748610652, 40.131933757727097 ], [ -74.99293774909944, 40.131593758264849 ], [ -74.992594750213755, 40.131275757987815 ], [ -74.992322751075989, 40.130879758401434 ], [ -74.992300750901805, 40.130830758328273 ], [ -74.992286750758652, 40.130682758605111 ], [ -74.99236475028836, 40.130511758542319 ], [ -74.992414750703546, 40.130440759014682 ], [ -74.992607748927455, 40.130253758675764 ], [ -74.992829748623336, 40.129989759350778 ], [ -74.9929437473984, 40.129792759539605 ], [ -74.993007747138861, 40.129627759738163 ], [ -74.993036747147514, 40.129495759334624 ], [ -74.993071746458824, 40.129083760295444 ], [ -74.99314374678913, 40.12874875989354 ], [ -74.993185745959337, 40.128638760492436 ], [ -74.993350745331298, 40.128298760898559 ], [ -74.99340774482944, 40.128215760831807 ], [ -74.993528744303717, 40.128078760544362 ], [ -74.993678743717155, 40.127852760911885 ], [ -74.993750743503739, 40.127765760867632 ], [ -74.993864742832102, 40.12753476145955 ], [ -74.99390774289347, 40.127292761535827 ], [ -74.993971741358564, 40.12704576113935 ], [ -74.993971742413649, 40.126963761958869 ], [ -74.993907742251238, 40.12677676202464 ], [ -74.993821741925515, 40.126683761448142 ], [ -74.993766742886407, 40.126643761703761 ], [ -74.993685742073012, 40.126584761615781 ], [ -74.993601742897269, 40.126535761658438 ], [ -74.993477742779092, 40.126463762017089 ], [ -74.993408743897021, 40.126431761340136 ], [ -74.993334743792715, 40.126397762028198 ], [ -74.993141744821841, 40.126326761692653 ], [ -74.992812746007388, 40.126238761152152 ], [ -74.992418747168898, 40.126194761425289 ], [ -74.991838749362898, 40.126178761237639 ], [ -74.99145975060695, 40.126200761171809 ], [ -74.991252752099427, 40.126233761106107 ], [ -74.99122375151218, 40.126244761200525 ], [ -74.991080752134721, 40.126255761244067 ], [ -74.990844753008957, 40.126316760831507 ], [ -74.990336755405735, 40.126371760416681 ], [ -74.990298754733658, 40.126378760755223 ], [ -74.990212756089903, 40.126392760267599 ], [ -74.990155755979544, 40.126392760209349 ], [ -74.989749756887548, 40.126382760456877 ], [ -74.989606757401674, 40.12636176016909 ], [ -74.989363758564465, 40.126295760673528 ], [ -74.989283378472294, 40.126267238092069 ], [ -74.989270759342304, 40.126262760542076 ], [ -74.989249133074409, 40.126249421077326 ], [ -74.9891637594272, 40.126196759826207 ], [ -74.989012760170937, 40.12607076060614 ], [ -74.988869760185281, 40.125921759891526 ], [ -74.988711760690634, 40.12568576080556 ], [ -74.98864076130738, 40.125532760483189 ], [ -74.988611761260117, 40.125444760228667 ], [ -74.988575760773443, 40.125213760888172 ], [ -74.988561760628883, 40.124999761225425 ], [ -74.988584996575895, 40.124802811726497 ], [ -74.988603760798, 40.124643760754196 ], [ -74.988630759764987, 40.124416761070741 ], [ -74.988451761282221, 40.124268761418818 ], [ -74.988264957129786, 40.124171334465146 ], [ -74.98777876377855, 40.123917760878214 ], [ -74.987727783780699, 40.123871707589323 ], [ -74.987571763959579, 40.123730761396395 ], [ -74.987511493291564, 40.123652212368476 ], [ -74.987956655127022, 40.123341597028698 ], [ -74.990172958413623, 40.121599197833199 ], [ -74.99268935541059, 40.119435068157955 ], [ -74.993555325145138, 40.118655240143177 ], [ -74.995263182963413, 40.119885601622919 ], [ -74.996433654647262, 40.120777119292939 ], [ -74.997102964555324, 40.121170560271061 ], [ -75.00324071113242, 40.116613868981972 ], [ -75.002846993451115, 40.116141514940956 ], [ -75.002492459256317, 40.115995460789229 ], [ -74.998891161596632, 40.111718861024883 ], [ -74.998484754816275, 40.111995467888036 ], [ -74.996197907792961, 40.110106607020974 ], [ -74.995930605563899, 40.109955557248419 ], [ -74.995733198664666, 40.109780722617373 ], [ -74.995696474246898, 40.10956108416854 ], [ -74.995711621683313, 40.109397878315725 ], [ -74.995754873507764, 40.109205353889784 ], [ -74.995846393367131, 40.109085305576194 ], [ -74.997129759950454, 40.108148724044717 ], [ -74.998205725904839, 40.107382737645288 ], [ -74.999181672584712, 40.106709357353701 ], [ -75.001809875678774, 40.104956479724677 ], [ -75.001814954352767, 40.104952976174829 ], [ -75.002616031607005, 40.104400414704841 ], [ -75.003408654664625, 40.103838742593908 ], [ -75.005218086515242, 40.102609892374055 ], [ -75.007856936435275, 40.100878814870129 ], [ -75.008721665867299, 40.100311522390726 ], [ -75.009835757094777, 40.09944053089324 ], [ -75.012241403429613, 40.097754525463316 ], [ -75.012741134526166, 40.09741418787786 ], [ -75.014204247341056, 40.096241495174212 ], [ -75.015597892109454, 40.094871924086988 ], [ -75.018264577286942, 40.097075687857725 ], [ -75.018853649813352, 40.097647137031736 ], [ -75.019696421391686, 40.098300041077657 ], [ -75.021841622268767, 40.100100030511179 ], [ -75.022800669546683, 40.100412441645446 ], [ -75.024063568798624, 40.100739590561503 ], [ -75.025666730509599, 40.101117046690796 ], [ -75.026906464296118, 40.101589434577157 ], [ -75.027615582458665, 40.101842120586895 ], [ -75.028815480418587, 40.10256094444356 ], [ -75.029940085349182, 40.103289479981221 ], [ -75.032907291353226, 40.105154722681299 ], [ -75.033873517176872, 40.10572413141567 ], [ -75.034720676936416, 40.10627345982234 ], [ -75.035585814505964, 40.106748410091896 ], [ -75.0371420490265, 40.106964994075248 ], [ -75.038842114755752, 40.107113989565434 ], [ -75.041169788630711, 40.108402315391132 ], [ -75.047767655944824, 40.11225124109793 ], [ -75.048560496951822, 40.112673292095138 ], [ -75.048595531892744, 40.112691555901328 ], [ -75.048540695312084, 40.112729898043966 ], [ -75.047447697233011, 40.113492894904375 ], [ -75.044261701722249, 40.115713884888379 ], [ -75.044214701846002, 40.115747884449881 ], [ -75.043854701320797, 40.115997882982491 ], [ -75.043805702355485, 40.116031883089768 ], [ -75.042305704241372, 40.117078878897992 ], [ -75.039041708124032, 40.119356868462837 ], [ -75.038707708488644, 40.119599867136138 ], [ -75.038334709225737, 40.11987086606419 ], [ -75.038287708289744, 40.119902865688637 ], [ -75.037840709795574, 40.12021386431433 ], [ -75.03755270913399, 40.120413863782154 ], [ -75.033631713943862, 40.123130851715857 ], [ -75.033261714757131, 40.123385850173356 ], [ -75.031803715626978, 40.124397845914686 ], [ -75.031650715744703, 40.124503845316646 ], [ -75.026231721599999, 40.12826082940655 ], [ -75.025785721115597, 40.128571828020554 ], [ -75.025129722559583, 40.129082825673251 ], [ -75.024889722568375, 40.129216824935398 ], [ -75.023708723050916, 40.130053821030039 ], [ -75.023006723904146, 40.130550819076795 ], [ -75.020569726114672, 40.132274811761306 ], [ -75.019596726329013, 40.13322980882311 ], [ -75.017948728785157, 40.1348488039975 ], [ -75.017775728581285, 40.135025803039312 ], [ -75.017019729375221, 40.135806801182866 ], [ -75.01648873060654, 40.136354798846178 ], [ -75.016320730166072, 40.136527798686743 ], [ -75.015627730882613, 40.137335796403583 ], [ -75.015064731798944, 40.13799279438085 ], [ -75.01470173117319, 40.137771793679129 ], [ -75.014573731323523, 40.137693793565198 ], [ -75.014386730659496, 40.137578792966202 ], [ -75.014017304328789, 40.137352299313662 ], [ -75.013882730508868, 40.137269792620536 ], [ -75.012743729816535, 40.136573789673406 ], [ -75.012585729174688, 40.136477789198203 ], [ -75.012376729357328, 40.136349789160235 ], [ -75.012268729445339, 40.136284788854702 ], [ -75.011897728627886, 40.136058788481201 ], [ -75.011452728928177, 40.13578878704147 ], [ -75.011045727771986, 40.135530786114806 ], [ -75.010625728358804, 40.135276785613748 ], [ -75.009463727085958, 40.134570782785637 ], [ -75.009115726929295, 40.134355782290463 ], [ -75.008662725894183, 40.134075781619266 ], [ -75.008528726024693, 40.133992781020865 ], [ -75.007685726133602, 40.133528778843875 ], [ -75.007410724996433, 40.133377778299646 ], [ -75.006900724839227, 40.133080777721723 ], [ -75.005986724734697, 40.13254877557987 ], [ -75.005944724334142, 40.132524775781626 ], [ -75.005900724792454, 40.132498775677185 ], [ -75.005690724613601, 40.132376775157326 ], [ -75.004094723896486, 40.131447771801888 ], [ -75.003996723240235, 40.13139077098861 ], [ -75.003907722814105, 40.131339770687639 ], [ -75.003794559900172, 40.131283189757653 ], [ -75.003253722467193, 40.131012769381741 ], [ -75.002271721833722, 40.130377767429472 ], [ -75.001523721497492, 40.129936766047649 ], [ -75.000955721139746, 40.129610764771343 ], [ -74.999742722069499, 40.128911762217875 ], [ -74.999582721779845, 40.128819762826765 ], [ -74.999458722454804, 40.128748762874366 ], [ -74.998979724812543, 40.128459762852842 ], [ -74.998562725386918, 40.128217762803999 ], [ -74.998516726156709, 40.128190762263095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "MOUNT_AIRY_WEST", "LISTNAME": "Mount Airy, West", "MAPNAME": "West Mount Airy", "Shape_Leng": 37723.378933200001, "Shape_Area": 53743368.559299991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.191149087981827, 40.060157100291526 ], [ -75.19096921364725, 40.059906245079048 ], [ -75.190299126858008, 40.059160736719072 ], [ -75.190078431973504, 40.058956123519124 ], [ -75.189487667613434, 40.058384539420658 ], [ -75.188496308311784, 40.057393795342556 ], [ -75.188202886864786, 40.056897596482436 ], [ -75.187408696128841, 40.055471238003271 ], [ -75.187070099099103, 40.054851688797335 ], [ -75.186895604811411, 40.054509335095574 ], [ -75.186565144620388, 40.053942519493951 ], [ -75.186185309986442, 40.053256336763404 ], [ -75.185717253309136, 40.052467743692965 ], [ -75.185365050999451, 40.051778058875762 ], [ -75.185244517081813, 40.051551804036848 ], [ -75.185077577351379, 40.051238436236183 ], [ -75.18477800707241, 40.050676096775035 ], [ -75.184453458040991, 40.050066859800772 ], [ -75.184296969150097, 40.049773094810902 ], [ -75.18400720213431, 40.049274600077489 ], [ -75.183798498100714, 40.048906846773797 ], [ -75.183473783361919, 40.048319214401978 ], [ -75.182843743731553, 40.047090343813167 ], [ -75.182312612693934, 40.0459238711572 ], [ -75.183149703873937, 40.045109017772532 ], [ -75.184608150369542, 40.043713751905202 ], [ -75.185677802499427, 40.042667076975199 ], [ -75.187317463420101, 40.040938492068392 ], [ -75.188799868327905, 40.039489747966492 ], [ -75.190088986664605, 40.03824155183829 ], [ -75.190990580968304, 40.037362410585125 ], [ -75.192937974418498, 40.035472564503607 ], [ -75.193129292263293, 40.035390857879698 ], [ -75.192729011926801, 40.035029967729706 ], [ -75.193251476117993, 40.034824722824489 ], [ -75.194723568795482, 40.034276333899882 ], [ -75.195670278211907, 40.03392364786292 ], [ -75.197124768361306, 40.03338506688138 ], [ -75.197124768361306, 40.03338506688138 ], [ -75.197304005307402, 40.033634932891509 ], [ -75.197537512677798, 40.033901173988397 ], [ -75.197624464871197, 40.034171068501003 ], [ -75.197675875426, 40.034413150213588 ], [ -75.197817897373611, 40.034757815437494 ], [ -75.197976645675695, 40.035515123466709 ], [ -75.198041482722303, 40.035677297729002 ], [ -75.198241064906398, 40.036616717847195 ], [ -75.198681262693142, 40.03773317671476 ], [ -75.198693072352, 40.037727101426668 ], [ -75.1999455691751, 40.037152954096101 ], [ -75.202847283976453, 40.03953217885627 ], [ -75.203256359363095, 40.038097911689185 ], [ -75.203262091028193, 40.037960708042988 ], [ -75.203233074496183, 40.037809656796604 ], [ -75.203166476704396, 40.037644698703296 ], [ -75.203645125645323, 40.037993476532677 ], [ -75.204928994320596, 40.038567064534156 ], [ -75.205453770508527, 40.039100121853529 ], [ -75.205454851092711, 40.039325362306649 ], [ -75.205919890606353, 40.040391727738879 ], [ -75.205955626643529, 40.040477807924077 ], [ -75.205886690500577, 40.04079246042793 ], [ -75.205773318748044, 40.041063389648556 ], [ -75.204955294452731, 40.041860889735425 ], [ -75.204910577426062, 40.042486870987439 ], [ -75.20540785885062, 40.042738039109629 ], [ -75.205851934901673, 40.042910694588066 ], [ -75.206098157113118, 40.042582580590924 ], [ -75.206756370246964, 40.042010336153439 ], [ -75.207255251165179, 40.041757749901826 ], [ -75.207724844428725, 40.041637526797736 ], [ -75.207925767188641, 40.041663782792533 ], [ -75.208226283212497, 40.041907341536941 ], [ -75.208473695327214, 40.042257454007043 ], [ -75.208500662185017, 40.042669555605499 ], [ -75.208379229342668, 40.043084963213694 ], [ -75.208114276389338, 40.043481618052134 ], [ -75.210076767447561, 40.04462329162164 ], [ -75.210223720054216, 40.046095204397595 ], [ -75.209101907301559, 40.046493404596816 ], [ -75.209666639233689, 40.047019226949978 ], [ -75.209730973546414, 40.047016992642554 ], [ -75.209921425179999, 40.047064981308608 ], [ -75.210059564025698, 40.047191194676813 ], [ -75.210214004405898, 40.047587578437977 ], [ -75.210274457066703, 40.047697551169399 ], [ -75.210310845636698, 40.04774498327361 ], [ -75.210339351341503, 40.04778213998889 ], [ -75.210444300775293, 40.04786895494491 ], [ -75.210521312306, 40.04790955262731 ], [ -75.210631543682197, 40.047982930489518 ], [ -75.209755350609967, 40.04874650223158 ], [ -75.210165848210394, 40.049027118817961 ], [ -75.210260005067369, 40.049402598434334 ], [ -75.210229572623135, 40.0498071987248 ], [ -75.209920676199218, 40.050402405912628 ], [ -75.208767767166847, 40.051341319173716 ], [ -75.208965830252367, 40.052048157369747 ], [ -75.209194337631033, 40.052350394346909 ], [ -75.206213840179558, 40.05300511171793 ], [ -75.205341664403278, 40.053208923945128 ], [ -75.204510507133563, 40.054515346866189 ], [ -75.202804371907476, 40.05544482101579 ], [ -75.202306421687894, 40.055957666585741 ], [ -75.201895427465743, 40.056472438073754 ], [ -75.201573482735483, 40.056933450570355 ], [ -75.201322744032055, 40.057429481748535 ], [ -75.201238973138416, 40.057728579650551 ], [ -75.201328710636503, 40.058042672389846 ], [ -75.201483803800727, 40.058547705059524 ], [ -75.201810472983468, 40.058733295307611 ], [ -75.202288897168316, 40.059513012938091 ], [ -75.202486253355985, 40.059906156281251 ], [ -75.202511998170934, 40.060234599913031 ], [ -75.202414140354549, 40.06047165064281 ], [ -75.202264236868757, 40.060673373115236 ], [ -75.20209630020949, 40.060881531354752 ], [ -75.201919732328463, 40.06108266115082 ], [ -75.201857679464268, 40.061313671514675 ], [ -75.20183143461405, 40.061538640197917 ], [ -75.201868945733821, 40.061724013990634 ], [ -75.201917551948114, 40.061936653915922 ], [ -75.202500691080502, 40.06258017278892 ], [ -75.202144643090122, 40.062983997904368 ], [ -75.201162575944934, 40.063934457032943 ], [ -75.200822419667134, 40.063742828705728 ], [ -75.200354056845939, 40.063454507871811 ], [ -75.200272236410157, 40.06359390576069 ], [ -75.200127874989235, 40.063767219447449 ], [ -75.199905229077928, 40.063985867228986 ], [ -75.199608276843691, 40.064144025339687 ], [ -75.199282927042972, 40.064242714245971 ], [ -75.199019674762397, 40.064319245131585 ], [ -75.198770398687969, 40.064431388770629 ], [ -75.198567030531578, 40.064544551394917 ], [ -75.198392942819993, 40.064693667860844 ], [ -75.198262108621435, 40.064914350739762 ], [ -75.19816364952446, 40.065088681605424 ], [ -75.198082707196946, 40.065204561640968 ], [ -75.197872698341399, 40.065494093308331 ], [ -75.197245063139945, 40.065892026016527 ], [ -75.196796196058045, 40.066423372302665 ], [ -75.196448840973545, 40.066614767632814 ], [ -75.196248845612615, 40.065814786493725 ], [ -75.1961488479282, 40.065414796190382 ], [ -75.195165685592528, 40.064894909568189 ], [ -75.194203790824517, 40.064408496383329 ], [ -75.194007908563293, 40.0639737518473 ], [ -75.193003676996426, 40.062558392874237 ], [ -75.191995660901028, 40.061244513404354 ], [ -75.191347007135988, 40.060417477929384 ], [ -75.191149087981827, 40.060157100291526 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WEST_OAK_LANE", "LISTNAME": "West Oak Lane", "MAPNAME": "West Oak Lane", "Shape_Leng": 30804.206200100001, "Shape_Area": 52596735.864799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.141295655807738, 40.055228047913886 ], [ -75.141703194313223, 40.053209072603593 ], [ -75.142308497878517, 40.050642254743863 ], [ -75.142317204101388, 40.050638723980597 ], [ -75.142298560721287, 40.050636782520613 ], [ -75.14251493901719, 40.049463924367934 ], [ -75.142558878879754, 40.049260482634693 ], [ -75.142923324180558, 40.047573053705129 ], [ -75.142968185583172, 40.047578667144293 ], [ -75.144950516981297, 40.04867128286282 ], [ -75.146549873136877, 40.049562292585762 ], [ -75.148658578933308, 40.050767538740516 ], [ -75.150122531616901, 40.051566393325153 ], [ -75.150234370011887, 40.051668187677649 ], [ -75.151718543868498, 40.05235262537434 ], [ -75.152938406961724, 40.052873590216194 ], [ -75.153398999616087, 40.053096652975199 ], [ -75.153817947861313, 40.053299544070782 ], [ -75.154508444361028, 40.053633936616428 ], [ -75.155269610996953, 40.053989521833508 ], [ -75.155630097393626, 40.054160378053076 ], [ -75.156647344665743, 40.054615026233797 ], [ -75.157749924133043, 40.055206210202144 ], [ -75.157863173772313, 40.055197918450368 ], [ -75.15844740902098, 40.055515006529092 ], [ -75.158981818684623, 40.05584689129202 ], [ -75.160762407074643, 40.056906710708219 ], [ -75.162198284904264, 40.057752632920419 ], [ -75.163237551226842, 40.058264179207811 ], [ -75.164730322304877, 40.059100501232123 ], [ -75.165547654456063, 40.059614918552491 ], [ -75.166233105056989, 40.060045503484567 ], [ -75.167050843411687, 40.060509707215374 ], [ -75.167885936541126, 40.060975950979838 ], [ -75.168718247514832, 40.061440629314014 ], [ -75.169437823034414, 40.06184235736999 ], [ -75.17007097010196, 40.062195826213191 ], [ -75.17084680620718, 40.062670857617363 ], [ -75.17149537028358, 40.063046984136626 ], [ -75.172196862126071, 40.06345257705194 ], [ -75.172966568803531, 40.063897832573701 ], [ -75.173754128863578, 40.064353427460077 ], [ -75.174056369896704, 40.064528267555609 ], [ -75.174488017298984, 40.064777964070416 ], [ -75.175356195047783, 40.065280170760772 ], [ -75.174764082380918, 40.06589652435872 ], [ -75.174209002958762, 40.066452937829787 ], [ -75.173566861694155, 40.067113564079193 ], [ -75.173047857788902, 40.067614739526654 ], [ -75.17226015085312, 40.06832205854009 ], [ -75.171300036236048, 40.069284011504827 ], [ -75.170686790035973, 40.06988362791698 ], [ -75.170098734389185, 40.070467799581756 ], [ -75.169594166335727, 40.070968007912853 ], [ -75.169026256830122, 40.071531614485714 ], [ -75.168334264599821, 40.072218427707391 ], [ -75.167688990864875, 40.072858702898287 ], [ -75.167214344573054, 40.073336324322881 ], [ -75.166722033720092, 40.073841098767993 ], [ -75.166166493944857, 40.074403068273078 ], [ -75.165596589509889, 40.074941264333937 ], [ -75.164617836471763, 40.075934692441983 ], [ -75.164073682384881, 40.076503881640235 ], [ -75.163594872884644, 40.076998160595544 ], [ -75.163553521861076, 40.077042506533317 ], [ -75.16339753471209, 40.076951255070348 ], [ -75.162517670722877, 40.076450920346105 ], [ -75.161955532946934, 40.076131252523737 ], [ -75.161283531673377, 40.075765251031171 ], [ -75.160427531444185, 40.075302249791484 ], [ -75.158415528239999, 40.074170245105442 ], [ -75.158313646144563, 40.074113606295768 ], [ -75.155832525466806, 40.072734240626986 ], [ -75.154692524967984, 40.072085237747245 ], [ -75.154074523386754, 40.071733236907782 ], [ -75.153331522917782, 40.071310235308573 ], [ -75.152754523065184, 40.070981233874953 ], [ -75.152183522440382, 40.070657233226846 ], [ -75.151884521298541, 40.070489232551616 ], [ -75.151594521141206, 40.070329231993391 ], [ -75.150717520817864, 40.069829229741003 ], [ -75.150000519266925, 40.069425228519641 ], [ -75.149572518815262, 40.069188227371932 ], [ -75.148329518552785, 40.068486225360807 ], [ -75.14764251811539, 40.068097224135215 ], [ -75.146681516231922, 40.067548221564387 ], [ -75.145475515266156, 40.066857219679704 ], [ -75.145450515696353, 40.066843218808806 ], [ -75.145185515818866, 40.066693218833322 ], [ -75.144855514945434, 40.066504217935574 ], [ -75.144545515242953, 40.066323217435723 ], [ -75.144094514425618, 40.066068216165839 ], [ -75.14311551314006, 40.065494214210034 ], [ -75.143054512942655, 40.065459214051394 ], [ -75.141874512257701, 40.064794211791472 ], [ -75.141848512412253, 40.064779211591471 ], [ -75.140707511059148, 40.064134209824282 ], [ -75.140577511634532, 40.064057208918321 ], [ -75.139519268837617, 40.063416016114004 ], [ -75.139526991378006, 40.063388665476758 ], [ -75.139809573005579, 40.062003349739669 ], [ -75.140625087775504, 40.058264218012908 ], [ -75.141295655807738, 40.055228047913886 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WISSAHICKON_PARK", "LISTNAME": "Wissahickon Park", "MAPNAME": "Wissahickon Park", "Shape_Leng": 95219.192705900001, "Shape_Area": 63483783.9789 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.223450065216014, 40.079259183140884 ], [ -75.222571159349513, 40.078690551849668 ], [ -75.221722548035757, 40.078920299033747 ], [ -75.222194027938684, 40.078391666808599 ], [ -75.218584338354688, 40.075741590460829 ], [ -75.217228970322751, 40.076926584298384 ], [ -75.216884347673243, 40.076881601255366 ], [ -75.216520201764681, 40.076924862593046 ], [ -75.216102937581354, 40.077074679799018 ], [ -75.215671595598707, 40.077154564311492 ], [ -75.215288490573101, 40.07714995098334 ], [ -75.215116179250401, 40.077127457132818 ], [ -75.217169639271987, 40.075057577996382 ], [ -75.215297077239413, 40.073371265945966 ], [ -75.215416391991354, 40.073235964542491 ], [ -75.215800137609392, 40.072870891438413 ], [ -75.218772252421402, 40.072897347383226 ], [ -75.220539785522547, 40.072858177626301 ], [ -75.221279212700495, 40.072874449827651 ], [ -75.221579221245236, 40.072661722088768 ], [ -75.221509188297546, 40.072476646062746 ], [ -75.221921884364065, 40.072017429370639 ], [ -75.221644366945043, 40.071857597583815 ], [ -75.222492808609417, 40.071251567526708 ], [ -75.221671715207293, 40.070442878999231 ], [ -75.221393486995765, 40.070749103722662 ], [ -75.220805242102728, 40.070170031296158 ], [ -75.22061987626536, 40.070370928674045 ], [ -75.219885086920783, 40.069974081243124 ], [ -75.220641794801594, 40.069434604213718 ], [ -75.219043155205497, 40.067788998930887 ], [ -75.218127480806928, 40.06805534538951 ], [ -75.217191718857009, 40.068546046332735 ], [ -75.216721394984773, 40.068802425132311 ], [ -75.216212026210457, 40.069235291061993 ], [ -75.214735741505194, 40.068429695698597 ], [ -75.215947410951003, 40.067225987893039 ], [ -75.216673345379533, 40.067683934144171 ], [ -75.218305365030986, 40.066716669313372 ], [ -75.221356403346732, 40.06414143988372 ], [ -75.21933189872729, 40.061005871521758 ], [ -75.219788083079422, 40.060679549440536 ], [ -75.217949732262625, 40.058305927440657 ], [ -75.217375904391716, 40.059297829164613 ], [ -75.216522826600951, 40.058346610257679 ], [ -75.216637292249928, 40.057294733206383 ], [ -75.216265749709564, 40.056837650663134 ], [ -75.215628117047515, 40.05704947030106 ], [ -75.214878475124536, 40.056565706636363 ], [ -75.214264673655322, 40.056803329306632 ], [ -75.213779211107408, 40.057261996307716 ], [ -75.213414031327005, 40.057577481217791 ], [ -75.213010947306657, 40.057797220628217 ], [ -75.212894394566803, 40.058190572327085 ], [ -75.212557667691698, 40.058383506961519 ], [ -75.212722701202196, 40.05808199810987 ], [ -75.212819877192359, 40.057802256822455 ], [ -75.213426746387995, 40.057000472092483 ], [ -75.213769529945594, 40.05668761838151 ], [ -75.214038630670402, 40.056507546454796 ], [ -75.214723769440894, 40.056185445246406 ], [ -75.214982144363404, 40.056125142019191 ], [ -75.215161996140395, 40.0561183099353 ], [ -75.215461545861302, 40.056168121288501 ], [ -75.215630647312494, 40.05619825350481 ], [ -75.21582052617913, 40.056218158772303 ], [ -75.216025479974306, 40.056205762192477 ], [ -75.216206318309901, 40.056172547402802 ], [ -75.216499512940899, 40.056099808181102 ], [ -75.2167655660826, 40.055959265304999 ], [ -75.21687218144092, 40.055864410118993 ], [ -75.217162425358097, 40.055535987697091 ], [ -75.217236078328398, 40.055485195887407 ], [ -75.217320089345662, 40.055434240561056 ], [ -75.217507800625995, 40.055320387262014 ], [ -75.217581235769202, 40.055351087424498 ], [ -75.217805002706584, 40.05539222051862 ], [ -75.217819524586318, 40.055364779046421 ], [ -75.217772958928606, 40.05513783597651 ], [ -75.217707908950104, 40.054616075546491 ], [ -75.21760504987661, 40.053977397942091 ], [ -75.2175833430164, 40.05387258145079 ], [ -75.217536914366093, 40.053717792067914 ], [ -75.217474917142397, 40.053567453681296 ], [ -75.217438079574293, 40.053493954600683 ], [ -75.217397350197899, 40.053421568040797 ], [ -75.217358593243517, 40.053359256648299 ], [ -75.217310695865109, 40.053256617829199 ], [ -75.217252817362805, 40.053114504299501 ], [ -75.217207140947494, 40.053023234520687 ], [ -75.217171673827707, 40.05295377499052 ], [ -75.217115383370597, 40.052866149961496 ], [ -75.216931102399997, 40.052639446946408 ], [ -75.216858104661, 40.052555038473095 ], [ -75.216703613758114, 40.052445203448201 ], [ -75.21626477720821, 40.052215526727814 ], [ -75.215811730792396, 40.051934353640391 ], [ -75.215688692812847, 40.051842602429879 ], [ -75.21538119392558, 40.051613294373496 ], [ -75.214908882100701, 40.051175027869611 ], [ -75.214551225009302, 40.050795068747021 ], [ -75.214327437064696, 40.050446305935218 ], [ -75.214195912964598, 40.050146499611103 ], [ -75.213981243872212, 40.049804619112408 ], [ -75.213816380530304, 40.049392158786503 ], [ -75.213707370014205, 40.04924770883121 ], [ -75.213380011757295, 40.049224915389395 ], [ -75.213155464406597, 40.04916448254869 ], [ -75.213054029808006, 40.049128412772099 ], [ -75.213078657841706, 40.0490579651552 ], [ -75.213041778800701, 40.048867840106396 ], [ -75.213000858437596, 40.048785803298287 ], [ -75.212854581094788, 40.048698059130913 ], [ -75.212709415148893, 40.048698233549295 ], [ -75.212005268304793, 40.0487336495991 ], [ -75.211615488512408, 40.048656637396213 ], [ -75.2115223296924, 40.048627754362514 ], [ -75.211433060466206, 40.048588229005908 ], [ -75.2113458364325, 40.048540701048388 ], [ -75.210901319823805, 40.048200943688201 ], [ -75.210690355003109, 40.048017722188519 ], [ -75.210631543682197, 40.047982930489518 ], [ -75.210521312306, 40.04790955262731 ], [ -75.210444300775293, 40.04786895494491 ], [ -75.210339351341503, 40.04778213998889 ], [ -75.210310845636698, 40.04774498327361 ], [ -75.210274457066703, 40.047697551169399 ], [ -75.210214004405898, 40.047587578437977 ], [ -75.210059564025698, 40.047191194676813 ], [ -75.209921425179999, 40.047064981308608 ], [ -75.209730973546414, 40.047016992642554 ], [ -75.209666639233689, 40.047019226949978 ], [ -75.209101907301559, 40.046493404596816 ], [ -75.210223720054216, 40.046095204397595 ], [ -75.210076767447561, 40.04462329162164 ], [ -75.208114276389338, 40.043481618052134 ], [ -75.208379229342668, 40.043084963213694 ], [ -75.208500662185017, 40.042669555605499 ], [ -75.208473695327214, 40.042257454007043 ], [ -75.208226283212497, 40.041907341536941 ], [ -75.207925767188641, 40.041663782792533 ], [ -75.207724844428725, 40.041637526797736 ], [ -75.207255251165179, 40.041757749901826 ], [ -75.206756370246964, 40.042010336153439 ], [ -75.206098157113118, 40.042582580590924 ], [ -75.205851934901673, 40.042910694588066 ], [ -75.20540785885062, 40.042738039109629 ], [ -75.204910577426062, 40.042486870987439 ], [ -75.204955294452731, 40.041860889735425 ], [ -75.205773318748044, 40.041063389648556 ], [ -75.205886690500577, 40.04079246042793 ], [ -75.205955626643529, 40.040477807924077 ], [ -75.205919890606353, 40.040391727738879 ], [ -75.205454851092711, 40.039325362306649 ], [ -75.205453770508527, 40.039100121853529 ], [ -75.204928994320596, 40.038567064534156 ], [ -75.203645125645323, 40.037993476532677 ], [ -75.203166476704396, 40.037644698703296 ], [ -75.203233074496183, 40.037809656796604 ], [ -75.203262091028193, 40.037960708042988 ], [ -75.203256359363095, 40.038097911689185 ], [ -75.202847283976453, 40.03953217885627 ], [ -75.1999455691751, 40.037152954096101 ], [ -75.198693072352, 40.037727101426668 ], [ -75.198681262693142, 40.03773317671476 ], [ -75.198241064906398, 40.036616717847195 ], [ -75.198041482722303, 40.035677297729002 ], [ -75.197976645675695, 40.035515123466709 ], [ -75.197817897373611, 40.034757815437494 ], [ -75.197675875426, 40.034413150213588 ], [ -75.197624464871197, 40.034171068501003 ], [ -75.197537512677798, 40.033901173988397 ], [ -75.197304005307402, 40.033634932891509 ], [ -75.197124768361306, 40.03338506688138 ], [ -75.197177880328894, 40.033339614142101 ], [ -75.197268238148794, 40.033292150153706 ], [ -75.197920858803499, 40.033252328409915 ], [ -75.1986803304316, 40.033111414355297 ], [ -75.199040031742101, 40.032968878910701 ], [ -75.199253525822897, 40.032741207651704 ], [ -75.199397161552668, 40.032598098505112 ], [ -75.199664710516771, 40.032331528311424 ], [ -75.199575911986798, 40.032276770208604 ], [ -75.199339447343704, 40.032127327758808 ], [ -75.199241566158904, 40.032073261530684 ], [ -75.199118110093096, 40.031986454473966 ], [ -75.198943328307905, 40.031863557577203 ], [ -75.198730433929001, 40.031752147933602 ], [ -75.1986041206344, 40.031653105749193 ], [ -75.198420531762494, 40.031485618426899 ], [ -75.198203142453593, 40.031212973274599 ], [ -75.198158638546602, 40.031135413538195 ], [ -75.198066259916104, 40.030914372842808 ], [ -75.198058003892214, 40.030816991798702 ], [ -75.198072546084305, 40.0307613761006 ], [ -75.19809332334971, 40.030686853322692 ], [ -75.198111852553112, 40.03062039363121 ], [ -75.198118851019501, 40.030587382281098 ], [ -75.198127801175801, 40.030545169996692 ], [ -75.198146513912803, 40.03039858249781 ], [ -75.198220772955906, 40.030019574556796 ], [ -75.198225713816299, 40.029978285011801 ], [ -75.198331379251798, 40.029633857076277 ], [ -75.198334920331703, 40.029503009981902 ], [ -75.198321460347202, 40.029380747439696 ], [ -75.198255144728805, 40.029173966753611 ], [ -75.198160720147598, 40.028911486680592 ], [ -75.198084844022802, 40.028727116745394 ], [ -75.197973742470197, 40.0285559070281 ], [ -75.197889035455702, 40.028337950395198 ], [ -75.197770405819398, 40.028155834092999 ], [ -75.197685507521001, 40.027960229644385 ], [ -75.197650244015705, 40.027777677362614 ], [ -75.19748250682872, 40.027635676738505 ], [ -75.197387849986001, 40.027572624414503 ], [ -75.197330917727498, 40.027544021599205 ], [ -75.197272024085294, 40.027518240350503 ], [ -75.197215396553005, 40.027496557654892 ], [ -75.197164003983218, 40.027479842305617 ], [ -75.197095410693393, 40.027462602210797 ], [ -75.197014815459397, 40.027447681150981 ], [ -75.196943394817694, 40.02743936562949 ], [ -75.196845449680893, 40.027432897182386 ], [ -75.196792234141199, 40.027429382710999 ], [ -75.196670215248204, 40.027414989274902 ], [ -75.196610515621899, 40.0274129465434 ], [ -75.19657337436, 40.027415158032099 ], [ -75.196539585942816, 40.027418997388999 ], [ -75.196515285024006, 40.027423615320295 ], [ -75.196488899200915, 40.027430784484913 ], [ -75.196403547909014, 40.02746075611001 ], [ -75.196311191586403, 40.0274855023995 ], [ -75.196290280543295, 40.0274906871661 ], [ -75.196253326828966, 40.027498532090391 ], [ -75.196210160000604, 40.027507695982713 ], [ -75.196165904268739, 40.027515466773302 ], [ -75.196131348313401, 40.027521534383112 ], [ -75.196054055530794, 40.027532164694001 ], [ -75.195955045838303, 40.027540783879232 ], [ -75.195807999992198, 40.027547431822896 ], [ -75.195706694901006, 40.027552078571276 ], [ -75.195595382304901, 40.02755487722559 ], [ -75.195507557063905, 40.027551477617799 ], [ -75.195445774959893, 40.02754332329831 ], [ -75.195291979552707, 40.0275112313101 ], [ -75.195254505630601, 40.027505027698197 ], [ -75.195220707024305, 40.0275011943869 ], [ -75.195147812697101, 40.027497502256097 ], [ -75.195066880693304, 40.027498043484194 ], [ -75.194844505890302, 40.027512744262516 ], [ -75.194704867883601, 40.027524570607 ], [ -75.194657334061105, 40.027530675942103 ], [ -75.194531271911302, 40.027556063339986 ], [ -75.194475632454299, 40.027573994127501 ], [ -75.194425515206902, 40.02759766103501 ], [ -75.194330393612802, 40.027638192451995 ], [ -75.194232322285103, 40.027674418918885 ], [ -75.194131300100807, 40.027706339501798 ], [ -75.194027327075005, 40.027733954192996 ], [ -75.193830202078601, 40.02778196382971 ], [ -75.19361267848241, 40.027780289038184 ], [ -75.193480073890996, 40.027762127338782 ], [ -75.193303031260001, 40.027699431500693 ], [ -75.193135392103798, 40.027551055494705 ], [ -75.192914616345206, 40.027547278794792 ], [ -75.192790266196823, 40.027560731136575 ], [ -75.192759884586096, 40.027522429151603 ], [ -75.192614252809307, 40.027324224831602 ], [ -75.19325873451757, 40.024942340468293 ], [ -75.193535756135404, 40.024457077789052 ], [ -75.193161705393678, 40.024103923200286 ], [ -75.195172164444486, 40.02319357265106 ], [ -75.195968820032206, 40.022653488886618 ], [ -75.195662866550364, 40.022364647230759 ], [ -75.196126216188006, 40.022015997537288 ], [ -75.196303219971981, 40.022186592992313 ], [ -75.198778027907892, 40.020228889594172 ], [ -75.200341497636842, 40.018558578698844 ], [ -75.201108107758216, 40.017060117718763 ], [ -75.202211298189226, 40.0161613963379 ], [ -75.202229986658821, 40.016076923231751 ], [ -75.202286050549915, 40.015823505668038 ], [ -75.205055845012367, 40.01505579120618 ], [ -75.205897388587232, 40.015339656966574 ], [ -75.206150878593732, 40.014736961981406 ], [ -75.206246069678585, 40.014696950336898 ], [ -75.206441632244548, 40.014736243905531 ], [ -75.207486266296158, 40.012947219780486 ], [ -75.207744586012723, 40.012819104197398 ], [ -75.208006207058105, 40.012998502071 ], [ -75.208241628902641, 40.01316083817418 ], [ -75.207990837733576, 40.013436197165944 ], [ -75.207900349786172, 40.01362648125464 ], [ -75.207327058990188, 40.014971450632551 ], [ -75.207063152552706, 40.015542467869174 ], [ -75.207155826368691, 40.016591270605844 ], [ -75.205433703349271, 40.017119479185645 ], [ -75.205012877007974, 40.017298825411906 ], [ -75.204954232327069, 40.017226773451753 ], [ -75.204470781484559, 40.01744010546777 ], [ -75.204337725890539, 40.017307443653614 ], [ -75.203823182000804, 40.017531874968327 ], [ -75.204069990291757, 40.017902902274159 ], [ -75.203399985257548, 40.018182845838567 ], [ -75.203616587615087, 40.018541410913173 ], [ -75.203445364462581, 40.018608366140022 ], [ -75.203564120044121, 40.019530781369909 ], [ -75.204067748606391, 40.020203804571153 ], [ -75.204517239520129, 40.020891107877453 ], [ -75.204460365777464, 40.021099165579876 ], [ -75.204190707426122, 40.021458933498046 ], [ -75.204280476157592, 40.021667242194219 ], [ -75.203677277072032, 40.022788618177373 ], [ -75.203406079077268, 40.023514096234123 ], [ -75.20298464043141, 40.023692311483956 ], [ -75.202885126062881, 40.024393462111945 ], [ -75.203242591384594, 40.024709172244584 ], [ -75.203054329061004, 40.024797721103496 ], [ -75.202832535934888, 40.024993499066298 ], [ -75.202694315257133, 40.02519829905048 ], [ -75.202612259298292, 40.025397175668978 ], [ -75.20248811562854, 40.02568177943796 ], [ -75.203156491038712, 40.025894947164431 ], [ -75.203162249276843, 40.025896783181715 ], [ -75.203584332733499, 40.026078169703133 ], [ -75.203949411323435, 40.026477880655641 ], [ -75.204539256308365, 40.027191449575916 ], [ -75.205079330635215, 40.027906210558179 ], [ -75.205567006883754, 40.028669734771384 ], [ -75.203413327636127, 40.029603625902446 ], [ -75.203847614959372, 40.030197043160854 ], [ -75.204058758722923, 40.030485548722432 ], [ -75.20429278385275, 40.03080531674712 ], [ -75.204459710467759, 40.031033399552889 ], [ -75.204812730990724, 40.031515748769102 ], [ -75.205553576691145, 40.032490374321071 ], [ -75.207613844090972, 40.031620413340107 ], [ -75.207768692556058, 40.031918497043542 ], [ -75.207830492794486, 40.032037462662814 ], [ -75.208043274954647, 40.032699665207723 ], [ -75.208444053820131, 40.033987926277469 ], [ -75.208909618396333, 40.035001711695408 ], [ -75.209218149222238, 40.035586975617313 ], [ -75.209607669272259, 40.036606182257273 ], [ -75.210397450735002, 40.037512480950134 ], [ -75.211600598990941, 40.038379206634211 ], [ -75.213049976513986, 40.039415431782125 ], [ -75.214113500162796, 40.040133309131704 ], [ -75.215759819827198, 40.041253846106599 ], [ -75.216240313097771, 40.041619935390301 ], [ -75.216459544551398, 40.041798394498585 ], [ -75.216696697926096, 40.042016485710292 ], [ -75.216925040301405, 40.042258709939723 ], [ -75.217158568802205, 40.042574027947502 ], [ -75.217338341321593, 40.042845588979503 ], [ -75.21747181090609, 40.0430857192951 ], [ -75.217610387895306, 40.043416694994939 ], [ -75.217666914480105, 40.043582641892399 ], [ -75.217729683039096, 40.043809050650296 ], [ -75.217848098666593, 40.044352809100303 ], [ -75.217842285111075, 40.046082733844472 ], [ -75.217872208330235, 40.04712233215465 ], [ -75.218150049421041, 40.048215222880309 ], [ -75.2197723345881, 40.049107740722199 ], [ -75.223285386545399, 40.050715219877503 ], [ -75.225289795688596, 40.051659719752791 ], [ -75.227164628533103, 40.052543105878406 ], [ -75.228134855404306, 40.052889561767905 ], [ -75.228801355444205, 40.053056232812409 ], [ -75.229877924516799, 40.053262305190607 ], [ -75.230419488907401, 40.053383654138592 ], [ -75.230981393847998, 40.053596672040989 ], [ -75.231225151749101, 40.053712975491401 ], [ -75.229822542356899, 40.054423827006794 ], [ -75.229391268457604, 40.054642393881302 ], [ -75.228794350843501, 40.054945545153807 ], [ -75.228650574428016, 40.055020694211692 ], [ -75.22936863128011, 40.055824010968948 ], [ -75.227934749921076, 40.056431365352516 ], [ -75.228747858160801, 40.056628239938902 ], [ -75.227783619164455, 40.057115280644354 ], [ -75.229865527952199, 40.059724756954822 ], [ -75.229601590995216, 40.059841582686111 ], [ -75.228290350853854, 40.060480961916262 ], [ -75.227339418877648, 40.059259021387511 ], [ -75.226518160915901, 40.058697910769908 ], [ -75.225366464566264, 40.058161768357586 ], [ -75.223365828132785, 40.059194477578814 ], [ -75.225930502092837, 40.062106383788944 ], [ -75.225963372584815, 40.062143702449831 ], [ -75.224882711131897, 40.062619897361515 ], [ -75.224736956059843, 40.063872921433756 ], [ -75.224758669765862, 40.064654264514921 ], [ -75.225302664846438, 40.065056650465564 ], [ -75.226561870186814, 40.065357611815223 ], [ -75.226505286546214, 40.065512542454414 ], [ -75.226091826134279, 40.065698678449465 ], [ -75.225467999145067, 40.066075407025373 ], [ -75.224675851176357, 40.066877909797299 ], [ -75.228713285853559, 40.070363325065138 ], [ -75.229311025808059, 40.070688782601557 ], [ -75.229711457842527, 40.0708537387804 ], [ -75.231955885593578, 40.070629635722341 ], [ -75.232557703857296, 40.070120359556022 ], [ -75.233081353922927, 40.07056740488369 ], [ -75.231992799860635, 40.07131437533431 ], [ -75.230708779729738, 40.071836244847411 ], [ -75.229125020901932, 40.07198619030757 ], [ -75.229104656945239, 40.072014937444841 ], [ -75.22853628372286, 40.072389687113251 ], [ -75.228401348411509, 40.073284721141533 ], [ -75.229386507776084, 40.074126239244308 ], [ -75.229267538627113, 40.074592148185097 ], [ -75.230605345987072, 40.076885985672945 ], [ -75.22853918832746, 40.077891567049988 ], [ -75.225934735718852, 40.078995070924826 ], [ -75.225943584166004, 40.079195940365295 ], [ -75.22708741034171, 40.080707304602541 ], [ -75.227485944734227, 40.081186383923075 ], [ -75.227816227958826, 40.081455096183355 ], [ -75.228461985972075, 40.081770011221636 ], [ -75.229059455501755, 40.081993073158685 ], [ -75.229497489233864, 40.082133192221306 ], [ -75.230359430321471, 40.082396092197285 ], [ -75.230865166666433, 40.082503643667629 ], [ -75.231551437868816, 40.08272296350647 ], [ -75.232481734775718, 40.083134881225284 ], [ -75.232955649892986, 40.083502751735743 ], [ -75.233065641348205, 40.083582768272009 ], [ -75.23302850709949, 40.083619439741639 ], [ -75.232950506641771, 40.08361943879509 ], [ -75.232906507117733, 40.083666439268207 ], [ -75.232594508363235, 40.083999437760838 ], [ -75.23184951266407, 40.08472743354838 ], [ -75.231719513916801, 40.084853432848078 ], [ -75.230927517948032, 40.085629429522136 ], [ -75.230498520201948, 40.086023427511073 ], [ -75.230485403535837, 40.08603668904388 ], [ -75.230457988398413, 40.086019336836365 ], [ -75.228390042835159, 40.08472574516955 ], [ -75.22773521902397, 40.084126262627031 ], [ -75.226127489798742, 40.082786167588417 ], [ -75.224542427610231, 40.081535302438333 ], [ -75.223656470099314, 40.080330220617533 ], [ -75.223959405966639, 40.080029271362278 ], [ -75.223450065216014, 40.079259183140884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "RIVERFRONT", "LISTNAME": "Riverfront", "MAPNAME": "Riverfront", "Shape_Leng": 47425.508832899999, "Shape_Area": 62838389.877900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.136202475097861, 39.938664471659614 ], [ -75.136228478016861, 39.937698474757511 ], [ -75.136193480424538, 39.93679447800605 ], [ -75.136175480792659, 39.936549478053081 ], [ -75.136184482055469, 39.935897480085785 ], [ -75.136060486046205, 39.934496484331888 ], [ -75.136061487434276, 39.934362484598438 ], [ -75.136069488230262, 39.933830486269372 ], [ -75.136087489081007, 39.933647487200744 ], [ -75.136149490803433, 39.932975489062741 ], [ -75.136069492003642, 39.932488490223747 ], [ -75.135999492819238, 39.932051491726398 ], [ -75.135537502253769, 39.929238499080398 ], [ -75.135525502617099, 39.929161498904357 ], [ -75.135350504016202, 39.928661500194266 ], [ -75.13531120665354, 39.928548693489837 ], [ -75.134894509330849, 39.927352503263513 ], [ -75.13477651060235, 39.92701050393584 ], [ -75.134482513871362, 39.926169505797446 ], [ -75.134299515331421, 39.92578250733667 ], [ -75.132753528876933, 39.92253251409322 ], [ -75.132431531870751, 39.921852515018706 ], [ -75.132374531850942, 39.921734515808922 ], [ -75.132342532128703, 39.92166751584179 ], [ -75.131629538857794, 39.920144518884015 ], [ -75.131185541810794, 39.919193520801507 ], [ -75.130348549731707, 39.917405525610505 ], [ -75.130118551563896, 39.917050525662205 ], [ -75.129530555405481, 39.916182527738123 ], [ -75.129340556618885, 39.915901527825966 ], [ -75.128868561132478, 39.9147825311994 ], [ -75.128819561611877, 39.914667531277139 ], [ -75.128634809718591, 39.914098993372811 ], [ -75.128599430790658, 39.913990216407619 ], [ -75.128251567594504, 39.913165534813224 ], [ -75.12827484086047, 39.912720654471983 ], [ -75.128379574338382, 39.910718542549944 ], [ -75.128460575523476, 39.910289543848542 ], [ -75.128487980061266, 39.909853645687704 ], [ -75.128535578374795, 39.909096547999823 ], [ -75.128671578654519, 39.908633549848325 ], [ -75.128885582141621, 39.907447553672668 ], [ -75.128900581309182, 39.907407554164031 ], [ -75.128925582176265, 39.907339554247187 ], [ -75.129128717404697, 39.906787288197158 ], [ -75.129245583389235, 39.906469557633855 ], [ -75.129306583757696, 39.90620355882637 ], [ -75.129513586084329, 39.905303561763198 ], [ -75.129542586095411, 39.905225561691402 ], [ -75.129558585596641, 39.90518156190916 ], [ -75.129566957695857, 39.905141796470218 ], [ -75.129582586335218, 39.905067562440273 ], [ -75.129632586187739, 39.90482756337974 ], [ -75.129726245183036, 39.903998707593281 ], [ -75.129732588931759, 39.903942566513685 ], [ -75.129753477322794, 39.9038761267309 ], [ -75.129909589902311, 39.903379568177542 ], [ -75.129995224605551, 39.902787922646212 ], [ -75.130052591550509, 39.902391571316599 ], [ -75.130130939262372, 39.902177000039352 ], [ -75.130347081940073, 39.901585039503082 ], [ -75.130722595620171, 39.900556578488661 ], [ -75.131361596792871, 39.899139583640448 ], [ -75.131917597430942, 39.898289587326033 ], [ -75.131993597223513, 39.898189587816283 ], [ -75.133229588138235, 39.896554169906942 ], [ -75.134694598797466, 39.894615602791262 ], [ -75.135398601254607, 39.893058608392479 ], [ -75.135427600791658, 39.893010608432512 ], [ -75.135542874255577, 39.892822599745756 ], [ -75.141295958109168, 39.894231747147344 ], [ -75.146949138802015, 39.895013067425083 ], [ -75.151098777842435, 39.895521968504553 ], [ -75.148847518695334, 39.908617061601355 ], [ -75.148747515367617, 39.909717051196004 ], [ -75.147825150732743, 39.913723588456506 ], [ -75.147942536422278, 39.913739629423333 ], [ -75.148360547149053, 39.913800187168945 ], [ -75.14812110682432, 39.914691622074329 ], [ -75.147991853333906, 39.915172828597591 ], [ -75.147740646076215, 39.916776183922508 ], [ -75.148056589723126, 39.918910531206528 ], [ -75.148221557746567, 39.920337159754077 ], [ -75.148043263975865, 39.921540434049973 ], [ -75.14654070409189, 39.930046947163397 ], [ -75.146227434436454, 39.93125619496854 ], [ -75.145724659038919, 39.933443667797924 ], [ -75.145714651220132, 39.933487211140893 ], [ -75.145297993750432, 39.933456305287201 ], [ -75.144808129358452, 39.935403113056651 ], [ -75.14376439559247, 39.938256364461886 ], [ -75.144228874940481, 39.93832685436719 ], [ -75.144655530672736, 39.938317868205658 ], [ -75.144590836211719, 39.938609357800011 ], [ -75.144546482151966, 39.9388092036423 ], [ -75.144474008810832, 39.939135736421001 ], [ -75.144388880547169, 39.939545509783692 ], [ -75.144271296863622, 39.940057064615388 ], [ -75.144059382222721, 39.940974521697548 ], [ -75.143930581188712, 39.941533986304428 ], [ -75.143848665097735, 39.941888959359964 ], [ -75.143625233796129, 39.942853983891915 ], [ -75.143511023822995, 39.943430145882417 ], [ -75.143371004811073, 39.944202034555857 ], [ -75.143086842521726, 39.945320109262134 ], [ -75.142878875792874, 39.946308189060346 ], [ -75.142807880000944, 39.946645494830292 ], [ -75.142805517713711, 39.946656720101004 ], [ -75.142676459034973, 39.947270030007566 ], [ -75.142632999742546, 39.947476343359973 ], [ -75.142578874676047, 39.947735330244136 ], [ -75.142482246106908, 39.948192559187504 ], [ -75.141783429211216, 39.951421757887907 ], [ -75.141673394585226, 39.951602971063743 ], [ -75.141681669649699, 39.951609884457255 ], [ -75.140928747271872, 39.953640602596167 ], [ -75.140742138731198, 39.954105863429668 ], [ -75.140378078351105, 39.955533225340361 ], [ -75.139928605974646, 39.956904461876796 ], [ -75.139653379628868, 39.957654433982917 ], [ -75.139198104488756, 39.959302226171673 ], [ -75.138987806550375, 39.960312479479981 ], [ -75.138986511315508, 39.960318700381499 ], [ -75.138982660803066, 39.960329836758085 ], [ -75.138944747787917, 39.960439502055529 ], [ -75.138863839017858, 39.96043007834497 ], [ -75.137169470897831, 39.960212307915583 ], [ -75.131393800936607, 39.957735188766982 ], [ -75.131775436225553, 39.957320404847174 ], [ -75.13246143713522, 39.956356409082467 ], [ -75.1336964381819, 39.954621418078212 ], [ -75.133758437816397, 39.954461418517106 ], [ -75.133853438959974, 39.95421841887061 ], [ -75.134168440237985, 39.953410422626639 ], [ -75.134268440757211, 39.95315642349513 ], [ -75.13430544133854, 39.953060423570477 ], [ -75.13436844127159, 39.952899424787205 ], [ -75.134384441080641, 39.952858424600777 ], [ -75.134430441655581, 39.952742425346621 ], [ -75.134634442031981, 39.952218427364876 ], [ -75.135022979234492, 39.951226160094642 ], [ -75.135237444877887, 39.950678433522697 ], [ -75.135339973709549, 39.950015920025358 ], [ -75.135434448162826, 39.949405438004923 ], [ -75.135468447767209, 39.949184438135312 ], [ -75.135604450552705, 39.948313441344013 ], [ -75.135814453565757, 39.946969446551144 ], [ -75.13595345512752, 39.94606344916668 ], [ -75.13600145636552, 39.945642450382259 ], [ -75.136266462579187, 39.943283458482142 ], [ -75.136255463769189, 39.94292645893438 ], [ -75.136255463385879, 39.942638459828217 ], [ -75.136263469484689, 39.94047946714192 ], [ -75.136246471013337, 39.940208467640083 ], [ -75.136219471664731, 39.939765468431617 ], [ -75.136202475097861, 39.938664471659614 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "BYBERRY", "LISTNAME": "Byberry", "MAPNAME": "Byberry", "Shape_Leng": 33932.947204199998, "Shape_Area": 46168309.600599989 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.984381010759776, 40.123790165809545 ], [ -74.984100777348658, 40.123726760020162 ], [ -74.983779778470279, 40.123721760272332 ], [ -74.983521779049283, 40.12367175957251 ], [ -74.983280779646535, 40.123535759751547 ], [ -74.982999780939977, 40.123377759833147 ], [ -74.982956781253023, 40.123353759778773 ], [ -74.982724151717704, 40.123066296604904 ], [ -74.982676781793259, 40.123007759807678 ], [ -74.982562379797741, 40.122819852471217 ], [ -74.982469783069533, 40.122667760858477 ], [ -74.982390783589324, 40.122464760982737 ], [ -74.982247783333264, 40.122195760329795 ], [ -74.982211782981594, 40.122057760864998 ], [ -74.982289783590119, 40.121739761228859 ], [ -74.982446782659949, 40.121442761771029 ], [ -74.982492499657184, 40.121383280756874 ], [ -74.982539782219519, 40.121321761350657 ], [ -74.982567774974413, 40.121260893223067 ], [ -74.982625781371709, 40.121134761533746 ], [ -74.982704781645282, 40.121057761869444 ], [ -74.982746780490146, 40.120887762247868 ], [ -74.982711780572686, 40.120733761578705 ], [ -74.982675781129743, 40.120651761619833 ], [ -74.98228178262886, 40.120338762098797 ], [ -74.981945783494325, 40.120245761877101 ], [ -74.98113005528576, 40.120120321055985 ], [ -74.980807788354696, 40.120070762257335 ], [ -74.980213790554686, 40.120015761590359 ], [ -74.980110790294191, 40.119933761608621 ], [ -74.980074791256314, 40.119903762133781 ], [ -74.980056790716034, 40.119883761905648 ], [ -74.980038791156133, 40.119862761515591 ], [ -74.979938791569793, 40.119742761838516 ], [ -74.979841791758204, 40.119625761891093 ], [ -74.979736968258706, 40.119600138735379 ], [ -74.979526792776113, 40.119548762260528 ], [ -74.979290793817967, 40.119526761457507 ], [ -74.978954795224908, 40.119565762034561 ], [ -74.978811794951852, 40.119603761378151 ], [ -74.977852798882708, 40.120043761108654 ], [ -74.977559800256401, 40.120137760933098 ], [ -74.977352801232968, 40.120159760599357 ], [ -74.977115801836533, 40.12010976035085 ], [ -74.97701780224466, 40.120088760438747 ], [ -74.976887802873975, 40.120060760584089 ], [ -74.976815804005369, 40.120065760640095 ], [ -74.976322805901233, 40.120192760725168 ], [ -74.976178806500911, 40.120209760438598 ], [ -74.976081206684015, 40.120202252927172 ], [ -74.975814807780338, 40.120181759854177 ], [ -74.975098810105735, 40.120050759746348 ], [ -74.97483027721978, 40.120017420430479 ], [ -74.974655811669436, 40.119995759776153 ], [ -74.974018814381807, 40.119984759662003 ], [ -74.9732178170986, 40.119891759900455 ], [ -74.973175681960541, 40.119877388613716 ], [ -74.972959818634479, 40.119803759510326 ], [ -74.972644819856185, 40.119655760180024 ], [ -74.972050821479783, 40.119260759553818 ], [ -74.971871822339253, 40.11908476011714 ], [ -74.971805722100996, 40.119009865780662 ], [ -74.971420823898697, 40.118573760660652 ], [ -74.971170825094973, 40.118260760742828 ], [ -74.971084825170905, 40.118079760943623 ], [ -74.970948825902866, 40.117909761267747 ], [ -74.97080050106517, 40.117779671882253 ], [ -74.970788497727625, 40.11776914473252 ], [ -74.970704826936611, 40.117695760520888 ], [ -74.970504827319147, 40.11745976083332 ], [ -74.970261828663936, 40.117277761267538 ], [ -74.970144828548726, 40.117215761459498 ], [ -74.970117828854654, 40.117201761204875 ], [ -74.969831829500748, 40.117118761350874 ], [ -74.969545831259055, 40.117085761098238 ], [ -74.969309832108237, 40.117097761186479 ], [ -74.968572834355172, 40.117251760301052 ], [ -74.967921836966497, 40.117492760407821 ], [ -74.967605838380734, 40.117609760370215 ], [ -74.967419808930075, 40.117678429266199 ], [ -74.96737027361776, 40.117696714384245 ], [ -74.966412735184178, 40.118050163310599 ], [ -74.966329843749463, 40.118080759196012 ], [ -74.966226844737193, 40.118119759095201 ], [ -74.965461847357219, 40.118553758534105 ], [ -74.96543810460355, 40.118559280227807 ], [ -74.965406161605188, 40.11856670914031 ], [ -74.965203847981499, 40.118613758223972 ], [ -74.96498984879716, 40.118635758930992 ], [ -74.964846024434792, 40.118598513280453 ], [ -74.964741230001721, 40.118571374907738 ], [ -74.964610850245009, 40.118476758185274 ], [ -74.964524850673911, 40.118372758546833 ], [ -74.964428461998025, 40.118182828903294 ], [ -74.964287851669042, 40.117905759430336 ], [ -74.964078852445837, 40.117766759135776 ], [ -74.964029852592816, 40.117734758963287 ], [ -74.963908853095987, 40.11765375945307 ], [ -74.963886076247206, 40.117612346742021 ], [ -74.96387585360975, 40.117593759565068 ], [ -74.963855853029429, 40.117557759264805 ], [ -74.963751853200407, 40.117367758990092 ], [ -74.963739853256058, 40.117342759066048 ], [ -74.963696854280769, 40.117250759491597 ], [ -74.96357973145561, 40.117002207558741 ], [ -74.963565854739215, 40.11697275950327 ], [ -74.963556956550789, 40.116943999763237 ], [ -74.964287420018891, 40.117217953893267 ], [ -74.966503724931073, 40.117670248412828 ], [ -74.968075655164867, 40.116772390787112 ], [ -74.969544286017566, 40.115915342663833 ], [ -74.969919301174968, 40.113376687934668 ], [ -74.971167093339957, 40.112380414085642 ], [ -74.97280101408036, 40.111075779584972 ], [ -74.974038160474777, 40.110087908262486 ], [ -74.975400267148657, 40.109001897041914 ], [ -74.976576943292443, 40.108063688887775 ], [ -74.977783093927442, 40.10710193959698 ], [ -74.980075257738775, 40.105415380091955 ], [ -74.980710232110411, 40.104789415067906 ], [ -74.981822234506424, 40.104088276419695 ], [ -74.982436823823889, 40.102855213384807 ], [ -74.981978174069184, 40.102480212814328 ], [ -74.983883572292811, 40.101139563437847 ], [ -74.985573974867705, 40.100088347205897 ], [ -74.986344126678716, 40.099465604641182 ], [ -74.986624042258242, 40.099277812672298 ], [ -74.986649150483544, 40.09929833965866 ], [ -74.986936000655675, 40.099532858731109 ], [ -74.988495523397987, 40.100731551537429 ], [ -74.994405006587343, 40.106183281056559 ], [ -74.99481575630881, 40.106224792941049 ], [ -74.996437821166907, 40.107583217365232 ], [ -74.997129759950454, 40.108148724044717 ], [ -74.995846393367131, 40.109085305576194 ], [ -74.995754873507764, 40.109205353889784 ], [ -74.995711621683313, 40.109397878315725 ], [ -74.995696474246898, 40.10956108416854 ], [ -74.995733198664666, 40.109780722617373 ], [ -74.995930605563899, 40.109955557248419 ], [ -74.996197907792961, 40.110106607020974 ], [ -74.998484754816275, 40.111995467888036 ], [ -74.998891161596632, 40.111718861024883 ], [ -75.002492459256317, 40.115995460789229 ], [ -75.002846993451115, 40.116141514940956 ], [ -75.00324071113242, 40.116613868981972 ], [ -74.997102964555324, 40.121170560271061 ], [ -74.996433654647262, 40.120777119292939 ], [ -74.995263182963413, 40.119885601622919 ], [ -74.993555325145138, 40.118655240143177 ], [ -74.99268935541059, 40.119435068157955 ], [ -74.990172958413623, 40.121599197833199 ], [ -74.987956655127022, 40.123341597028698 ], [ -74.987511493291564, 40.123652212368476 ], [ -74.987449763842136, 40.123571761259839 ], [ -74.987327764796959, 40.123373761205805 ], [ -74.987287764636207, 40.123337761525036 ], [ -74.987248764879268, 40.123302761714278 ], [ -74.987191764597554, 40.123286761752553 ], [ -74.987057765852555, 40.123247761177915 ], [ -74.986926766472578, 40.123209761505478 ], [ -74.98669076700925, 40.123187761814073 ], [ -74.986620284839432, 40.123202630603103 ], [ -74.986325768190753, 40.123264761007114 ], [ -74.985335733972519, 40.123747514714687 ], [ -74.985074773662234, 40.123874760311097 ], [ -74.984981774172326, 40.123896760190789 ], [ -74.984752774322729, 40.123874759968295 ], [ -74.984458775428777, 40.123807760411964 ], [ -74.984381010759776, 40.123790165809545 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WEST_TORRESDALE", "LISTNAME": "West Torresdale", "MAPNAME": "West Torresdale", "Shape_Leng": 10730.0049215, "Shape_Area": 5820666.5140699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.998515145721669, 40.064209088434282 ], [ -74.999032672178217, 40.064492457706315 ], [ -75.00290256947541, 40.066677924382759 ], [ -75.007193093074591, 40.06922593025925 ], [ -75.006628084244227, 40.06959890087947 ], [ -75.006167737494664, 40.069887375506759 ], [ -75.005655729718384, 40.070208219488826 ], [ -75.004967052433798, 40.070639762725555 ], [ -75.004342011565498, 40.071031420812979 ], [ -75.00367566807715, 40.071448950877006 ], [ -75.002918159371603, 40.072171341407298 ], [ -75.002587669022816, 40.072965582877224 ], [ -75.002348648674868, 40.073539988546401 ], [ -75.002250389681919, 40.074015536418898 ], [ -75.002218555197487, 40.073999054322655 ], [ -75.001406031003867, 40.073542175319595 ], [ -75.000742677304046, 40.073169166728107 ], [ -74.999787540326935, 40.072598566800231 ], [ -74.999132428842799, 40.07220719394526 ], [ -74.999306946712949, 40.072039569584831 ], [ -74.998085340490675, 40.071334129961443 ], [ -74.997446542978182, 40.070965233505007 ], [ -74.996735915880478, 40.070554847513691 ], [ -74.995892860141396, 40.070067971621441 ], [ -74.994635321417221, 40.069372091026935 ], [ -74.995024384876317, 40.068743055629461 ], [ -74.995252663730454, 40.068373970770281 ], [ -74.995490531192715, 40.067989377386702 ], [ -74.995732233036563, 40.06759858064445 ], [ -74.995977767994191, 40.067201579590481 ], [ -74.996310604236982, 40.06666341471179 ], [ -74.997075866075193, 40.06640257340689 ], [ -74.998307119208945, 40.066367639592741 ], [ -74.998902139003903, 40.065479926424317 ], [ -74.998480603962861, 40.064847050808346 ], [ -74.998210947965148, 40.064604365092606 ], [ -74.998515145721669, 40.064209088434282 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "MECHANICSVILLE", "LISTNAME": "Mechanicsville", "MAPNAME": "Mechanicsville", "Shape_Leng": 5941.3326182299998, "Shape_Area": 1646440.4726 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.965540718745345, 40.11006441330305 ], [ -74.965049107046767, 40.109393910420003 ], [ -74.964208869018577, 40.109423111955692 ], [ -74.963732451116968, 40.109435809972602 ], [ -74.963998851291009, 40.109123767594184 ], [ -74.964384849597124, 40.108804767355494 ], [ -74.964806847453787, 40.108563767836159 ], [ -74.965063847156713, 40.108348767824026 ], [ -74.965298845854463, 40.108089768554684 ], [ -74.965357845198966, 40.108024768811184 ], [ -74.96534884484339, 40.107968768244298 ], [ -74.965342844988299, 40.107931768238082 ], [ -74.965192846238722, 40.107777768969939 ], [ -74.96464884825528, 40.107321768927825 ], [ -74.964555849035904, 40.107272769189152 ], [ -74.964383848640054, 40.10721776893628 ], [ -74.96392685078915, 40.107173769463913 ], [ -74.963775851623211, 40.107124769229749 ], [ -74.963672855894899, 40.107041464205075 ], [ -74.963639851718142, 40.107014769357619 ], [ -74.96356185290486, 40.106899769332784 ], [ -74.963489852326489, 40.106740769343112 ], [ -74.963468852914332, 40.10656976959028 ], [ -74.963459852543039, 40.106495769929623 ], [ -74.963440853442108, 40.106342769789393 ], [ -74.963440067528623, 40.106336281950128 ], [ -74.963717265095966, 40.105974034013876 ], [ -74.964813737080718, 40.105783259944914 ], [ -74.964937645562557, 40.106063565287364 ], [ -74.967346254941006, 40.105671269217687 ], [ -74.968026966958348, 40.105583753998232 ], [ -74.968403759413604, 40.10719488908699 ], [ -74.968756646659457, 40.108703740359118 ], [ -74.968282925070042, 40.109246886481714 ], [ -74.967541441631312, 40.109714225556331 ], [ -74.966194660415908, 40.110080248450913 ], [ -74.965540718745345, 40.11006441330305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "PARKWOOD_MANOR", "LISTNAME": "Parkwood Manor", "MAPNAME": "Parkwood Manor", "Shape_Leng": 36872.934875300001, "Shape_Area": 47006036.322300009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.963448854093357, 40.11001376637951 ], [ -74.963712851984084, 40.109458766461486 ], [ -74.963732451116968, 40.109435809972602 ], [ -74.964208869018577, 40.109423111955692 ], [ -74.965049107046767, 40.109393910420003 ], [ -74.965540718745345, 40.11006441330305 ], [ -74.966194660415908, 40.110080248450913 ], [ -74.967541441631312, 40.109714225556331 ], [ -74.968282925070042, 40.109246886481714 ], [ -74.968756646659457, 40.108703740359118 ], [ -74.968403759413604, 40.10719488908699 ], [ -74.968026966958348, 40.105583753998232 ], [ -74.967346254941006, 40.105671269217687 ], [ -74.964937645562557, 40.106063565287364 ], [ -74.964813737080718, 40.105783259944914 ], [ -74.963717265095966, 40.105974034013876 ], [ -74.963440067528623, 40.106336281950128 ], [ -74.963434501527374, 40.106290297834093 ], [ -74.963417852998589, 40.106152770185119 ], [ -74.963203853340588, 40.105724770713046 ], [ -74.962704864657965, 40.105315714458328 ], [ -74.962687856116247, 40.105301770708067 ], [ -74.962487856361847, 40.105032770727625 ], [ -74.962444856782923, 40.104883771275233 ], [ -74.962418099139342, 40.104831594706972 ], [ -74.962244857330262, 40.104493771297676 ], [ -74.962144857942391, 40.104384771259234 ], [ -74.96167185983839, 40.10412077138389 ], [ -74.961154861608762, 40.103446772140501 ], [ -74.961139861606711, 40.10343177215011 ], [ -74.960999175864757, 40.103323460029294 ], [ -74.960993073274722, 40.10331178546631 ], [ -74.960884863079087, 40.103104772744835 ], [ -74.960906862705542, 40.10303377304389 ], [ -74.961024839865217, 40.102971402949528 ], [ -74.961063862095756, 40.102950772528558 ], [ -74.961033320338572, 40.102880524693767 ], [ -74.960963862551395, 40.102720772659993 ], [ -74.960863862794781, 40.102615773037826 ], [ -74.960870863081695, 40.102473773482082 ], [ -74.960934862999977, 40.102407773679644 ], [ -74.961077861770335, 40.102313773827909 ], [ -74.961056861903231, 40.101852774088172 ], [ -74.960991862416307, 40.101792774377408 ], [ -74.960946862559553, 40.10176277445786 ], [ -74.96081286267345, 40.101676774373125 ], [ -74.960805862846655, 40.101572773970858 ], [ -74.960986862792083, 40.101392774296016 ], [ -74.96105286220353, 40.101326774300482 ], [ -74.961241861468139, 40.101138774864495 ], [ -74.961320860670625, 40.10099577447199 ], [ -74.961539155542241, 40.100909780158389 ], [ -74.961584859946015, 40.100891775202008 ], [ -74.961685858758912, 40.10073177512588 ], [ -74.96170685966176, 40.100578775131517 ], [ -74.961699897342456, 40.100515399654178 ], [ -74.961677859335623, 40.100314775739605 ], [ -74.961691859660348, 40.100067775495752 ], [ -74.961856858626376, 40.099693775803345 ], [ -74.961842858739701, 40.099622775977146 ], [ -74.961734858861917, 40.099496776323548 ], [ -74.961605860059393, 40.099463775992234 ], [ -74.96141286055267, 40.09938077598413 ], [ -74.961369860901158, 40.099287776678096 ], [ -74.961398860650775, 40.099172777047173 ], [ -74.96149885957692, 40.099056776603426 ], [ -74.961827858494502, 40.098820776859405 ], [ -74.961870858741023, 40.098644777104212 ], [ -74.96175585816178, 40.098474777674603 ], [ -74.96164185966542, 40.09842877736002 ], [ -74.961483860052894, 40.098364777544077 ], [ -74.961462860422841, 40.098298777307754 ], [ -74.961512860097173, 40.098161777366407 ], [ -74.961662858635549, 40.097969777653176 ], [ -74.961648251837403, 40.097896744658748 ], [ -74.961645858786781, 40.097884778040729 ], [ -74.961628858708849, 40.097804777568285 ], [ -74.961626858835444, 40.09779377832654 ], [ -74.961512496160097, 40.097675016431758 ], [ -74.961449399479889, 40.097609492604953 ], [ -74.96134086059638, 40.09749677832562 ], [ -74.961190860915622, 40.097447778537187 ], [ -74.961047861521891, 40.097431778062564 ], [ -74.960453864171797, 40.097464778038024 ], [ -74.960081866050189, 40.097376778536606 ], [ -74.959938866126947, 40.097370778569882 ], [ -74.959337868803757, 40.097129778475171 ], [ -74.959152869890985, 40.0970477787288 ], [ -74.958769870947293, 40.096938778617456 ], [ -74.958747871125766, 40.09692977884761 ], [ -74.958661196210443, 40.096890568019276 ], [ -74.958728780522108, 40.096847237428484 ], [ -74.959180649567344, 40.096103357106699 ], [ -74.959704958629715, 40.095460631892685 ], [ -74.961253888552051, 40.094114486475405 ], [ -74.96209052961008, 40.093370086618265 ], [ -74.964099562329764, 40.09236278953729 ], [ -74.964388984274549, 40.092242354337451 ], [ -74.965568586657, 40.091515344859573 ], [ -74.966641969690428, 40.090776648276382 ], [ -74.967935927010558, 40.089861210773741 ], [ -74.96937268445663, 40.088931007120486 ], [ -74.970567372512008, 40.088122383057751 ], [ -74.971519414067274, 40.08723847780643 ], [ -74.971527739570263, 40.087244496371341 ], [ -74.973892821936047, 40.088953942187949 ], [ -74.97839702023812, 40.092528861437941 ], [ -74.979919210421414, 40.093797012802163 ], [ -74.979961453407483, 40.093765303126034 ], [ -74.980393924187098, 40.093404572743168 ], [ -74.98070600636872, 40.093144255940878 ], [ -74.980926068633508, 40.09296069472294 ], [ -74.981168265838477, 40.092758668204453 ], [ -74.981568919756242, 40.092424462379633 ], [ -74.981884513554448, 40.092151473454287 ], [ -74.982476697728018, 40.091814995417941 ], [ -74.983077453928004, 40.091268278622962 ], [ -74.983237151716125, 40.091085064093718 ], [ -74.983617977368667, 40.090633526755376 ], [ -74.983716746428556, 40.090516417956444 ], [ -74.983868479825702, 40.090334948240226 ], [ -74.984156527669427, 40.089987044561632 ], [ -74.984160684046785, 40.089990040600746 ], [ -74.984715041549677, 40.090389596037596 ], [ -74.985207604234304, 40.090744606677482 ], [ -74.985730351141342, 40.091143565973915 ], [ -74.986058602614492, 40.091394082100514 ], [ -74.986454342609377, 40.091696101874902 ], [ -74.986964815842285, 40.092141439772462 ], [ -74.987385400515549, 40.092508351504641 ], [ -74.987725938130396, 40.092790131025986 ], [ -74.988087242915014, 40.093089092560035 ], [ -74.98859221909143, 40.093506925297952 ], [ -74.989116145799798, 40.0939404324957 ], [ -74.989623977239575, 40.094363712818542 ], [ -74.990150763286934, 40.094802783725591 ], [ -74.990509710540962, 40.095101958036309 ], [ -74.991250666751256, 40.095719515735809 ], [ -74.991299999741571, 40.095760341043885 ], [ -74.991264519676591, 40.095779982451646 ], [ -74.989961984543456, 40.096715980559736 ], [ -74.988451359962269, 40.097801459755168 ], [ -74.987811297252279, 40.098404212044329 ], [ -74.986861613053051, 40.099148373400737 ], [ -74.986649150483544, 40.09929833965866 ], [ -74.986624042258242, 40.099277812672298 ], [ -74.986344126678716, 40.099465604641182 ], [ -74.985573974867705, 40.100088347205897 ], [ -74.983883572292811, 40.101139563437847 ], [ -74.981978174069184, 40.102480212814328 ], [ -74.982436823823889, 40.102855213384807 ], [ -74.981822234506424, 40.104088276419695 ], [ -74.980710232110411, 40.104789415067906 ], [ -74.980075257738775, 40.105415380091955 ], [ -74.977783093927442, 40.10710193959698 ], [ -74.976576943292443, 40.108063688887775 ], [ -74.975400267148657, 40.109001897041914 ], [ -74.974038160474777, 40.110087908262486 ], [ -74.97280101408036, 40.111075779584972 ], [ -74.971167093339957, 40.112380414085642 ], [ -74.969919301174968, 40.113376687934668 ], [ -74.969544286017566, 40.115915342663833 ], [ -74.968075655164867, 40.116772390787112 ], [ -74.966503724931073, 40.117670248412828 ], [ -74.964287420018891, 40.117217953893267 ], [ -74.963556956550789, 40.116943999763237 ], [ -74.963242855789247, 40.115928761012299 ], [ -74.963193145402045, 40.115683927422729 ], [ -74.963135855964026, 40.115401760759596 ], [ -74.96312785550397, 40.114978761893418 ], [ -74.963172294798767, 40.114792363065725 ], [ -74.963199855846995, 40.11467676137692 ], [ -74.963311378605269, 40.114416538993495 ], [ -74.963385854174206, 40.114242762177902 ], [ -74.963470854347634, 40.113956762414233 ], [ -74.963492854618607, 40.113786762520753 ], [ -74.963578853925071, 40.113671763286014 ], [ -74.963628853020367, 40.113369762812958 ], [ -74.96364285326365, 40.112836763681834 ], [ -74.963491854116455, 40.112281764326859 ], [ -74.963505853627652, 40.111935764382864 ], [ -74.963577853202963, 40.111540765032771 ], [ -74.963655853028854, 40.111309765395418 ], [ -74.963648853144988, 40.111111765640977 ], [ -74.963598852936371, 40.110886765752248 ], [ -74.963369854199001, 40.110337766415647 ], [ -74.963448854093357, 40.11001376637951 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "FRANKLIN_MILLS", "LISTNAME": "Franklin Mills", "MAPNAME": "Franklin Mills", "Shape_Leng": 18142.228144799999, "Shape_Area": 14847439.2465 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.957413876678075, 40.09597077944656 ], [ -74.957077878018623, 40.095915779477366 ], [ -74.956827879468491, 40.095943779262477 ], [ -74.956634880764184, 40.095943779605854 ], [ -74.956627565102764, 40.095940252541247 ], [ -74.956269881870256, 40.095767780040411 ], [ -74.956244778444116, 40.095762618612099 ], [ -74.956162882019584, 40.095745779397355 ], [ -74.956112882863351, 40.09569178016033 ], [ -74.956061883253881, 40.095570779733997 ], [ -74.955833883951655, 40.095235780803669 ], [ -74.955791357866602, 40.095138997132196 ], [ -74.955775884680634, 40.095103780069927 ], [ -74.955761884223989, 40.094982780480457 ], [ -74.955811884427845, 40.094856780399979 ], [ -74.955911884068215, 40.094718780488172 ], [ -74.956047882497742, 40.094598781301066 ], [ -74.956304881608105, 40.094037781514558 ], [ -74.956326881252139, 40.093845781845488 ], [ -74.956297881775697, 40.09363678201386 ], [ -74.956297881243088, 40.093422782261072 ], [ -74.956354882052096, 40.093307782137131 ], [ -74.956504881204822, 40.093115782707343 ], [ -74.95666988034634, 40.092977783156329 ], [ -74.956862879408931, 40.092741782627868 ], [ -74.956962878542583, 40.09252178324607 ], [ -74.957062878546566, 40.092098783521124 ], [ -74.957920873976462, 40.090742784994042 ], [ -74.958055873379237, 40.090423785162393 ], [ -74.958070873663118, 40.089951785830898 ], [ -74.958046873606435, 40.089757785542773 ], [ -74.958034874190517, 40.089665786370169 ], [ -74.958034874260292, 40.089587802022912 ], [ -74.958034874030929, 40.089451786700771 ], [ -74.958112873893384, 40.088863786921046 ], [ -74.95809784691815, 40.088794915963945 ], [ -74.958076873962384, 40.088698787257691 ], [ -74.958016540365819, 40.088587467285301 ], [ -74.958005873615534, 40.088567787332408 ], [ -74.957697874835873, 40.088276787789738 ], [ -74.957676875555009, 40.087754788161433 ], [ -74.957683204944118, 40.087736977211065 ], [ -74.958004874009674, 40.086831788825897 ], [ -74.958161872839881, 40.086650789446935 ], [ -74.958226872323948, 40.08633778979118 ], [ -74.958297871868837, 40.086161789176032 ], [ -74.95837687203489, 40.086046790029584 ], [ -74.958397871789046, 40.085952790024521 ], [ -74.958369872478315, 40.085881790142089 ], [ -74.958163505932433, 40.085698853296613 ], [ -74.958140873177385, 40.085678789871608 ], [ -74.958068873341603, 40.085584789848347 ], [ -74.958032873631566, 40.085474790768316 ], [ -74.958018873513822, 40.085271790976719 ], [ -74.958054872928614, 40.08515679092325 ], [ -74.958118872970431, 40.085073790567527 ], [ -74.958233872226813, 40.084991791083802 ], [ -74.95834787165073, 40.084942790672706 ], [ -74.958375871424423, 40.084887790684981 ], [ -74.958390872179507, 40.084508791103886 ], [ -74.958232872988958, 40.084431791546685 ], [ -74.958175872328567, 40.08433779185517 ], [ -74.958154873237731, 40.084250791254696 ], [ -74.958282872623656, 40.084145791341726 ], [ -74.958465069914809, 40.084075715953944 ], [ -74.958568870562161, 40.084035791963508 ], [ -74.958625870185827, 40.083997792181798 ], [ -74.958634589827966, 40.083970260784874 ], [ -74.9587338706975, 40.083656792340747 ], [ -74.958818870312143, 40.083514792003818 ], [ -74.958895288073961, 40.083446591118275 ], [ -74.958911869780266, 40.083431792682617 ], [ -74.958934885612649, 40.08331992370303 ], [ -74.958954868853638, 40.083222792930442 ], [ -74.958911869567444, 40.082959792957297 ], [ -74.958833869250213, 40.082794792570567 ], [ -74.958804870285931, 40.082585793307743 ], [ -74.958839869967662, 40.082503793141775 ], [ -74.958925869620657, 40.082431793556147 ], [ -74.959083868889792, 40.082349793239935 ], [ -74.959183867958089, 40.082355793394505 ], [ -74.95927486798098, 40.08233079335831 ], [ -74.959466866371102, 40.08226179340366 ], [ -74.959612866206641, 40.082157793261551 ], [ -74.959747865449202, 40.081926793435734 ], [ -74.959912864826691, 40.081487794326478 ], [ -74.960025410998938, 40.081340248133451 ], [ -74.960076863749634, 40.081272793903885 ], [ -74.960241862628934, 40.081109794180541 ], [ -74.960298862609591, 40.081053794702839 ], [ -74.96040986200056, 40.080967794504474 ], [ -74.960562861615159, 40.080849794667273 ], [ -74.960827860439281, 40.080553795280544 ], [ -74.960998859083006, 40.080426794774752 ], [ -74.961012439380951, 40.080404028918885 ], [ -74.961270858487509, 40.079970795811263 ], [ -74.961509856926327, 40.079821795948696 ], [ -74.96161385676082, 40.07975679555156 ], [ -74.96166285605976, 40.07969479571333 ], [ -74.961677856574241, 40.079674795397494 ], [ -74.961720856436003, 40.079582795614819 ], [ -74.9617568559961, 40.079504796261809 ], [ -74.961741856331415, 40.079295796011834 ], [ -74.962249852810714, 40.078773796744642 ], [ -74.962265853430026, 40.078709796882862 ], [ -74.962313852622856, 40.078520796895113 ], [ -74.962342853405218, 40.078317796528133 ], [ -74.962372427632118, 40.078258647489882 ], [ -74.96246385177318, 40.078075797247763 ], [ -74.96273585118378, 40.077839797629778 ], [ -74.963457847957841, 40.077411797747246 ], [ -74.963785845581612, 40.077295797839795 ], [ -74.964229843987226, 40.07721879789586 ], [ -74.964407843094619, 40.077207797934172 ], [ -74.964524842704961, 40.077223797606393 ], [ -74.964553841894258, 40.077227797511114 ], [ -74.964829217948491, 40.077266417412844 ], [ -74.96575814796347, 40.080070451753748 ], [ -74.966077368720221, 40.081018926528095 ], [ -74.966290740837835, 40.081450091033517 ], [ -74.966801930287559, 40.082225714374076 ], [ -74.969139634632327, 40.085014488924777 ], [ -74.969930118214705, 40.085844472810351 ], [ -74.970746288620816, 40.086613327857251 ], [ -74.971443019054121, 40.087183258859064 ], [ -74.971519414067274, 40.08723847780643 ], [ -74.970567372512008, 40.088122383057751 ], [ -74.96937268445663, 40.088931007120486 ], [ -74.967935927010558, 40.089861210773741 ], [ -74.966641969690428, 40.090776648276382 ], [ -74.965568586657, 40.091515344859573 ], [ -74.964388984274549, 40.092242354337451 ], [ -74.964099562329764, 40.09236278953729 ], [ -74.96209052961008, 40.093370086618265 ], [ -74.961253888552051, 40.094114486475405 ], [ -74.959704958629715, 40.095460631892685 ], [ -74.959180649567344, 40.096103357106699 ], [ -74.958728780522108, 40.096847237428484 ], [ -74.958661196210443, 40.096890568019276 ], [ -74.95862187184153, 40.096872778374888 ], [ -74.958609037964777, 40.096866884584834 ], [ -74.958486872806432, 40.096810779016778 ], [ -74.958343873670344, 40.096723778658813 ], [ -74.958157873730514, 40.096569778795292 ], [ -74.957742875154608, 40.096091779631095 ], [ -74.957681516600815, 40.09606921306969 ], [ -74.957413876678075, 40.09597077944656 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "NORTHEAST_AIRPORT", "LISTNAME": "Northeast Phila Airport", "MAPNAME": "Northeast Phila Airport", "Shape_Leng": 36657.101671500001, "Shape_Area": 81858025.463499993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.991299999741571, 40.095760341043885 ], [ -74.991250666751256, 40.095719515735809 ], [ -74.990509710540962, 40.095101958036309 ], [ -74.990150763286934, 40.094802783725591 ], [ -74.989623977239575, 40.094363712818542 ], [ -74.989116145799798, 40.0939404324957 ], [ -74.98859221909143, 40.093506925297952 ], [ -74.988087242915014, 40.093089092560035 ], [ -74.987725938130396, 40.092790131025986 ], [ -74.987385400515549, 40.092508351504641 ], [ -74.986964815842285, 40.092141439772462 ], [ -74.986454342609377, 40.091696101874902 ], [ -74.986058602614492, 40.091394082100514 ], [ -74.985730351141342, 40.091143565973915 ], [ -74.985207604234304, 40.090744606677482 ], [ -74.984715041549677, 40.090389596037596 ], [ -74.984160684046785, 40.089990040600746 ], [ -74.984156527669427, 40.089987044561632 ], [ -74.984866933266019, 40.089378823226689 ], [ -74.985544006543165, 40.088302374693235 ], [ -74.985954384326902, 40.087649915025935 ], [ -74.986364754169372, 40.086997454761189 ], [ -74.986722577278073, 40.086428528240951 ], [ -74.987477443939937, 40.085808520783026 ], [ -74.98804433250163, 40.085342898008626 ], [ -74.988639875628735, 40.084853729615944 ], [ -74.989506009686295, 40.084414112376791 ], [ -74.990280521170476, 40.084020988727417 ], [ -74.991681691904148, 40.083281211461106 ], [ -74.993324319827707, 40.082337780744894 ], [ -74.994381180931825, 40.081719084977308 ], [ -74.99507807154356, 40.081336992244303 ], [ -74.995815792464512, 40.080920246818295 ], [ -74.996662378072585, 40.080456526730501 ], [ -74.997283711899399, 40.080116181909979 ], [ -74.997955095325352, 40.079419644092951 ], [ -74.998547229779462, 40.078805310477968 ], [ -74.999038962250566, 40.078243611205579 ], [ -74.999560622108731, 40.077647712810624 ], [ -75.000027405059541, 40.077114488982467 ], [ -75.000525876892198, 40.076545059604328 ], [ -75.001051686800608, 40.075944387402465 ], [ -75.00153039658241, 40.075231795514313 ], [ -75.002135495226852, 40.074571590874243 ], [ -75.00224904150835, 40.074022063002786 ], [ -75.002250389681919, 40.074015536418898 ], [ -75.002348648674868, 40.073539988546401 ], [ -75.002587669022816, 40.072965582877224 ], [ -75.002918159371603, 40.072171341407298 ], [ -75.00367566807715, 40.071448950877006 ], [ -75.004342011565498, 40.071031420812979 ], [ -75.004967052433798, 40.070639762725555 ], [ -75.005655729718384, 40.070208219488826 ], [ -75.006167737494664, 40.069887375506759 ], [ -75.006628084244227, 40.06959890087947 ], [ -75.007193093074591, 40.06922593025925 ], [ -75.007201034495026, 40.069229983583433 ], [ -75.007231641299498, 40.069246403485138 ], [ -75.008519020316697, 40.069937052679187 ], [ -75.010743572236379, 40.070992971132505 ], [ -75.01125563889822, 40.071242697937066 ], [ -75.013093784547678, 40.072116427696038 ], [ -75.013102705479241, 40.072120667919336 ], [ -75.014087379709338, 40.072644485529452 ], [ -75.017193842756527, 40.074296923546669 ], [ -75.0217072005495, 40.076964505965812 ], [ -75.023631847972894, 40.078017528493611 ], [ -75.025434190158606, 40.079007656003391 ], [ -75.028975923267367, 40.081004319393344 ], [ -75.027719155298286, 40.082365655770786 ], [ -75.026541733407569, 40.08361442263547 ], [ -75.025260186607568, 40.084822773562763 ], [ -75.024653233315945, 40.085431144403138 ], [ -75.024025440727257, 40.086165989017864 ], [ -75.022712246033308, 40.087501283695715 ], [ -75.022071114705057, 40.088175340362554 ], [ -75.021892263103723, 40.088316205239792 ], [ -75.021119447786873, 40.089132239522698 ], [ -75.017682822265456, 40.092756946142785 ], [ -75.015597892109454, 40.094871924086988 ], [ -75.014204247341056, 40.096241495174212 ], [ -75.012741134526166, 40.09741418787786 ], [ -75.012241403429613, 40.097754525463316 ], [ -75.009835757094777, 40.09944053089324 ], [ -75.008721665867299, 40.100311522390726 ], [ -75.007856936435275, 40.100878814870129 ], [ -75.005218086515242, 40.102609892374055 ], [ -75.003408654664625, 40.103838742593908 ], [ -75.002616031607005, 40.104400414704841 ], [ -75.001814954352767, 40.104952976174829 ], [ -75.00179545577744, 40.104932501108422 ], [ -75.001546218251434, 40.104731974862005 ], [ -75.001326839092201, 40.104567128494658 ], [ -75.000900098149188, 40.104213777048194 ], [ -75.000443019900814, 40.103835299377302 ], [ -75.000130450810488, 40.103576476526996 ], [ -74.999751118554357, 40.103262367326131 ], [ -74.999355841955591, 40.10294619244798 ], [ -74.998775614983757, 40.102482071980624 ], [ -74.998503734951413, 40.102084850038104 ], [ -74.998168737782436, 40.101595404075468 ], [ -74.997801791528588, 40.101270470154127 ], [ -74.997363129969045, 40.100882025780066 ], [ -74.996781972268565, 40.100367387514375 ], [ -74.996319264633158, 40.099957634954919 ], [ -74.995860250338126, 40.099551146019266 ], [ -74.995428052086439, 40.099168397286668 ], [ -74.994639972891846, 40.098524200146095 ], [ -74.994112317731492, 40.09808758221557 ], [ -74.993534783098895, 40.097609681909027 ], [ -74.992862854750399, 40.097053659491529 ], [ -74.992309815921587, 40.096596007611396 ], [ -74.991804860413552, 40.096178139685577 ], [ -74.991299999741571, 40.095760341043885 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "MODENA", "LISTNAME": "Modena", "MAPNAME": "Modena", "Shape_Leng": 20886.706275100001, "Shape_Area": 23628846.599399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.971527739570263, 40.087244496371341 ], [ -74.97189137409525, 40.086781377867851 ], [ -74.972289074773755, 40.08625086792722 ], [ -74.972584684498059, 40.085856533749279 ], [ -74.973040848964942, 40.085248014828224 ], [ -74.973642440849304, 40.084445478484611 ], [ -74.974160372008001, 40.083829310711835 ], [ -74.97453799180812, 40.083380058221692 ], [ -74.974937447176458, 40.082904820571713 ], [ -74.975591960450814, 40.082126119103556 ], [ -74.976142391228464, 40.081409460167158 ], [ -74.977132112840209, 40.080444385423313 ], [ -74.97758679872949, 40.079819596964448 ], [ -74.977907963340144, 40.078990120038036 ], [ -74.97816738390955, 40.078320095692753 ], [ -74.978502703798398, 40.077454019479894 ], [ -74.978751971831045, 40.07681018742732 ], [ -74.979285159159758, 40.075763446113285 ], [ -74.979579959110396, 40.075059003351917 ], [ -74.979771861872422, 40.074618309992623 ], [ -74.980189155911702, 40.073626399076026 ], [ -74.980543347295011, 40.07290983363459 ], [ -74.980852602947849, 40.072284163613524 ], [ -74.981100581843407, 40.071889351305082 ], [ -74.981793879706586, 40.072400274841648 ], [ -74.982184028847215, 40.072699952381342 ], [ -74.982725004114897, 40.07311547506368 ], [ -74.983473196127179, 40.07359357822429 ], [ -74.984025923737207, 40.073946770319701 ], [ -74.984635008655815, 40.074335966323268 ], [ -74.985015544852729, 40.074565837310558 ], [ -74.985983568425993, 40.074983256124277 ], [ -74.986773504478307, 40.075238731349081 ], [ -74.987652483721334, 40.075827412696221 ], [ -74.988322610406129, 40.076505659307898 ], [ -74.988855647705222, 40.07702295496555 ], [ -74.989225000614752, 40.077276190153597 ], [ -74.989938085934838, 40.077908162579078 ], [ -74.990620727127379, 40.078475147072936 ], [ -74.991208601180389, 40.078963408785832 ], [ -74.99174295976961, 40.079449192601523 ], [ -74.99271327872286, 40.080284543014471 ], [ -74.993480152123013, 40.080944726796879 ], [ -74.994381180931825, 40.081719084977308 ], [ -74.993324319827707, 40.082337780744894 ], [ -74.991681691904148, 40.083281211461106 ], [ -74.990280521170476, 40.084020988727417 ], [ -74.989506009686295, 40.084414112376791 ], [ -74.988639875628735, 40.084853729615944 ], [ -74.98804433250163, 40.085342898008626 ], [ -74.987477443939937, 40.085808520783026 ], [ -74.986722577278073, 40.086428528240951 ], [ -74.986364754169372, 40.086997454761189 ], [ -74.985954384326902, 40.087649915025935 ], [ -74.985544006543165, 40.088302374693235 ], [ -74.984866933266019, 40.089378823226689 ], [ -74.984156527669427, 40.089987044561632 ], [ -74.983868479825702, 40.090334948240226 ], [ -74.983716746428556, 40.090516417956444 ], [ -74.983617977368667, 40.090633526755376 ], [ -74.983237151716125, 40.091085064093718 ], [ -74.983077453928004, 40.091268278622962 ], [ -74.982476697728018, 40.091814995417941 ], [ -74.981884513554448, 40.092151473454287 ], [ -74.981568919756242, 40.092424462379633 ], [ -74.981168265838477, 40.092758668204453 ], [ -74.980926068633508, 40.09296069472294 ], [ -74.98070600636872, 40.093144255940878 ], [ -74.980393924187098, 40.093404572743168 ], [ -74.979961453407483, 40.093765303126034 ], [ -74.979919210421414, 40.093797012802163 ], [ -74.97839702023812, 40.092528861437941 ], [ -74.973892821936047, 40.088953942187949 ], [ -74.971527739570263, 40.087244496371341 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "MORRELL_PARK", "LISTNAME": "Morrell Park", "MAPNAME": "Morrell Park", "Shape_Leng": 22335.065896200002, "Shape_Area": 25924042.0297 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.981100581843407, 40.071889351305082 ], [ -74.981281672371935, 40.071003075856872 ], [ -74.981403380384563, 40.070214936556241 ], [ -74.981518041938642, 40.069472417850271 ], [ -74.981605197289028, 40.068865241741861 ], [ -74.981664906724632, 40.068449260615168 ], [ -74.981801509736826, 40.067497574708135 ], [ -74.982109277417536, 40.066347158148311 ], [ -74.982289433516257, 40.0654831243573 ], [ -74.982364450015979, 40.064594312331394 ], [ -74.982361553755325, 40.064586455541296 ], [ -74.983237223624116, 40.064318665014866 ], [ -74.984171663580398, 40.06392648017362 ], [ -74.984973664032992, 40.06353110183661 ], [ -74.985608505619751, 40.063319749150253 ], [ -74.987094208130983, 40.062422441015698 ], [ -74.987940307026165, 40.061914831046188 ], [ -74.988340321314624, 40.061614834767603 ], [ -74.98851138123824, 40.061559551580011 ], [ -74.990423229747847, 40.060409541627564 ], [ -74.991440425484527, 40.061114834913688 ], [ -74.994507037455705, 40.061940605859512 ], [ -74.995346116816322, 40.062424664657549 ], [ -74.998402591721884, 40.064147459084396 ], [ -74.998515145721669, 40.064209088434282 ], [ -74.998210947965148, 40.064604365092606 ], [ -74.998480603962861, 40.064847050808346 ], [ -74.998902139003903, 40.065479926424317 ], [ -74.998307119208945, 40.066367639592741 ], [ -74.997075866075193, 40.06640257340689 ], [ -74.996310604236982, 40.06666341471179 ], [ -74.995977767994191, 40.067201579590481 ], [ -74.995732233036563, 40.06759858064445 ], [ -74.995490531192715, 40.067989377386702 ], [ -74.995252663730454, 40.068373970770281 ], [ -74.995024384876317, 40.068743055629461 ], [ -74.994635321417221, 40.069372091026935 ], [ -74.995892860141396, 40.070067971621441 ], [ -74.996735915880478, 40.070554847513691 ], [ -74.997446542978182, 40.070965233505007 ], [ -74.998085340490675, 40.071334129961443 ], [ -74.999306946712949, 40.072039569584831 ], [ -74.999132428842799, 40.07220719394526 ], [ -74.999787540326935, 40.072598566800231 ], [ -75.000742677304046, 40.073169166728107 ], [ -75.001406031003867, 40.073542175319595 ], [ -75.002218555197487, 40.073999054322655 ], [ -75.002250389681919, 40.074015536418898 ], [ -75.00224904150835, 40.074022063002786 ], [ -75.002135495226852, 40.074571590874243 ], [ -75.00153039658241, 40.075231795514313 ], [ -75.001051686800608, 40.075944387402465 ], [ -75.000525876892198, 40.076545059604328 ], [ -75.000027405059541, 40.077114488982467 ], [ -74.999560622108731, 40.077647712810624 ], [ -74.999038962250566, 40.078243611205579 ], [ -74.998547229779462, 40.078805310477968 ], [ -74.997955095325352, 40.079419644092951 ], [ -74.997283711899399, 40.080116181909979 ], [ -74.996662378072585, 40.080456526730501 ], [ -74.995815792464512, 40.080920246818295 ], [ -74.99507807154356, 40.081336992244303 ], [ -74.994381180931825, 40.081719084977308 ], [ -74.993480152123013, 40.080944726796879 ], [ -74.99271327872286, 40.080284543014471 ], [ -74.99174295976961, 40.079449192601523 ], [ -74.991208601180389, 40.078963408785832 ], [ -74.990620727127379, 40.078475147072936 ], [ -74.989938085934838, 40.077908162579078 ], [ -74.989225000614752, 40.077276190153597 ], [ -74.988855647705222, 40.07702295496555 ], [ -74.988322610406129, 40.076505659307898 ], [ -74.987652483721334, 40.075827412696221 ], [ -74.986773504478307, 40.075238731349081 ], [ -74.985983568425993, 40.074983256124277 ], [ -74.985015544852729, 40.074565837310558 ], [ -74.984635008655815, 40.074335966323268 ], [ -74.984025923737207, 40.073946770319701 ], [ -74.983473196127179, 40.07359357822429 ], [ -74.982725004114897, 40.07311547506368 ], [ -74.982184028847215, 40.072699952381342 ], [ -74.981793879706586, 40.072400274841648 ], [ -74.981100581843407, 40.071889351305082 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "MILLBROOK", "LISTNAME": "Millbrook", "MAPNAME": "Millbrook", "Shape_Leng": 15957.819940199999, "Shape_Area": 12626016.965299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.96575814796347, 40.080070451753748 ], [ -74.964829217948491, 40.077266417412844 ], [ -74.964881840331557, 40.077273797490591 ], [ -74.96493584015542, 40.077280797333223 ], [ -74.964973840704488, 40.077286797594873 ], [ -74.965005840390745, 40.077291797302237 ], [ -74.965080839839857, 40.077301797440917 ], [ -74.965344838476909, 40.077312797340312 ], [ -74.965855088758289, 40.077255913515877 ], [ -74.965945835401214, 40.077245796995243 ], [ -74.966245834982431, 40.077146797253441 ], [ -74.966583007745299, 40.076983451372428 ], [ -74.966631833015057, 40.076959797672522 ], [ -74.967303829142807, 40.076679797098912 ], [ -74.967560827661543, 40.076602797698349 ], [ -74.967782827453576, 40.07658079794647 ], [ -74.968125824941197, 40.076575797046928 ], [ -74.969312819939518, 40.076728797428267 ], [ -74.969383820178493, 40.076750796675036 ], [ -74.969555818419664, 40.076761797328118 ], [ -74.969762817528974, 40.07672879728284 ], [ -74.969877816899199, 40.076657796962635 ], [ -74.970141815446866, 40.076409797373834 ], [ -74.970463412136809, 40.0763053189524 ], [ -74.970535814566745, 40.076281796867647 ], [ -74.970575362425961, 40.076269013838896 ], [ -74.970733812851861, 40.076217797747631 ], [ -74.970891812257378, 40.076123797610343 ], [ -74.971026811965444, 40.075981797017967 ], [ -74.971040615603727, 40.075954276917813 ], [ -74.971183811161836, 40.075668797728454 ], [ -74.971255810469103, 40.07536079836278 ], [ -74.971237066774705, 40.075147128390881 ], [ -74.971212526382459, 40.074867363472819 ], [ -74.971190810783682, 40.074619799027801 ], [ -74.971133810402421, 40.074470799175955 ], [ -74.971153573229898, 40.074020950745918 ], [ -74.971154809964901, 40.073992798763079 ], [ -74.971266809632198, 40.073744799410036 ], [ -74.971291809221285, 40.073690799025059 ], [ -74.971541808425812, 40.073438799711425 ], [ -74.971745165119302, 40.073311622995945 ], [ -74.971864806477299, 40.073236799912145 ], [ -74.971963806032306, 40.073174800030579 ], [ -74.972031805591882, 40.073109799800577 ], [ -74.972084806195895, 40.073058800018359 ], [ -74.972243648844795, 40.072826367325646 ], [ -74.972261804771506, 40.072799800212714 ], [ -74.972291804271777, 40.072756800017657 ], [ -74.972435803510024, 40.072498799945485 ], [ -74.972544803274715, 40.072302800742911 ], [ -74.972606803349592, 40.072191800624203 ], [ -74.972817073752765, 40.071924623240776 ], [ -74.972909801265075, 40.0718068001962 ], [ -74.972949801468417, 40.071757800719688 ], [ -74.97306880094024, 40.071650800859651 ], [ -74.973170799814199, 40.071558801075533 ], [ -74.973249799712775, 40.071487800862464 ], [ -74.973292799275853, 40.071466800622012 ], [ -74.973421798835204, 40.071402800541961 ], [ -74.973567465509674, 40.071331555641464 ], [ -74.973742797466429, 40.071245800993324 ], [ -74.973864797032149, 40.071185800567093 ], [ -74.973886796286422, 40.071175801235135 ], [ -74.973899796838509, 40.07117080079869 ], [ -74.973987796456825, 40.071132801155727 ], [ -74.974136795397456, 40.071068801368746 ], [ -74.974195795191235, 40.071043800902345 ], [ -74.974323794913417, 40.070988800811584 ], [ -74.974382794531778, 40.070963801149212 ], [ -74.974414794083245, 40.070949801033002 ], [ -74.974435800672921, 40.070936684249688 ], [ -74.974635792181104, 40.070811801147414 ], [ -74.974744791883225, 40.070648800831144 ], [ -74.974871792018263, 40.07046080154354 ], [ -74.974907790735159, 40.070229801334513 ], [ -74.975003361573371, 40.070097546281801 ], [ -74.975026856479474, 40.070421006601585 ], [ -74.975098147986444, 40.070478366546737 ], [ -74.975317269628022, 40.070859212767431 ], [ -74.97573428295955, 40.071292335254036 ], [ -74.976495108045683, 40.071822819134958 ], [ -74.977480302412133, 40.072536839945421 ], [ -74.97820765510096, 40.073177833953906 ], [ -74.978464474728085, 40.073985604357361 ], [ -74.978732208654918, 40.074526445206963 ], [ -74.979579959110396, 40.075059003351917 ], [ -74.979285159159758, 40.075763446113285 ], [ -74.978751971831045, 40.07681018742732 ], [ -74.978502703798398, 40.077454019479894 ], [ -74.97816738390955, 40.078320095692753 ], [ -74.977907963340144, 40.078990120038036 ], [ -74.97758679872949, 40.079819596964448 ], [ -74.977132112840209, 40.080444385423313 ], [ -74.976142391228464, 40.081409460167158 ], [ -74.975591960450814, 40.082126119103556 ], [ -74.974937447176458, 40.082904820571713 ], [ -74.97453799180812, 40.083380058221692 ], [ -74.974160372008001, 40.083829310711835 ], [ -74.973642440849304, 40.084445478484611 ], [ -74.973040848964942, 40.085248014828224 ], [ -74.972584684498059, 40.085856533749279 ], [ -74.972289074773755, 40.08625086792722 ], [ -74.97189137409525, 40.086781377867851 ], [ -74.971527739570263, 40.087244496371341 ], [ -74.971519414067274, 40.08723847780643 ], [ -74.971443019054121, 40.087183258859064 ], [ -74.970746288620816, 40.086613327857251 ], [ -74.969930118214705, 40.085844472810351 ], [ -74.969139634632327, 40.085014488924777 ], [ -74.966801930287559, 40.082225714374076 ], [ -74.966290740837835, 40.081450091033517 ], [ -74.966077368720221, 40.081018926528095 ], [ -74.96575814796347, 40.080070451753748 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "CRESTMONT_FARMS", "LISTNAME": "Crestmont Farms", "MAPNAME": "Crestmont Farms", "Shape_Leng": 9263.538528, "Shape_Area": 3624101.5569199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.982355111240878, 40.064588425978449 ], [ -74.982361553755325, 40.064586455541296 ], [ -74.982364450015979, 40.064594312331394 ], [ -74.982289433516257, 40.0654831243573 ], [ -74.982109277417536, 40.066347158148311 ], [ -74.981801509736826, 40.067497574708135 ], [ -74.981664906724632, 40.068449260615168 ], [ -74.981605197289028, 40.068865241741861 ], [ -74.981518041938642, 40.069472417850271 ], [ -74.981403380384563, 40.070214936556241 ], [ -74.981281672371935, 40.071003075856872 ], [ -74.981100581843407, 40.071889351305082 ], [ -74.980852602947849, 40.072284163613524 ], [ -74.980543347295011, 40.07290983363459 ], [ -74.980189155911702, 40.073626399076026 ], [ -74.979771861872422, 40.074618309992623 ], [ -74.979579959110396, 40.075059003351917 ], [ -74.978732208654918, 40.074526445206963 ], [ -74.978464474728085, 40.073985604357361 ], [ -74.97820765510096, 40.073177833953906 ], [ -74.977480302412133, 40.072536839945421 ], [ -74.976495108045683, 40.071822819134958 ], [ -74.97573428295955, 40.071292335254036 ], [ -74.975317269628022, 40.070859212767431 ], [ -74.975098147986444, 40.070478366546737 ], [ -74.975026856479474, 40.070421006601585 ], [ -74.975003361573371, 40.070097546281801 ], [ -74.975006790402205, 40.070092801153692 ], [ -74.975096790748907, 40.070034802023208 ], [ -74.975171789301399, 40.069985801778806 ], [ -74.975235789874105, 40.069943801241791 ], [ -74.975264789934641, 40.069930801647864 ], [ -74.975481788256019, 40.069833801448439 ], [ -74.975993786015465, 40.069603801938257 ], [ -74.976140785287569, 40.069482802006455 ], [ -74.976200784171112, 40.069432801977953 ], [ -74.976251570460676, 40.069371386456631 ], [ -74.976286784350052, 40.06932880221882 ], [ -74.976393783296672, 40.069199801788038 ], [ -74.976479783183777, 40.069097802263869 ], [ -74.976643782602167, 40.068938802177598 ], [ -74.976683781891239, 40.068867801867249 ], [ -74.976864781186165, 40.068542802309629 ], [ -74.976877781375251, 40.068525802004466 ], [ -74.977007779913009, 40.068359802249105 ], [ -74.977127263221078, 40.06824616835091 ], [ -74.977150779858064, 40.068223802726394 ], [ -74.977386778398412, 40.068097802560935 ], [ -74.977750776632519, 40.067904802281909 ], [ -74.978622771865048, 40.067439803033267 ], [ -74.978652525793407, 40.067421484676011 ], [ -74.979158769786494, 40.067109802449814 ], [ -74.979323768250495, 40.066988802912789 ], [ -74.979723766064453, 40.06652180275897 ], [ -74.979915765379246, 40.066356802753639 ], [ -74.980294762937348, 40.066147802897248 ], [ -74.980380763112876, 40.06605480324454 ], [ -74.980523761732357, 40.065702803771501 ], [ -74.98055176222671, 40.065399803329996 ], [ -74.980586761021328, 40.065309803886024 ], [ -74.980680760855563, 40.065064803717469 ], [ -74.980684760739877, 40.065025803670267 ], [ -74.980686760980078, 40.065007804383015 ], [ -74.980696036541701, 40.064922339049808 ], [ -74.981008891449903, 40.06486154909247 ], [ -74.982117146624077, 40.064619069948428 ], [ -74.982355111240878, 40.064588425978449 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "ACADEMY_GARDENS", "LISTNAME": "Academy Gardens", "MAPNAME": "Academy Gardens", "Shape_Leng": 18120.039806299999, "Shape_Area": 15080135.979900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.007193093074591, 40.06922593025925 ], [ -75.00290256947541, 40.066677924382759 ], [ -74.999032672178217, 40.064492457706315 ], [ -74.998515145721669, 40.064209088434282 ], [ -74.998402591721884, 40.064147459084396 ], [ -74.995346116816322, 40.062424664657549 ], [ -74.994507037455705, 40.061940605859512 ], [ -74.991440425484527, 40.061114834913688 ], [ -74.990423229747847, 40.060409541627564 ], [ -74.990920451704255, 40.060060637867387 ], [ -74.992076988705577, 40.059665699457128 ], [ -74.993026799937141, 40.059404972258974 ], [ -74.994069802812348, 40.059161937772657 ], [ -74.995643088536497, 40.058746029267645 ], [ -74.997025772069492, 40.058397702481273 ], [ -74.998273567090095, 40.058066748706842 ], [ -74.99942543471829, 40.057785034020931 ], [ -74.999860625480892, 40.057640804437881 ], [ -75.001124939411284, 40.057232892983627 ], [ -75.002986190949088, 40.055998999332409 ], [ -75.004793344993928, 40.054774093313398 ], [ -75.005656483748751, 40.054115827759297 ], [ -75.006150001643576, 40.053739443104277 ], [ -75.007963359870658, 40.052396543377576 ], [ -75.008284587134867, 40.05219499849391 ], [ -75.008289608555941, 40.052201190594829 ], [ -75.008317399170593, 40.052667910199126 ], [ -75.008584160070612, 40.053570538122116 ], [ -75.008583226839988, 40.053585798729657 ], [ -75.008538668207052, 40.055032628868084 ], [ -75.00851558706303, 40.055782034767802 ], [ -75.008476300126731, 40.05705760268426 ], [ -75.008712970803103, 40.057806840440151 ], [ -75.008962175926328, 40.058658939754572 ], [ -75.0091747391822, 40.05979862483116 ], [ -75.009467754079239, 40.060805614738712 ], [ -75.009469215789238, 40.061729394994458 ], [ -75.00947058225519, 40.062594140927899 ], [ -75.009517192003727, 40.063505507407228 ], [ -75.009411814025469, 40.064874787035542 ], [ -75.009447242330069, 40.065856399068942 ], [ -75.008869390824572, 40.067355431846323 ], [ -75.00817606097408, 40.068614527833525 ], [ -75.007231641299498, 40.069246403485138 ], [ -75.007201034495026, 40.069229983583433 ], [ -75.007193093074591, 40.06922593025925 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "PENNYPACK", "LISTNAME": "Pennypack", "MAPNAME": "Pennypack", "Shape_Leng": 24887.2118247, "Shape_Area": 34685420.1413 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.013093784547678, 40.072116427696038 ], [ -75.013098581357298, 40.072111840236538 ], [ -75.013990646167656, 40.071171496080545 ], [ -75.015263533086667, 40.069829664451575 ], [ -75.016108956068095, 40.068908281361651 ], [ -75.01667855449405, 40.068360938243984 ], [ -75.017520231058981, 40.067521859896594 ], [ -75.018045966352801, 40.066997734552977 ], [ -75.01872940609509, 40.066316370781863 ], [ -75.019465716815745, 40.065512562872648 ], [ -75.020550283029507, 40.064476642155881 ], [ -75.022081478153282, 40.06326732963619 ], [ -75.022135638940071, 40.063190590585499 ], [ -75.022786619796918, 40.062268210655333 ], [ -75.023744584089613, 40.061401319291761 ], [ -75.024798383840292, 40.060290242028586 ], [ -75.026270623236812, 40.058850758060196 ], [ -75.02689913254801, 40.058236208089752 ], [ -75.02755939435913, 40.05757261431507 ], [ -75.028384535957741, 40.056606808595753 ], [ -75.028396045964769, 40.056606636173306 ], [ -75.02897291114536, 40.056656367492025 ], [ -75.030222381406546, 40.056749267774762 ], [ -75.031226875435721, 40.056823944685114 ], [ -75.03275429272874, 40.056968282058392 ], [ -75.033670698299645, 40.057134218966489 ], [ -75.034184546696835, 40.057315220890104 ], [ -75.033833075957659, 40.057901440314311 ], [ -75.034312240561675, 40.058247905993134 ], [ -75.034453438565009, 40.058782210072152 ], [ -75.03391027501624, 40.06014486140316 ], [ -75.033598081726538, 40.060817005251984 ], [ -75.033401111258229, 40.061244221733261 ], [ -75.033424369794432, 40.061407744046022 ], [ -75.033547409627246, 40.062261458865621 ], [ -75.033670858311424, 40.063288752662501 ], [ -75.033764575858939, 40.064010331932657 ], [ -75.034040426232664, 40.064620184854377 ], [ -75.034491846215261, 40.065147621089203 ], [ -75.034997421133639, 40.065548857149274 ], [ -75.035200068853896, 40.065743236869622 ], [ -75.035673087422822, 40.06599535324689 ], [ -75.036367485267633, 40.066466597016067 ], [ -75.037064301397734, 40.066877613185774 ], [ -75.037775376955693, 40.06728896063629 ], [ -75.038528780037126, 40.067712262777249 ], [ -75.040332610169742, 40.068755446675468 ], [ -75.039584479583553, 40.069852456979191 ], [ -75.03832634006308, 40.071271805256011 ], [ -75.036614578159146, 40.07309018839954 ], [ -75.036308199877325, 40.073334789258986 ], [ -75.03508602590837, 40.07461906784846 ], [ -75.033095041768576, 40.076778579014537 ], [ -75.032984908702474, 40.07679996004422 ], [ -75.031433393281574, 40.078508134825434 ], [ -75.030833262214756, 40.079069563216379 ], [ -75.028975923267367, 40.081004319393344 ], [ -75.025434190158606, 40.079007656003391 ], [ -75.023631847972894, 40.078017528493611 ], [ -75.0217072005495, 40.076964505965812 ], [ -75.017193842756527, 40.074296923546669 ], [ -75.014087379709338, 40.072644485529452 ], [ -75.013102705479241, 40.072120667919336 ], [ -75.013093784547678, 40.072116427696038 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "ASTON_WOODBRIDGE", "LISTNAME": "Aston-Woodbridge", "MAPNAME": "Aston-Woodbridge", "Shape_Leng": 17216.867193599999, "Shape_Area": 14147909.4454 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.022135638940071, 40.063190590585499 ], [ -75.022081478153282, 40.06326732963619 ], [ -75.020550283029507, 40.064476642155881 ], [ -75.019465716815745, 40.065512562872648 ], [ -75.01872940609509, 40.066316370781863 ], [ -75.018045966352801, 40.066997734552977 ], [ -75.017520231058981, 40.067521859896594 ], [ -75.01667855449405, 40.068360938243984 ], [ -75.016108956068095, 40.068908281361651 ], [ -75.015263533086667, 40.069829664451575 ], [ -75.013990646167656, 40.071171496080545 ], [ -75.013098581357298, 40.072111840236538 ], [ -75.013093784547678, 40.072116427696038 ], [ -75.01125563889822, 40.071242697937066 ], [ -75.010743572236379, 40.070992971132505 ], [ -75.008519020316697, 40.069937052679187 ], [ -75.007231641299498, 40.069246403485138 ], [ -75.00817606097408, 40.068614527833525 ], [ -75.008869390824572, 40.067355431846323 ], [ -75.009447242330069, 40.065856399068942 ], [ -75.009411814025469, 40.064874787035542 ], [ -75.009517192003727, 40.063505507407228 ], [ -75.00947058225519, 40.062594140927899 ], [ -75.009469215789238, 40.061729394994458 ], [ -75.009467754079239, 40.060805614738712 ], [ -75.0091747391822, 40.05979862483116 ], [ -75.008962175926328, 40.058658939754572 ], [ -75.008712970803103, 40.057806840440151 ], [ -75.008476300126731, 40.05705760268426 ], [ -75.00851558706303, 40.055782034767802 ], [ -75.008538668207052, 40.055032628868084 ], [ -75.008583226839988, 40.053585798729657 ], [ -75.008584160070612, 40.053570538122116 ], [ -75.008604571098303, 40.053585700812206 ], [ -75.01006750856871, 40.054672479881091 ], [ -75.011116353341706, 40.055271098866235 ], [ -75.012062324198226, 40.055882509908862 ], [ -75.012844116760519, 40.056387792883193 ], [ -75.013252762182688, 40.056666406887409 ], [ -75.014410968373809, 40.057446852543826 ], [ -75.015787353519784, 40.058313140797708 ], [ -75.017653661396338, 40.059468906341152 ], [ -75.018428026046251, 40.059935450578195 ], [ -75.019841993239069, 40.060739844357762 ], [ -75.021115436566745, 40.061558806697221 ], [ -75.022037413076802, 40.062996788491674 ], [ -75.022135638940071, 40.063190590585499 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "PENNYPACK_WOODS", "LISTNAME": "Pennypack Woods", "MAPNAME": "Pennypack Woods", "Shape_Leng": 19811.033217600001, "Shape_Area": 13509409.218800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.012844116760519, 40.056387792883193 ], [ -75.012062324198169, 40.055882509908905 ], [ -75.011116353341635, 40.055271098866278 ], [ -75.010067508568653, 40.054672479881141 ], [ -75.00860457109826, 40.05358570081227 ], [ -75.008584160070569, 40.053570538122152 ], [ -75.008317399170579, 40.052667910199162 ], [ -75.008289608555827, 40.052201190594829 ], [ -75.008284587134753, 40.052194998493938 ], [ -75.008295103934714, 40.052188400559686 ], [ -75.009108620088085, 40.051538022357263 ], [ -75.01019876458227, 40.050651167573399 ], [ -75.011578687192767, 40.049549748851291 ], [ -75.012364052698018, 40.048898678792611 ], [ -75.013292452161494, 40.048186192367424 ], [ -75.014106982451835, 40.047472338176192 ], [ -75.014905234140613, 40.046885025749106 ], [ -75.015778146316606, 40.04622207016417 ], [ -75.016456565542683, 40.045712012395917 ], [ -75.017381189516883, 40.044940175840964 ], [ -75.017527042756768, 40.044836950804985 ], [ -75.018299906220122, 40.044269258924302 ], [ -75.019352173899648, 40.045070306365467 ], [ -75.017937311743154, 40.046394185946404 ], [ -75.018722235417471, 40.047006768892771 ], [ -75.017926286581016, 40.047581756986496 ], [ -75.017386543809948, 40.048191117084428 ], [ -75.016994989430941, 40.048775718602919 ], [ -75.016863064378285, 40.049309932379906 ], [ -75.016834606181547, 40.050016298884039 ], [ -75.016987705669663, 40.050783548421705 ], [ -75.017186679430964, 40.051325635363121 ], [ -75.017530448362109, 40.051927728492466 ], [ -75.018062612665105, 40.05242117449982 ], [ -75.019031448250743, 40.053038126442488 ], [ -75.020801241721614, 40.053872072088211 ], [ -75.022495268639474, 40.054760753251337 ], [ -75.023181067785842, 40.055242373291456 ], [ -75.023396499342425, 40.055393664315076 ], [ -75.023416799329539, 40.055407919687362 ], [ -75.023463357487358, 40.055459442424628 ], [ -75.023519439110231, 40.055521503758122 ], [ -75.02352833377563, 40.055508006219881 ], [ -75.023793380690961, 40.055706106197022 ], [ -75.02429165601302, 40.056342569678264 ], [ -75.024399208682553, 40.056588037017377 ], [ -75.025680525179183, 40.056618431685536 ], [ -75.027143421733641, 40.056625353820358 ], [ -75.028384535957684, 40.056606808595788 ], [ -75.027559394359031, 40.05757261431507 ], [ -75.02689913254801, 40.058236208089752 ], [ -75.026270623236712, 40.058850758060196 ], [ -75.024798383840334, 40.060290242028643 ], [ -75.02374458408957, 40.061401319291797 ], [ -75.022786619796818, 40.062268210655361 ], [ -75.022135638940071, 40.063190590585556 ], [ -75.02203741307676, 40.062996788491674 ], [ -75.021115436566603, 40.061558806697221 ], [ -75.01984199323897, 40.060739844357812 ], [ -75.018428026046209, 40.059935450578195 ], [ -75.017653661396224, 40.059468906341188 ], [ -75.015787353519727, 40.058313140797708 ], [ -75.01441096837371, 40.057446852543862 ], [ -75.013252762182688, 40.056666406887409 ], [ -75.012844116760519, 40.056387792883193 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WINCHESTER_PARK", "LISTNAME": "Winchester Park", "MAPNAME": "Winchester Park", "Shape_Leng": 11984.696725, "Shape_Area": 6558582.9602899989 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.034576714379284, 40.057449881996938 ], [ -75.034190285109602, 40.057305649525325 ], [ -75.034184546696835, 40.057315220890104 ], [ -75.033670698299645, 40.057134218966489 ], [ -75.03275429272874, 40.056968282058392 ], [ -75.031226875435721, 40.056823944685114 ], [ -75.030222381406546, 40.056749267774762 ], [ -75.02897291114536, 40.056656367492025 ], [ -75.028396045964769, 40.056606636173306 ], [ -75.028384535957741, 40.056606808595753 ], [ -75.027143421733697, 40.056625353820309 ], [ -75.025680525179354, 40.0566184316855 ], [ -75.024399208682553, 40.05658803701732 ], [ -75.024291656013119, 40.056342569678264 ], [ -75.02379338069106, 40.055706106197022 ], [ -75.023528333775744, 40.055508006219881 ], [ -75.024960843343649, 40.053334049694314 ], [ -75.022920743173486, 40.052421795360154 ], [ -75.022815521134447, 40.052401295906741 ], [ -75.022826919898947, 40.052390339387181 ], [ -75.022835183674644, 40.052382379232483 ], [ -75.022843439501898, 40.05237441258118 ], [ -75.022851686245502, 40.052366438505196 ], [ -75.022859927347255, 40.052358458888385 ], [ -75.022868159365373, 40.052350471846907 ], [ -75.022876384570196, 40.052342479236813 ], [ -75.02288460299809, 40.052334480157839 ], [ -75.022892814648856, 40.052326474610084 ], [ -75.022901018315011, 40.052318463465895 ], [ -75.022909216339343, 40.052310446780858 ], [ -75.022917407550466, 40.052302424527191 ], [ -75.022925591984503, 40.052294395804694 ], [ -75.02293376956915, 40.052286362413753 ], [ -75.022941941511988, 40.052278323482028 ], [ -75.022950107812974, 40.052270279009477 ], [ -75.022958267300766, 40.052262228968303 ], [ -75.022966422245716, 40.052254175214507 ], [ -75.0229745703775, 40.05224611589211 ], [ -75.022982714002623, 40.05223805195692 ], [ -75.022990851949771, 40.052229983381096 ], [ -75.022998985390302, 40.052221910192479 ], [ -75.02300711311662, 40.052213833263423 ], [ -75.023015235164962, 40.052205751693798 ], [ -75.023023353878031, 40.05219766553919 ], [ -75.023031466876986, 40.052189575644142 ], [ -75.023039576504473, 40.052181482064306 ], [ -75.02304768158919, 40.052173384771883 ], [ -75.023055782131109, 40.052165283766882 ], [ -75.023063878094092, 40.052157179949404 ], [ -75.02307197072183, 40.052149071547042 ], [ -75.023080059905823, 40.052140961260214 ], [ -75.023088144583141, 40.052132846360657 ], [ -75.023096226988187, 40.052124729604451 ], [ -75.02310430481424, 40.052116610035917 ], [ -75.023112380440253, 40.05210848681034 ], [ -75.023120452622493, 40.052100361700418 ], [ -75.023128522568584, 40.052092233833719 ], [ -75.023136589107111, 40.05208410318243 ], [ -75.023144653373294, 40.052075970674558 ], [ -75.023152714195646, 40.052067836282276 ], [ -75.023160773953251, 40.052059699161049 ], [ -75.023168830267082, 40.052051560155455 ], [ -75.023176885443775, 40.052043420221281 ], [ -75.023184938348166, 40.052035278430488 ], [ -75.023192990151529, 40.052027134810984 ], [ -75.023201039682505, 40.052018989334904 ], [ -75.023209088040176, 40.052010843830416 ], [ -75.023217134125517, 40.052002696469337 ], [ -75.023225180281287, 40.051994547307359 ], [ -75.023233225263695, 40.051986398116981 ], [ -75.023241269108965, 40.051978247997994 ], [ -75.023249311780859, 40.051970097850671 ], [ -75.023257354487058, 40.051961946802599 ], [ -75.023265396056075, 40.051953794825963 ], [ -75.023273437623217, 40.051945642848708 ], [ -75.023281479188356, 40.05193749087092 ], [ -75.023289520787813, 40.051929337992377 ], [ -75.023297561177714, 40.051921185985641 ], [ -75.02330560390844, 40.051913034033966 ], [ -75.023313645429738, 40.051904882954133 ], [ -75.02332168812039, 40.051896731901486 ], [ -75.023329730809195, 40.051888580848328 ], [ -75.023337774595063, 40.051880431622784 ], [ -75.0233458195504, 40.051872282424497 ], [ -75.023353865639024, 40.051864134153618 ], [ -75.023361912860935, 40.051855986810196 ], [ -75.023369962351296, 40.051847841322193 ], [ -75.023378011803587, 40.051839696733836 ], [ -75.023386063524342, 40.05183155400092 ], [ -75.023394117549756, 40.05182341222325 ], [ -75.023402172672277, 40.05181527227321 ], [ -75.023410231234706, 40.051807134206371 ], [ -75.023418290894213, 40.051798997967239 ], [ -75.023426352786075, 40.051790864483699 ], [ -75.023434418153968, 40.051782731983167 ], [ -75.023442484546607, 40.051774603110701 ], [ -75.023450555586678, 40.051766475249089 ], [ -75.023458628822908, 40.051758351043276 ], [ -75.023466704327603, 40.051750228692924 ], [ -75.02347478437126, 40.051742110054015 ], [ -75.023482866683366, 40.051733993270496 ], [ -75.023490953534392, 40.05172588019844 ], [ -75.023499042581562, 40.051717770782219 ], [ -75.023507137411414, 40.051709663304841 ], [ -75.023515234401202, 40.051701560383478 ], [ -75.023523335966061, 40.051693460273341 ], [ -75.023531442033658, 40.051685364774805 ], [ -75.023539552676382, 40.051677272087574 ], [ -75.023547667858026, 40.051669183111692 ], [ -75.023555787542378, 40.051661098747481 ], [ -75.023563911729468, 40.051653018994891 ], [ -75.02357204045552, 40.051644942953708 ], [ -75.023580174855596, 40.051636871551985 ], [ -75.023588314966062, 40.05162880388945 ], [ -75.023596459543086, 40.051620741738738 ], [ -75.023604609794205, 40.051612684227472 ], [ -75.023612765719434, 40.051604631355609 ], [ -75.023620927318845, 40.051596583123185 ], [ -75.023629095727514, 40.051588540458191 ], [ -75.02363726860284, 40.051580503304955 ], [ -75.023645449494992, 40.051572470846779 ], [ -75.02365363598895, 40.051564444828408 ], [ -75.023661828157003, 40.051556423449426 ], [ -75.023670028269606, 40.051548408565878 ], [ -75.023678234020181, 40.051540399221928 ], [ -75.023686447751473, 40.051532395473181 ], [ -75.023694668219761, 40.05152439909228 ], [ -75.023702895533518, 40.051516407378543 ], [ -75.023711129584314, 40.051508423032622 ], [ -75.023719372750975, 40.051500445209925 ], [ -75.023727622690856, 40.051492473854807 ], [ -75.023735880575231, 40.051484508995067 ], [ -75.023744146404184, 40.051476550630746 ], [ -75.023752420105339, 40.051468600562231 ], [ -75.023760701787211, 40.051460656088892 ], [ -75.023768991341271, 40.051452719911318 ], [ -75.02377729118264, 40.051444790284762 ], [ -75.02378559772481, 40.051436868926181 ], [ -75.023793914518137, 40.0514289550188 ], [ -75.023802239219862, 40.051421048507024 ], [ -75.023810573001271, 40.051413149418579 ], [ -75.023818916961531, 40.051405259581735 ], [ -75.023827270037714, 40.051397376268056 ], [ -75.023835632121276, 40.051389502178154 ], [ -75.023844003248399, 40.051381636411833 ], [ -75.023852385761927, 40.051373779024651 ], [ -75.023860777319001, 40.051365929961086 ], [ -75.023869177883483, 40.051358090121248 ], [ -75.023877589834356, 40.051350258660591 ], [ -75.023886011963981, 40.051342436451485 ], [ -75.023894445479954, 40.051334622621511 ], [ -75.023902887967196, 40.051326818915506 ], [ -75.023911341840716, 40.051319023588668 ], [ -75.023919807028292, 40.051311238441365 ], [ -75.023928283566022, 40.051303462573422 ], [ -75.023936770246365, 40.051295696857203 ], [ -75.023945268276876, 40.051287940420316 ], [ -75.023953778792816, 40.051280194190767 ], [ -75.02396230065888, 40.051272457240572 ], [ -75.023970833802835, 40.051264731370104 ], [ -75.023979379432134, 40.051257015706959 ], [ -75.023987936375391, 40.051249310223341 ], [ -75.023996505767897, 40.051241615847232 ], [ -75.024005087645818, 40.051233931678468 ], [ -75.024013681972946, 40.051226258617191 ], [ -75.024022288785403, 40.051218595763252 ], [ -75.024030908047138, 40.051210944016809 ], [ -75.024039540893284, 40.051203304305886 ], [ -75.024048187359966, 40.051195675730213 ], [ -75.024056846275926, 40.051188058262071 ], [ -75.024065517641063, 40.051180451901452 ], [ -75.024074203762012, 40.051172857604094 ], [ -75.024082902295987, 40.051165275314418 ], [ -75.024091615585789, 40.051157705088045 ], [ -75.024100342496183, 40.051150145996949 ], [ -75.024109084126238, 40.051142599869316 ], [ -75.024117839340676, 40.051135065777153 ], [ -75.024126608103387, 40.051127544620655 ], [ -75.024135392793283, 40.051120035555265 ], [ -75.024144191067563, 40.051112538525317 ], [ -75.024153004061532, 40.051105054458795 ], [ -75.024161831738937, 40.051097584255956 ], [ -75.024170675343569, 40.05109012614416 ], [ -75.02417953363161, 40.051082681896013 ], [ -75.024188407810712, 40.051075250639059 ], [ -75.024197296709445, 40.051067832345595 ], [ -75.024206201463031, 40.051060427943561 ], [ -75.024215122107634, 40.051053036532736 ], [ -75.024224058570866, 40.051045659913576 ], [ -75.024233010925144, 40.051038296285583 ], [ -75.024241980269494, 40.051030947477038 ], [ -75.024250967739135, 40.051023614415854 ], [ -75.024260056746911, 40.051016351342703 ], [ -75.024269280394861, 40.051009180668345 ], [ -75.024278635204951, 40.051002101409203 ], [ -75.024288118870629, 40.050995112609421 ], [ -75.024297727950071, 40.050988212385207 ], [ -75.02430746013674, 40.050981399780738 ], [ -75.0243173107812, 40.050974673784566 ], [ -75.024327278748345, 40.050968033468699 ], [ -75.024337359424933, 40.050961476921529 ], [ -75.024347549369196, 40.050955002259215 ], [ -75.024357847373636, 40.050948610354169 ], [ -75.024368250032566, 40.050942298422378 ], [ -75.024378753867992, 40.05093606548018 ], [ -75.024389354194582, 40.050929911416446 ], [ -75.024400051156832, 40.050923832630275 ], [ -75.02441083886184, 40.050917829882891 ], [ -75.024421716210455, 40.050911901346126 ], [ -75.024432679724868, 40.05090604603631 ], [ -75.024443724791766, 40.050900262041914 ], [ -75.024454850239877, 40.050894549335005 ], [ -75.024466052663598, 40.0508889051317 ], [ -75.024477328548784, 40.050883329348544 ], [ -75.024488674453607, 40.050877820101711 ], [ -75.024500088071548, 40.050872376435422 ], [ -75.024511567059903, 40.050866998294097 ], [ -75.024523106877794, 40.050861681965699 ], [ -75.02453470514638, 40.050856428294829 ], [ -75.024546358423805, 40.050851235397694 ], [ -75.024558064439759, 40.050846101418358 ], [ -75.024569819680011, 40.050841026273318 ], [ -75.024581620702889, 40.050836008078896 ], [ -75.024593465237984, 40.050831044978978 ], [ -75.024605348599749, 40.05082613686244 ], [ -75.024617270824379, 40.050821282829105 ], [ -75.024629226163611, 40.050816480039309 ], [ -75.024641212274602, 40.05081172843758 ], [ -75.024653226887025, 40.050807026167782 ], [ -75.024665265315321, 40.050802373118884 ], [ -75.024677326496715, 40.05079776656239 ], [ -75.024689405745661, 40.050793206387183 ], [ -75.024701501963136, 40.050788690765032 ], [ -75.024713609328487, 40.050784218656766 ], [ -75.024725726706521, 40.050779789134445 ], [ -75.024737850619275, 40.050775401214402 ], [ -75.024749978832489, 40.050771052140547 ], [ -75.024762106660759, 40.050766741801716 ], [ -75.024774231797423, 40.050762469242031 ], [ -75.024786351972196, 40.050758232605624 ], [ -75.024798462535642, 40.050754030881052 ], [ -75.024810561181297, 40.050749863112586 ], [ -75.02482264563865, 40.050745727444252 ], [ -75.024834712393741, 40.050741623792646 ], [ -75.024846758040823, 40.050737549373849 ], [ -75.024858779065823, 40.050733504104443 ], [ -75.024870797724859, 40.050729488512523 ], [ -75.024882870171481, 40.05072550573238 ], [ -75.024894998639894, 40.050721558520216 ], [ -75.024907181922686, 40.050717647748428 ], [ -75.024919416397239, 40.050713776034158 ], [ -75.024931703198746, 40.05070994430541 ], [ -75.024944038740813, 40.050706154279226 ], [ -75.024956422951178, 40.050702407755928 ], [ -75.024968853378653, 40.050698707380512 ], [ -75.024981328851794, 40.050695053125239 ], [ -75.02499384929844, 40.050691446790424 ], [ -75.025006409888391, 40.050687891865728 ], [ -75.025019011829229, 40.050684387478704 ], [ -75.025031652633658, 40.050680937174555 ], [ -75.025044331094136, 40.050677541825635 ], [ -75.025057045930822, 40.050674204104844 ], [ -75.025069794801126, 40.050670923956467 ], [ -75.02508257642512, 40.050667704053346 ], [ -75.025095389559212, 40.050664546168093 ], [ -75.025108232995862, 40.050661451173099 ], [ -75.025121104283954, 40.050658421713408 ], [ -75.02513400338735, 40.050655458689107 ], [ -75.025146926719614, 40.050652563817287 ], [ -75.025159875379956, 40.050649738926118 ], [ -75.025172844610537, 40.050646985704809 ], [ -75.02518583664569, 40.050644306909589 ], [ -75.025198846836176, 40.050641701528981 ], [ -75.02521187500129, 40.050639174064067 ], [ -75.02522491879823, 40.050636724459224 ], [ -75.025237978154749, 40.050634354514905 ], [ -75.025251050655982, 40.050632065975798 ], [ -75.025264133850612, 40.050629861487053 ], [ -75.025277228910184, 40.050627741076383 ], [ -75.02529033221208, 40.050625707360979 ], [ -75.025303442512808, 40.050623762113545 ], [ -75.025316557397232, 40.050621907078813 ], [ -75.025329678000716, 40.050620143184844 ], [ -75.025342800700713, 40.05061847304875 ], [ -75.025355924325893, 40.050616896642879 ], [ -75.025369047560432, 40.050615417540193 ], [ -75.025382169196789, 40.050614036613048 ], [ -75.025395286856124, 40.050612754706123 ], [ -75.025408400393871, 40.050611575420191 ], [ -75.025421507503623, 40.050610497799461 ], [ -75.025434605661815, 40.050609526289399 ], [ -75.025447694868603, 40.050608660890013 ], [ -75.025460773880326, 40.050607903373873 ], [ -75.025473839110674, 40.050607255458033 ], [ -75.025486890487414, 40.050606718942902 ], [ -75.025499926803064, 40.050606294700906 ], [ -75.025512969597656, 40.050605942695491 ], [ -75.025526032913035, 40.050605634425999 ], [ -75.025539115541761, 40.050605370764785 ], [ -75.025552217519916, 40.050605150811649 ], [ -75.025565336468631, 40.050604975411225 ], [ -75.02557847355942, 40.050604844591305 ], [ -75.02559162769316, 40.050604756523711 ], [ -75.025604797626215, 40.050604712980999 ], [ -75.025617982259504, 40.050604712135048 ], [ -75.025631181556918, 40.050604754886017 ], [ -75.025644394383335, 40.050604840305908 ], [ -75.025657620702546, 40.050604969294973 ], [ -75.025670859415527, 40.050605140024928 ], [ -75.025684110450001, 40.050605354296266 ], [ -75.02569737149939, 40.050605611153181 ], [ -75.025710643771319, 40.05060590972321 ], [ -75.025723924922929, 40.050606249950896 ], [ -75.025737214918294, 40.05060663273629 ], [ -75.025750512621997, 40.050607057151538 ], [ -75.025763819205565, 40.050607523224336 ], [ -75.025777131154882, 40.050608030871338 ], [ -75.025790449677487, 40.050608579220196 ], [ -75.025803773565912, 40.050609169143264 ], [ -75.025817101648812, 40.050609800612783 ], [ -75.025830433998451, 40.050610471828335 ], [ -75.025843769407331, 40.050611183662376 ], [ -75.025857106668042, 40.050611936987259 ], [ -75.025870447060342, 40.050612729130236 ], [ -75.0258837869617, 40.050613562708484 ], [ -75.025897127615863, 40.050614435949505 ], [ -75.025910469058999, 40.050615347952977 ], [ -75.025923807704643, 40.050616300435991 ], [ -75.025937145931834, 40.050617292553973 ], [ -75.025950480262509, 40.050618323323299 ], [ -75.025963811831986, 40.050619393672022 ], [ -75.025977140676417, 40.050620502699907 ], [ -75.025990463281673, 40.050621650323635 ], [ -75.026003780783029, 40.050622837471103 ], [ -75.026017093252847, 40.050624062342038 ], [ -75.026030398312187, 40.050625325780999 ], [ -75.026043694825859, 40.050626626860051 ], [ -75.02605698392918, 40.050627966507179 ], [ -75.026070264486805, 40.050629343794405 ], [ -75.026083535363682, 40.050630757793705 ], [ -75.026096795316136, 40.050632210277755 ], [ -75.02611004438026, 40.050633700346346 ], [ -75.026123282592238, 40.05063522709932 ], [ -75.026136507609408, 40.050636790481079 ], [ -75.026149719431714, 40.050638390491599 ], [ -75.026162916851774, 40.050640028003336 ], [ -75.026176099941779, 40.050641701215945 ], [ -75.026189267494246, 40.050643411001786 ], [ -75.026202419509275, 40.050645157360897 ], [ -75.026215554851603, 40.05064693936535 ], [ -75.026228672349902, 40.050648756987272 ], [ -75.026241772004113, 40.050650610226732 ], [ -75.026254852642964, 40.050652499055943 ], [ -75.026267913095097, 40.050654423447192 ], [ -75.026280954568037, 40.050656382527961 ], [ -75.026293973511557, 40.050658377115155 ], [ -75.026306972304468, 40.050660406364251 ], [ -75.026319947432796, 40.050662470191781 ], [ -75.026332900103981, 40.050664567725391 ], [ -75.0263458279031, 40.050666700709954 ], [ -75.026358732073774, 40.050668867372799 ], [ -75.02637161027323, 40.050671067658406 ], [ -75.026384463636774, 40.050673302494843 ], [ -75.026397289857826, 40.050675570926224 ], [ -75.026410087801167, 40.050677872024707 ], [ -75.026422858565923, 40.05068020761837 ], [ -75.026435599881552, 40.05068257585134 ], [ -75.026448311748183, 40.050684976723645 ], [ -75.026460989856645, 40.05068742995627 ], [ -75.026473616898329, 40.050690016233759 ], [ -75.026486194963155, 40.050692741913025 ], [ -75.026498723096594, 40.050695601565153 ], [ -75.026511204957359, 40.050698591672663 ], [ -75.026523640762377, 40.050701706834396 ], [ -75.026536031791395, 40.050704944377593 ], [ -75.026548380567974, 40.050708299856772 ], [ -75.026560687308987, 40.050711767870723 ], [ -75.02657295563688, 40.050715345802288 ], [ -75.026585184633447, 40.050719027322238 ], [ -75.026597377884983, 40.050722810713573 ], [ -75.026609536815926, 40.050726689702685 ], [ -75.026621660399471, 40.050730660660932 ], [ -75.026633753465646, 40.050734720098774 ], [ -75.026645816231323, 40.050738862614899 ], [ -75.02665784880493, 40.050743085508799 ], [ -75.026669854917415, 40.050747383462578 ], [ -75.026681834749468, 40.050751751975298 ], [ -75.026693790788414, 40.050756187501705 ], [ -75.026705724386346, 40.050760685568541 ], [ -75.026717635723884, 40.050765241674874 ], [ -75.026729528459768, 40.05076985230324 ], [ -75.026741402810785, 40.050774512052449 ], [ -75.026753260056722, 40.050779218249637 ], [ -75.026765102757167, 40.05078396554925 ], [ -75.026776932228003, 40.050788750378224 ], [ -75.026788748649921, 40.050793568235605 ], [ -75.026800555717713, 40.050798414703642 ], [ -75.026812353612002, 40.050803285281468 ], [ -75.026824143648753, 40.050808176395954 ], [ -75.026835927179974, 40.050813083573964 ], [ -75.026847707900487, 40.050818002397762 ], [ -75.026859484783401, 40.050822929238848 ], [ -75.02687126152351, 40.050827859679501 ], [ -75.026883038301463, 40.050832789218781 ], [ -75.02689481646928, 40.05083771338338 ], [ -75.026906597378925, 40.050842627700142 ], [ -75.026918384653072, 40.050847529551802 ], [ -75.026930177336922, 40.050852413509389 ], [ -75.026941977953982, 40.050857275127427 ], [ -75.026953788991506, 40.050862110860628 ], [ -75.02696561066621, 40.050866915307914 ], [ -75.026977444257881, 40.050871685796359 ], [ -75.026989292289841, 40.050876417880538 ], [ -75.027001156150249, 40.050881106187013 ], [ -75.027013037155015, 40.050885747142765 ], [ -75.027024937791339, 40.05089033720261 ], [ -75.027036858275935, 40.050894870965223 ], [ -75.027048799924785, 40.050899344857662 ], [ -75.027060765261069, 40.050903754434451 ], [ -75.027072755600827, 40.050908096122548 ], [ -75.027095720920173, 40.050912338457366 ], [ -75.027108600019574, 40.050914722495051 ], [ -75.027121477767821, 40.050917111004544 ], [ -75.027134355408577, 40.050919502213205 ], [ -75.027147232905804, 40.050921897021212 ], [ -75.027160110259373, 40.050924295428551 ], [ -75.027172986297984, 40.050926697407476 ], [ -75.027185861057788, 40.050929102057736 ], [ -75.027198736845349, 40.05093151033519 ], [ -75.027211611317924, 40.050933922184171 ], [ -75.027224484511706, 40.050936336704567 ], [ -75.027237358769355, 40.050938753951833 ], [ -75.027250231712117, 40.050941174770728 ], [ -75.027263103376001, 40.050943598261 ], [ -75.027275976067656, 40.050946025378373 ], [ -75.02728884748052, 40.050948455167152 ], [ -75.027301718822031, 40.050950886754876 ], [ -75.027314588848625, 40.050953321914164 ], [ -75.027327458767786, 40.050955759772613 ], [ -75.027340328579413, 40.050958200330214 ], [ -75.027353197112305, 40.050960643559229 ], [ -75.027366066709106, 40.050963089515101 ], [ -75.027378935063183, 40.050965537242227 ], [ -75.027391802138467, 40.050967987640718 ], [ -75.027404670277704, 40.050970440766136 ], [ -75.027417537138106, 40.050972896562882 ], [ -75.027430403963308, 40.050975353258437 ], [ -75.027443270644966, 40.050977813553324 ], [ -75.027456136083927, 40.050980275619423 ], [ -75.027469002622965, 40.050982739512222 ], [ -75.027481867883182, 40.05098520607644 ], [ -75.027494731900759, 40.050987674411786 ], [ -75.027507597018328, 40.050990144573916 ], [ -75.027520460893285, 40.050992616507216 ], [ -75.027533325868291, 40.0509950902672 ], [ -75.027546189600585, 40.05099756579844 ], [ -75.027559052090254, 40.0510000431008 ], [ -75.027571915679957, 40.051002522229943 ], [ -75.027584778026977, 40.05100500313025 ], [ -75.027597641474102, 40.051007485857241 ], [ -75.027610503678531, 40.051009970355508 ], [ -75.02762336584783, 40.051012455752435 ], [ -75.027636226810543, 40.051014942020423 ], [ -75.027649088873318, 40.051017430115095 ], [ -75.027661949693425, 40.05101991998098 ], [ -75.027674811649732, 40.051022410773406 ], [ -75.027687672363385, 40.051024903337023 ], [ -75.027700533077962, 40.051027395899141 ], [ -75.027713393721271, 40.05102989026026 ], [ -75.027726254329394, 40.051032385520138 ], [ -75.02773911486625, 40.051034882578961 ], [ -75.027751974232601, 40.051037379608601 ], [ -75.027764834735237, 40.051039877564719 ], [ -75.027777693995191, 40.051042377292084 ], [ -75.027790553256096, 40.051044877017965 ], [ -75.027803413653203, 40.0510473776704 ], [ -75.027816272879846, 40.051049878293604 ], [ -75.027829132035251, 40.051052380715774 ], [ -75.027841991191593, 40.051054883136537 ], [ -75.027854850348845, 40.051057385555801 ], [ -75.027867709434858, 40.051059889774059 ], [ -75.027880568557961, 40.051062393090668 ], [ -75.027893427645822, 40.051064897306041 ], [ -75.027906286698567, 40.051067402420159 ], [ -75.027919144616959, 40.051069906604923 ], [ -75.027932003671623, 40.05107241171617 ], [ -75.027944862727225, 40.051074916825947 ], [ -75.027957721783736, 40.051077421934316 ], [ -75.027970579669869, 40.051079927013504 ], [ -75.027983438692161, 40.051082433019204 ], [ -75.027996297751542, 40.051084938123267 ], [ -75.028009156811905, 40.051087443225882 ], [ -75.028022015909272, 40.051089947426846 ], [ -75.028034873800166, 40.051092452498828 ], [ -75.028047732899424, 40.051094956696922 ], [ -75.028060591999719, 40.051097460893544 ], [ -75.028073451137047, 40.051099964188573 ], [ -75.02808631027527, 40.051102467482139 ], [ -75.028099169414517, 40.051104970774311 ], [ -75.028112028626921, 40.051107472264619 ], [ -75.028124887840221, 40.051109973753476 ], [ -75.028137748225902, 40.051112475268653 ], [ -75.028150607513382, 40.051114974954238 ], [ -75.028163466801814, 40.051117474638367 ], [ -75.028176327298667, 40.051119973448628 ], [ -75.028189186697304, 40.051122470429341 ], [ -75.028202047268294, 40.051124967436316 ], [ -75.028214907876318, 40.051127463541647 ], [ -75.028227768521418, 40.051129958745392 ], [ -75.02824062923969, 40.051132452147243 ], [ -75.028253489995038, 40.05113494464748 ], [ -75.028266350787405, 40.051137436246108 ], [ -75.028279211652972, 40.051139926042872 ], [ -75.028292073726945, 40.051142414965746 ], [ -75.02830493587409, 40.051144902086762 ], [ -75.028317796886938, 40.05114738827843 ], [ -75.028330659144345, 40.051149872695994 ], [ -75.028343522610129, 40.05115235623969 ], [ -75.028356384977698, 40.051154837953796 ], [ -75.02836924741851, 40.051157317866043 ], [ -75.028382111103795, 40.051159796004249 ], [ -75.028394974862266, 40.051162272340555 ], [ -75.028407838693866, 40.051164746875067 ], [ -75.028420702598652, 40.051167219607727 ], [ -75.028433567747982, 40.051169690566319 ], [ -75.028446432970469, 40.051172159723045 ], [ -75.028459298266114, 40.051174627077977 ], [ -75.028472163670969, 40.051177091730828 ], [ -75.028485029149024, 40.051179554581857 ], [ -75.028497895871595, 40.051182015658867 ], [ -75.028510761532061, 40.051184474005971 ], [ -75.028523629608458, 40.051186930606818 ], [ -75.028536496622706, 40.051189384477858 ], [ -75.028549364881457, 40.05119183657483 ], [ -75.028562232114282, 40.051194285041802 ], [ -75.028575101762911, 40.051196731762381 ], [ -75.028587970313353, 40.051199176653448 ], [ -75.028600840180502, 40.051201617970008 ], [ -75.028613710156918, 40.051204056584531 ], [ -75.028626580206506, 40.051206493397224 ], [ -75.028639451572786, 40.051208926635461 ], [ -75.028652321876962, 40.051211357143863 ], [ -75.028665194633106, 40.051213785005721 ], [ -75.028678066327132, 40.051216210137852 ], [ -75.028690939301796, 40.051218632595628 ], [ -75.028703812421767, 40.051221051451179 ], [ -75.028716686858502, 40.051223466732267 ], [ -75.02872956019695, 40.051225880183779 ], [ -75.02874243605963, 40.051228289188352 ], [ -75.028755310824053, 40.051230696363291 ], [ -75.028768186941306, 40.051233099063587 ], [ -75.028781063167756, 40.051235499061832 ], [ -75.028793940710912, 40.05123789548562 ], [ -75.028806818399417, 40.051240288307142 ], [ -75.028819696233242, 40.051242677526425 ], [ -75.028832575347707, 40.051245064071459 ], [ -75.028845454643545, 40.051247446114004 ], [ -75.028858335256118, 40.051249824582108 ], [ -75.028871216014011, 40.051252199447909 ], [ -75.028884096917224, 40.051254570711528 ], [ -75.028896979137116, 40.051256938400627 ], [ -75.028909861538438, 40.051259301587322 ], [ -75.02892274525648, 40.05126166119949 ], [ -75.028935629119772, 40.051264017209469 ], [ -75.028948514335909, 40.051266368744685 ], [ -75.028961399697351, 40.051268716677733 ], [ -75.028974285240125, 40.051271060108327 ], [ -75.028987172135785, 40.051273399064222 ], [ -75.029000059212805, 40.051275733517677 ], [ -75.029012947606461, 40.051278064396648 ], [ -75.029025836181532, 40.051280390773137 ], [ -75.02903872610942, 40.051282712675004 ], [ -75.029051616218695, 40.051285030074425 ], [ -75.029064507680715, 40.051287342999132 ], [ -75.029077399324123, 40.051289651421371 ], [ -75.029090292320276, 40.051291955368974 ], [ -75.029103185497831, 40.05129425481411 ], [ -75.02911608006427, 40.051296548884359 ], [ -75.029128974812039, 40.051298838452162 ], [ -75.029141870912582, 40.051301123545301 ], [ -75.029154768401995, 40.051303403263525 ], [ -75.029167664901379, 40.051305678451548 ], [ -75.029180563960992, 40.051307948292461 ], [ -75.029193463238087, 40.051310212730733 ], [ -75.029206362696499, 40.051312472666531 ], [ -75.029219264715152, 40.051314727255168 ], [ -75.029232165779902, 40.051316976413474 ], [ -75.029245068197369, 40.051319221097046 ], [ -75.029257972039801, 40.051321459505544 ], [ -75.029270877234893, 40.051323693439343 ], [ -75.029283782647482, 40.051325921970545 ], [ -75.029296688313607, 40.05132814419882 ], [ -75.029309596539889, 40.051330361080012 ], [ -75.029322503812253, 40.051332572530761 ], [ -75.029335413644773, 40.051334778634384 ], [ -75.029348323694762, 40.051336979335396 ], [ -75.029361235169659, 40.051339173761271 ], [ -75.029374146898064, 40.051341361884354 ], [ -75.029387060015239, 40.051343544632488 ], [ -75.029399974521226, 40.051345722005763 ], [ -75.029412889280749, 40.051347893076155 ], [ -75.029425805465095, 40.051350057871502 ], [ -75.029438721903006, 40.051352216363966 ], [ -75.029451640901044, 40.051354369509291 ], [ -75.02946455898126, 40.051356516324006 ], [ -75.029477479693739, 40.051358655991201 ], [ -75.029490400623686, 40.05136079025575 ], [ -75.029503322978456, 40.051362918245189 ], [ -75.029516246758078, 40.051365039959514 ], [ -75.029529170827288, 40.051367154470817 ], [ -75.029542096285283, 40.051369263607171 ], [ -75.029555023240292, 40.051371364668107 ], [ -75.029567951584056, 40.051373460354071 ], [ -75.029580880217381, 40.051375548837015 ], [ -75.029593810275529, 40.051377631044872 ], [ -75.029606741794652, 40.051379706077377 ], [ -75.029619673567211, 40.051381774807098 ], [ -75.029632606800675, 40.051383836361488 ], [ -75.029645541495057, 40.051385890740605 ], [ -75.029658477614305, 40.051387938844577 ], [ -75.029671415194429, 40.051389979773262 ], [ -75.029684353100194, 40.051392012598711 ], [ -75.029697292430725, 40.051394039149031 ], [ -75.029710233222232, 40.051396058524062 ], [ -75.029723174303172, 40.051398070696038 ], [ -75.02973611801643, 40.051400075720416 ], [ -75.029749062055316, 40.051402072641636 ], [ -75.029762007663308, 40.051404059686888 ], [ -75.029774972217538, 40.05140595437085 ], [ -75.029787963018606, 40.051407720824308 ], [ -75.02980097878671, 40.051409361720069 ], [ -75.029814018169986, 40.051410881531382 ], [ -75.029827081023925, 40.051412283859051 ], [ -75.02984016603277, 40.051413572276068 ], [ -75.029853271916778, 40.051414749455375 ], [ -75.029866398459362, 40.051415820798077 ], [ -75.029879544380847, 40.051416788977015 ], [ -75.029892709536696, 40.051417657593042 ], [ -75.029905891439753, 40.051418430191504 ], [ -75.029919089909598, 40.051419111273226 ], [ -75.029932304837814, 40.051419703538912 ], [ -75.02994553373729, 40.051420210533912 ], [ -75.029958777598821, 40.051420636786837 ], [ -75.029972033935309, 40.051420985843087 ], [ -75.029985302602384, 40.051421261303425 ], [ -75.029998582320218, 40.051421465840662 ], [ -75.030011872872393, 40.051421604856088 ], [ -75.030025171843803, 40.051421680094542 ], [ -75.030038480225414, 40.051421696084766 ], [ -75.030051795493989, 40.051421657272279 ], [ -75.030065118712514, 40.051421566385422 ], [ -75.030078446222603, 40.051421426941715 ], [ -75.030091779015052, 40.051421243469989 ], [ -75.030105115810244, 40.051421018643033 ], [ -75.030118455292396, 40.05142075603392 ], [ -75.030131796073576, 40.051420461016079 ], [ -75.030145139252966, 40.051420135417722 ], [ -75.030158482307385, 40.05141978368431 ], [ -75.030171823957176, 40.051419408488684 ], [ -75.030185165157135, 40.051419015259803 ], [ -75.030198503456234, 40.05141860664277 ], [ -75.030211837538772, 40.051418186210668 ], [ -75.030225168431798, 40.051417757592013 ], [ -75.030238493648085, 40.051417324332164 ], [ -75.03025181183591, 40.051416890904349 ], [ -75.030265124058417, 40.051416460036911 ], [ -75.030278427792339, 40.051416036175347 ], [ -75.030291722929448, 40.051415622020265 ], [ -75.030305008117978, 40.051415222045016 ], [ -75.03031828204216, 40.05141483982252 ], [ -75.030331544557683, 40.05141447895366 ], [ -75.030344794348878, 40.051414143011506 ], [ -75.030358030136071, 40.051413834668871 ], [ -75.030371253523668, 40.051413543151185 ], [ -75.030384472788953, 40.051413149715344 ], [ -75.030397688509183, 40.051412639958194 ], [ -75.030410902738339, 40.051412021136841 ], [ -75.030424112845068, 40.051411300397312 ], [ -75.03043732198249, 40.051410486824842 ], [ -75.030450528690494, 40.051409587593326 ], [ -75.030463732680531, 40.051408609904286 ], [ -75.030476935934331, 40.051407562815257 ], [ -75.0304901358205, 40.051406453472296 ], [ -75.030503334356993, 40.051405290032712 ], [ -75.030516531255159, 40.051404079698031 ], [ -75.030529726190224, 40.051402830570147 ], [ -75.03054291997276, 40.051401551678651 ], [ -75.030556111178711, 40.051400249297309 ], [ -75.030569302997577, 40.051398931611089 ], [ -75.030582491554313, 40.051397607538718 ], [ -75.030595680110551, 40.051396283464868 ], [ -75.030608867134063, 40.051394968363731 ], [ -75.030622053507642, 40.051393669464673 ], [ -75.030635238906513, 40.051392394869488 ], [ -75.030648423042081, 40.051391151779754 ], [ -75.030661606761058, 40.051389948324989 ], [ -75.03067479087396, 40.051388793534912 ], [ -75.030687972785543, 40.051387693655442 ], [ -75.030701155649282, 40.051386657771772 ], [ -75.030714338041093, 40.051385692157574 ], [ -75.030727519564323, 40.051384806715056 ], [ -75.030740701137717, 40.051384007773279 ], [ -75.030753883608028, 40.05138330346184 ], [ -75.030767065479324, 40.051382701854756 ], [ -75.030780247598173, 40.051382211081524 ], [ -75.030793429676152, 40.051381838343772 ], [ -75.030806612559928, 40.051381591771005 ], [ -75.030819795924927, 40.051381479465043 ], [ -75.030832984564952, 40.051381498836136 ], [ -75.030846236279459, 40.05138152420416 ], [ -75.030859561702144, 40.051381524283961 ], [ -75.03087295468751, 40.051381506138377 ], [ -75.030886407810399, 40.051381479503263 ], [ -75.030899912546403, 40.051381452286293 ], [ -75.030913461506401, 40.05138143332303 ], [ -75.030927048508801, 40.051381430576591 ], [ -75.030940663821767, 40.051381452827137 ], [ -75.030954301263748, 40.051381508037828 ], [ -75.030967953409558, 40.051381605944457 ], [ -75.030981612942284, 40.051381753582241 ], [ -75.030995272436897, 40.051381960686946 ], [ -75.031008922197515, 40.051382235138632 ], [ -75.031022558385544, 40.051382584955846 ], [ -75.031036170061597, 40.051383019791224 ], [ -75.031049752251604, 40.051383546735529 ], [ -75.031063295187707, 40.051384175469025 ], [ -75.031076793895849, 40.051384913082501 ], [ -75.031090238572148, 40.051385770156507 ], [ -75.031103623071076, 40.051386753754031 ], [ -75.031116940039723, 40.051387871810505 ], [ -75.031130180881746, 40.051389134034068 ], [ -75.031143339379483, 40.051390549288101 ], [ -75.031156407080815, 40.051392123679896 ], [ -75.031169376488549, 40.051393868745826 ], [ -75.031182240321982, 40.051395790620823 ], [ -75.031194990020779, 40.051397898112903 ], [ -75.031207620502627, 40.05140020101333 ], [ -75.031220123243315, 40.051402707229961 ], [ -75.031232489718533, 40.051405424670463 ], [ -75.031244712539433, 40.051408362170534 ], [ -75.031256785524434, 40.051411527693382 ], [ -75.031268700077192, 40.051414930947139 ], [ -75.031280458251999, 40.051418579188997 ], [ -75.031292179855029, 40.051422467145045 ], [ -75.03130389445964, 40.05142658830696 ], [ -75.031315592911227, 40.051430937051705 ], [ -75.03132726374858, 40.051435506800594 ], [ -75.031338897781026, 40.051440292830925 ], [ -75.031350484682704, 40.051445289491923 ], [ -75.031362014127552, 40.051450491132933 ], [ -75.03137347461832, 40.051455892075538 ], [ -75.031384856964308, 40.051461487596903 ], [ -75.031396150911633, 40.051467270245972 ], [ -75.031407347269649, 40.05147323529998 ], [ -75.031418433369552, 40.051479377052857 ], [ -75.031429401228166, 40.051485689909313 ], [ -75.031440239312019, 40.051492169091112 ], [ -75.031450937331059, 40.051498808047462 ], [ -75.031461486130738, 40.051505601155355 ], [ -75.031471874177484, 40.051512543636647 ], [ -75.031482092352775, 40.05151962896818 ], [ -75.03149213033042, 40.051526851499275 ], [ -75.031501976576976, 40.051534206451805 ], [ -75.031511623145192, 40.051541687330314 ], [ -75.031521057330139, 40.051549289328918 ], [ -75.031530269977011, 40.05155700682468 ], [ -75.031539250795873, 40.05156483326676 ], [ -75.031547989424439, 40.051572763904751 ], [ -75.0315564755727, 40.051580792187742 ], [ -75.031564700013732, 40.051588914293276 ], [ -75.031572651322193, 40.051597122742535 ], [ -75.031580320307071, 40.051605412812847 ], [ -75.031587694299631, 40.051613778798135 ], [ -75.031594766487657, 40.051622215130841 ], [ -75.031601624239372, 40.05163070675875 ], [ -75.031608416015388, 40.051639235570157 ], [ -75.031615144194603, 40.051647800720161 ], [ -75.031621808740894, 40.051656403109142 ], [ -75.031628412105263, 40.051665040091869 ], [ -75.031634955459097, 40.05167371169604 ], [ -75.031641441181165, 40.051682417077004 ], [ -75.031647868136218, 40.051691155306784 ], [ -75.031654238703055, 40.051699925540625 ], [ -75.03166055522442, 40.051708727834026 ], [ -75.031666818907794, 40.051717561314533 ], [ -75.031673029789232, 40.051726425081888 ], [ -75.031679190283612, 40.051735317391213 ], [ -75.031685300390961, 40.051744238242478 ], [ -75.031691363625427, 40.051753187718759 ], [ -75.031697378887699, 40.051762163992166 ], [ -75.031703349728062, 40.051771166245501 ], [ -75.031709276146501, 40.051780194478802 ], [ -75.031715159350441, 40.051789247819627 ], [ -75.031721001718736, 40.051798325423206 ], [ -75.031726803287398, 40.05180742638936 ], [ -75.031732566435352, 40.051816549873323 ], [ -75.031738292369994, 40.051825695002627 ], [ -75.031743981091367, 40.05183486177728 ], [ -75.031749636185708, 40.051844048480042 ], [ -75.031755257652975, 40.05185325511092 ], [ -75.031760846700763, 40.051862480797439 ], [ -75.031766404536413, 40.051871724667151 ], [ -75.031771933538778, 40.051880985875293 ], [ -75.031777433743983, 40.051890263521656 ], [ -75.031782907494673, 40.051899557661677 ], [ -75.031788355998472, 40.051908867422853 ], [ -75.031793779327415, 40.051918191004916 ], [ -75.031799180995677, 40.051927528490864 ], [ -75.031804561039309, 40.051936878980626 ], [ -75.03180992066585, 40.051946241601691 ], [ -75.031815261046546, 40.05195561638174 ], [ -75.031820583425031, 40.051965001548119 ], [ -75.031825891351517, 40.051974396283811 ], [ -75.031831182447192, 40.051983801433551 ], [ -75.031836461505748, 40.051993214407638 ], [ -75.03184172735584, 40.052002635178361 ], [ -75.03184698237628, 40.052012062900978 ], [ -75.031852228945965, 40.052021496730667 ], [ -75.031857465893495, 40.052030936639788 ], [ -75.031862696769082, 40.052040381811246 ], [ -75.031867921644903, 40.052049830444652 ], [ -75.031873142863745, 40.052059282595494 ], [ -75.031878361633019, 40.052068737391231 ], [ -75.031883577988879, 40.052078193931635 ], [ -75.031888793138663, 40.052087651344308 ], [ -75.031894010596659, 40.052097109712385 ], [ -75.031899230434959, 40.052106567235469 ], [ -75.031904453825007, 40.052116023941267 ], [ -75.031909681974199, 40.052125478957286 ], [ -75.031914917261489, 40.052134931438786 ], [ -75.031920159722844, 40.052144380485537 ], [ -75.031925411737205, 40.052153825252823 ], [ -75.031930673340582, 40.052163264840431 ], [ -75.031935946875819, 40.052172699303753 ], [ -75.031941233550356, 40.052182127770372 ], [ -75.031946535779099, 40.052191548495244 ], [ -75.03195185235468, 40.052200962350959 ], [ -75.031957185728018, 40.052210366692258 ], [ -75.031962538205875, 40.052219762474806 ], [ -75.031967909860413, 40.052229147898174 ], [ -75.031973303034391, 40.052238523017863 ], [ -75.031978718971303, 40.05224788606116 ], [ -75.031984157671303, 40.052257237028037 ], [ -75.031989621513091, 40.052266575073723 ], [ -75.031995111704305, 40.052275899325785 ], [ -75.032000629416203, 40.052285209811878 ], [ -75.032006177099902, 40.052294503886905 ], [ -75.032011754719278, 40.052303782451006 ], [ -75.032017363481813, 40.052313044631724 ], [ -75.032023004595004, 40.052322289556514 ], [ -75.032028681645173, 40.052331515508214 ], [ -75.03203439342488, 40.052340723359272 ], [ -75.032040142385114, 40.052349910464457 ], [ -75.032045929625141, 40.052359078651982 ], [ -75.032051756460689, 40.052368224348662 ], [ -75.032057624027019, 40.052377348482501 ], [ -75.032063534703127, 40.052386450208679 ], [ -75.032069551583035, 40.052395505790585 ], [ -75.032075719937467, 40.052404497377367 ], [ -75.032082030142789, 40.05241343104862 ], [ -75.032088471512182, 40.052422310155684 ], [ -75.032095034494134, 40.052431138977724 ], [ -75.032101709537059, 40.05243992179404 ], [ -75.032108484746757, 40.052448662828432 ], [ -75.032115351779069, 40.052457365487662 ], [ -75.03212229866763, 40.052466035795916 ], [ -75.032129317140445, 40.052474675359591 ], [ -75.03213639519501, 40.052483291103087 ], [ -75.032143524523335, 40.052491885532966 ], [ -75.032150694402475, 40.052500462900802 ], [ -75.032157894109488, 40.052509027458107 ], [ -75.032165114056767, 40.05251758438429 ], [ -75.032172344728778, 40.05252613705855 ], [ -75.032179574231222, 40.052534689704558 ], [ -75.032186793012571, 40.052543246601715 ], [ -75.032193992692584, 40.052551812056898 ], [ -75.032201161376989, 40.052560390293984 ], [ -75.03220828834273, 40.052568985564612 ], [ -75.032215365245804, 40.052577601275487 ], [ -75.032222381327088, 40.052586242578379 ], [ -75.03222932707115, 40.052594912852385 ], [ -75.032246798152457, 40.052594517977063 ], [ -75.032260106029312, 40.052594347174647 ], [ -75.03227344969531, 40.052594278135302 ], [ -75.032286825924771, 40.052594303574317 ], [ -75.032300231527941, 40.052594415306729 ], [ -75.03231366455887, 40.052594603374921 ], [ -75.032327119412855, 40.05259486133891 ], [ -75.032340596486634, 40.052595179296496 ], [ -75.03235409138307, 40.052595549935191 ], [ -75.032367602083937, 40.052595965097808 ], [ -75.032381124264177, 40.052596415671438 ], [ -75.032394655869467, 40.052596894399123 ], [ -75.032408193746136, 40.052597392195658 ], [ -75.032421735875985, 40.052597900903869 ], [ -75.032435279069276, 40.052598412338767 ], [ -75.032448821307696, 40.052598918343172 ], [ -75.032462357094801, 40.052599409776519 ], [ -75.032475886682946, 40.052599880337389 ], [ -75.032489404647777, 40.052600319084824 ], [ -75.032502910070278, 40.052600719689757 ], [ -75.032516398625361, 40.052601073039355 ], [ -75.032529868294631, 40.052601370976362 ], [ -75.032543315888418, 40.052601605315857 ], [ -75.032556739388255, 40.052601767900661 ], [ -75.032570134469168, 40.052601849617858 ], [ -75.032583500248094, 40.05260184323825 ], [ -75.032596831228417, 40.052601739621259 ], [ -75.032610127734671, 40.052601530665065 ], [ -75.032623384198132, 40.052601209029575 ], [ -75.032636598672553, 40.052600764757152 ], [ -75.032649769067447, 40.052600191491024 ], [ -75.032662891129746, 40.052599478317902 ], [ -75.032675963904225, 40.05259861980899 ], [ -75.032688981930448, 40.052597605923495 ], [ -75.032701945532807, 40.052596428559632 ], [ -75.032714849142579, 40.052595080377301 ], [ -75.032727690813374, 40.052593551418859 ], [ -75.032740467319442, 40.052591834399657 ], [ -75.032753177777565, 40.052589922090398 ], [ -75.032765816763302, 40.052587803550168 ], [ -75.032778382186109, 40.052585472422109 ], [ -75.032790873198877, 40.05258292057681 ], [ -75.032803283133674, 40.052580138846018 ], [ -75.032815619937793, 40.052577133725109 ], [ -75.032827948415616, 40.052574043707018 ], [ -75.03284028590366, 40.052570904342879 ], [ -75.032852630022916, 40.052567716477476 ], [ -75.032864980809521, 40.052564479210652 ], [ -75.03287733705595, 40.052561193414803 ], [ -75.032889696455371, 40.052557858134392 ], [ -75.032902060107077, 40.052554475197468 ], [ -75.032914424532891, 40.052551043620767 ], [ -75.032926789732826, 40.052547563404239 ], [ -75.032939155706813, 40.0525440345479 ], [ -75.032951518868529, 40.052540458769016 ], [ -75.032963880461381, 40.052536834294884 ], [ -75.032976238106542, 40.05253316197031 ], [ -75.032988591803999, 40.052529441795286 ], [ -75.033000939174798, 40.052525674614635 ], [ -75.033013279083647, 40.052521859500366 ], [ -75.033025611530462, 40.052517996452586 ], [ -75.03303793527175, 40.0525140872439 ], [ -75.033050248000706, 40.052510130918748 ], [ -75.03306255092474, 40.052506126604634 ], [ -75.033074840457488, 40.052502076018783 ], [ -75.03308711659902, 40.052497979161302 ], [ -75.033099378213905, 40.052493835104194 ], [ -75.033111624094659, 40.052489644720048 ], [ -75.033123853069895, 40.052485407981059 ], [ -75.033136063968101, 40.05248112485959 ], [ -75.033148256789318, 40.052476795355616 ], [ -75.033160429154705, 40.052472420313997 ], [ -75.033172579892707, 40.052467999706934 ], [ -75.033184709039517, 40.052463532634349 ], [ -75.033196814216126, 40.052459019940905 ], [ -75.033208895386494, 40.05245446252691 ], [ -75.033220951415259, 40.05244985946441 ], [ -75.033232979959649, 40.052445210698039 ], [ -75.03324498215494, 40.052440517155709 ], [ -75.033256954522955, 40.052435777854065 ], [ -75.033268896991558, 40.052430994593578 ], [ -75.033280808425445, 40.052426166446281 ], [ -75.033292687653102, 40.052421293384562 ], [ -75.033304534674599, 40.052416375408413 ], [ -75.033316345903557, 40.052411414235053 ], [ -75.033328122583484, 40.052406408091905 ], [ -75.03333986350691, 40.052401357851359 ], [ -75.033351566330992, 40.052396263458121 ], [ -75.033363229884358, 40.052391124884444 ], [ -75.033374854130912, 40.052385943030593 ], [ -75.033386436763891, 40.052380716940881 ], [ -75.033397978882576, 40.052375448443499 ], [ -75.03340947704487, 40.052370135654918 ], [ -75.033420931214692, 40.052364779475376 ], [ -75.03343233901316, 40.05235938074965 ], [ -75.033443701647769, 40.052353938605258 ], [ -75.033455016739609, 40.052348453887021 ], [ -75.033466283153331, 40.052342925667055 ], [ -75.033477500852854, 40.052337354845555 ], [ -75.033488666288008, 40.052331742239637 ], [ -75.033499780666105, 40.052326086976827 ], [ -75.033510841644357, 40.052320389001729 ], [ -75.033521849186798, 40.052314649214523 ], [ -75.03353280212194, 40.052308867587598 ], [ -75.033543698143063, 40.052303043165288 ], [ -75.033554536006648, 40.052297177720334 ], [ -75.033565316920132, 40.052291270380302 ], [ -75.033576037333262, 40.052285321962195 ], [ -75.033586697282075, 40.052279331565927 ], [ -75.033597295559176, 40.052273300064016 ], [ -75.033607832200474, 40.052267226556168 ], [ -75.033618303619818, 40.052261112759865 ], [ -75.033628709853204, 40.052254957774785 ], [ -75.033639050864593, 40.052248762501144 ], [ -75.033649325554592, 40.052242525110962 ], [ -75.033659548196312, 40.052236240535407 ], [ -75.033669722412156, 40.05222990615701 ], [ -75.033679850472694, 40.052223523831557 ], [ -75.03368993237801, 40.052217093559094 ], [ -75.033699969263409, 40.052210616267523 ], [ -75.033709961056843, 40.052204093757261 ], [ -75.033719910101098, 40.052197526083738 ], [ -75.033729816360093, 40.052190914147118 ], [ -75.033739680969205, 40.052184258875322 ], [ -75.033749505027799, 40.052177562096524 ], [ -75.033759288535734, 40.052170823810663 ], [ -75.033769033799928, 40.052164044973352 ], [ -75.03377873964881, 40.052157225556911 ], [ -75.033788408317193, 40.052150368317406 ], [ -75.03379804097645, 40.052143473282477 ], [ -75.033807637626524, 40.052136540452153 ], [ -75.033817199330699, 40.052129572554733 ], [ -75.033826726125028, 40.052122568690059 ], [ -75.033836220280264, 40.052115530713877 ], [ -75.033845682967723, 40.05210845865399 ], [ -75.033855112907943, 40.052101355183211 ], [ -75.033864512515819, 40.052094218556611 ], [ -75.033873882818497, 40.052087052402655 ], [ -75.033883223888168, 40.052079854920947 ], [ -75.033892536751964, 40.052072629740039 ], [ -75.033901822653434, 40.052065375087196 ], [ -75.033911081484462, 40.052058093663042 ], [ -75.033920315587793, 40.052050785523015 ], [ -75.033929524891406, 40.052043452467402 ], [ -75.03393870939523, 40.052036094496344 ], [ -75.033947872613496, 40.052028711692905 ], [ -75.033957012095314, 40.052021306702223 ], [ -75.033966131354873, 40.052013879607465 ], [ -75.033975229184705, 40.052006431281114 ], [ -75.033984307891586, 40.051998962678802 ], [ -75.033993368610851, 40.051991474728389 ], [ -75.034002410135102, 40.051983968302402 ], [ -75.034011435978542, 40.051976443483959 ], [ -75.034020444861582, 40.051968902945909 ], [ -75.034029437991734, 40.051961345815819 ], [ -75.034038417639707, 40.05195377394945 ], [ -75.034047382634029, 40.051946187319082 ], [ -75.034056336416938, 40.051938587808273 ], [ -75.034065276645549, 40.051930975361586 ], [ -75.034074206762, 40.051923351862555 ], [ -75.034083125558922, 40.051915718183643 ], [ -75.034092036586429, 40.051908073507768 ], [ -75.034100938565089, 40.051900420507799 ], [ -75.034109832630207, 40.05189276011172 ], [ -75.034118718817922, 40.051885091419202 ], [ -75.034127600534205, 40.051877417214051 ], [ -75.034136476607728, 40.051869737468536 ], [ -75.034145348173851, 40.051862053110519 ], [ -75.034154217539282, 40.051854365095664 ], [ -75.034163083460584, 40.051846675196579 ], [ -75.034171947145197, 40.051838982540843 ], [ -75.034180810863845, 40.051831288984253 ], [ -75.034189673445084, 40.051823594499055 ], [ -75.034198538295058, 40.051815901868963 ], [ -75.034207404242323, 40.051808211066273 ], [ -75.034216272458323, 40.051800522118697 ], [ -75.034225144042367, 40.051792836854304 ], [ -75.034234020165826, 40.051785155300834 ], [ -75.034242901928025, 40.051777479286336 ], [ -75.034251789292981, 40.051769809710997 ], [ -75.034260683432052, 40.051762146602563 ], [ -75.034269584309186, 40.051754490861228 ], [ -75.034278495366536, 40.051746844370449 ], [ -75.034287414261357, 40.051739207074839 ], [ -75.03429634443566, 40.051731580857854 ], [ -75.03430528475414, 40.051723964791663 ], [ -75.034314237451483, 40.051716361632202 ], [ -75.034323203699088, 40.051708771407156 ], [ -75.034332182289532, 40.051701194989043 ], [ -75.034341176664952, 40.051693634261376 ], [ -75.034350184518544, 40.051686088268497 ], [ -75.034359210463847, 40.051678558921658 ], [ -75.03436825212205, 40.051671047065625 ], [ -75.03437731179983, 40.051663553655906 ], [ -75.034386390632662, 40.051656079620564 ], [ -75.034395489791891, 40.051648624987145 ], [ -75.034404608034109, 40.05164119152839 ], [ -75.034413748837366, 40.051633780227561 ], [ -75.034422910994309, 40.051626391957228 ], [ -75.034432095676323, 40.051619026745009 ], [ -75.0344413051902, 40.051611685546504 ], [ -75.03445053829239, 40.051604370134463 ], [ -75.034459797289742, 40.051597081464358 ], [ -75.034469083353585, 40.051589819563958 ], [ -75.034478396447952, 40.051582585333399 ], [ -75.034487737708147, 40.051575379700658 ], [ -75.034497107062151, 40.051568204466058 ], [ -75.034506506852722, 40.051561059684992 ], [ -75.034515937043892, 40.051553946257677 ], [ -75.034525398770953, 40.051546865111966 ], [ -75.03453489316928, 40.051539817175723 ], [ -75.034544420202892, 40.051532803349197 ], [ -75.034553982142526, 40.051525825488135 ], [ -75.034563579024152, 40.051518882692299 ], [ -75.034573210775733, 40.051511976762178 ], [ -75.034582879740086, 40.051505107753023 ], [ -75.034592585809094, 40.051498278365543 ], [ -75.034602330190197, 40.05149148772712 ], [ -75.034612113982703, 40.051484737665874 ], [ -75.034621937186671, 40.051478028181791 ], [ -75.034631802072809, 40.051471361130645 ], [ -75.034641708605136, 40.051464737412637 ], [ -75.034651708810514, 40.051458116809293 ], [ -75.034661843632989, 40.051451472355858 ], [ -75.034672110369527, 40.051444812998845 ], [ -75.034682502766785, 40.051438148502051 ], [ -75.034693019329112, 40.051431486939535 ], [ -75.034703653839287, 40.051424837174821 ], [ -75.034714403594208, 40.051418208154473 ], [ -75.034725264683459, 40.05141160969756 ], [ -75.034736233232493, 40.051405050723027 ], [ -75.034747304195591, 40.051398540122094 ], [ -75.034758474905672, 40.051392085941146 ], [ -75.034769741452379, 40.051385697999258 ], [ -75.034781097618435, 40.051379385159962 ], [ -75.034792543043665, 40.051373156425214 ], [ -75.034804070339433, 40.051367020630913 ], [ -75.034815676802822, 40.051360986723623 ], [ -75.03482735969483, 40.051355064550151 ], [ -75.034839112870287, 40.051349261173627 ], [ -75.03485093468953, 40.051343588268914 ], [ -75.034862819007571, 40.051338052899197 ], [ -75.034874763121394, 40.051332664011028 ], [ -75.034886763120682, 40.051327431423609 ], [ -75.034898813959629, 40.05132236402806 ], [ -75.034910912935416, 40.05131747077106 ], [ -75.034923056173668, 40.051312760571527 ], [ -75.034935237457304, 40.051308242292976 ], [ -75.034947455254837, 40.051303924909732 ], [ -75.034959705691932, 40.051299817340734 ], [ -75.034971982551639, 40.051295928449534 ], [ -75.034984284266329, 40.051292268110593 ], [ -75.034996604655021, 40.051288844287321 ], [ -75.035008942150213, 40.05128566685422 ], [ -75.03502129057091, 40.051282743774614 ], [ -75.035033647178324, 40.051280084895339 ], [ -75.035046006926706, 40.051277699107672 ], [ -75.035058368320662, 40.051275594485759 ], [ -75.035070723899764, 40.051273781665799 ], [ -75.035083073376114, 40.051272267849427 ], [ -75.035095409289127, 40.051271063672914 ], [ -75.035107730143551, 40.051270177210426 ], [ -75.035120083604653, 40.051269560030718 ], [ -75.035132583978523, 40.051269080578699 ], [ -75.035145229174617, 40.05126873249759 ], [ -75.035158010957275, 40.051268516493693 ], [ -75.035170922370327, 40.051268430600544 ], [ -75.035183955178027, 40.051268475524417 ], [ -75.035197100045508, 40.051268650143619 ], [ -75.035210348809159, 40.051268953364044 ], [ -75.03522369557605, 40.051269385947542 ], [ -75.035237131011229, 40.051269946772337 ], [ -75.035250646915088, 40.051270635644606 ], [ -75.035264235124004, 40.051271451470349 ], [ -75.035277887438355, 40.051272394055694 ], [ -75.035291598037347, 40.051273462362076 ], [ -75.035305356342533, 40.051274657040423 ], [ -75.035319155361748, 40.051275977024488 ], [ -75.035332985759936, 40.051277421192516 ], [ -75.035346842851666, 40.051278989433811 ], [ -75.035360714923158, 40.051280681471518 ], [ -75.035374596117606, 40.051282497167207 ], [ -75.035388477099943, 40.051284435399189 ], [ -75.03540235084202, 40.051286496001381 ], [ -75.035416209180141, 40.051288677879811 ], [ -75.035430043914715, 40.051290980840697 ], [ -75.035443846846107, 40.051293404690227 ], [ -75.035457609810706, 40.051295948334477 ], [ -75.035471324608864, 40.051298611579661 ], [ -75.035484984212374, 40.051301394259696 ], [ -75.035498580421574, 40.051304296180859 ], [ -75.035512105108836, 40.051307315348964 ], [ -75.035525548867199, 40.051310452442792 ], [ -75.035538905875654, 40.051313706423763 ], [ -75.03555216676331, 40.051317077070422 ], [ -75.035565323330459, 40.051320564189083 ], [ -75.035578367413478, 40.051324166685752 ], [ -75.035591293155449, 40.051327884422115 ], [ -75.035604090050057, 40.051331716248853 ], [ -75.035616751068829, 40.051335661999893 ], [ -75.035629266804904, 40.051339722354051 ], [ -75.035641632680665, 40.051343894500064 ], [ -75.035653836910384, 40.051348179961586 ], [ -75.035665873673082, 40.051352577700044 ], [ -75.035677733633662, 40.051357086593818 ], [ -75.035689410935305, 40.051361706504579 ], [ -75.035700895071543, 40.051366436283111 ], [ -75.035712178978031, 40.051371276663474 ], [ -75.035723254491046, 40.051376226551888 ], [ -75.035734113410982, 40.05138128575458 ], [ -75.035744748745444, 40.051386453205382 ], [ -75.035755151123396, 40.051391728682844 ], [ -75.035765313516407, 40.051397112021007 ], [ -75.035775227796876, 40.051402601225782 ], [ -75.03578489405578, 40.051408223330874 ], [ -75.0357943517282, 40.0514141063165 ], [ -75.035803610888451, 40.051420262134386 ], [ -75.035812674239523, 40.051426681837953 ], [ -75.035821543276967, 40.051433357353105 ], [ -75.035830221947151, 40.051440277960495 ], [ -75.035838712880931, 40.051447436513989 ], [ -75.035847018781297, 40.051454824066951 ], [ -75.035855142351096, 40.051462431672718 ], [ -75.035863087500616, 40.051470249512271 ], [ -75.035870855689396, 40.051478270411636 ], [ -75.035878450863748, 40.051486483651495 ], [ -75.035885875654586, 40.051494882085642 ], [ -75.035893132764656, 40.051503456767456 ], [ -75.035900224932959, 40.051512197850101 ], [ -75.035907154826319, 40.051521097287228 ], [ -75.035913925147639, 40.051530146132116 ], [ -75.035920539807123, 40.05153933456571 ], [ -75.035927000264252, 40.051548655414102 ], [ -75.035933310393304, 40.05155809975826 ], [ -75.035939472933123, 40.05156765775147 ], [ -75.035945490586528, 40.051577320447073 ], [ -75.035951367155775, 40.051587080726456 ], [ -75.035957103072988, 40.05159692778728 ], [ -75.035962703311668, 40.051606854538733 ], [ -75.035968169475368, 40.051616850206031 ], [ -75.035973505366286, 40.051626907670602 ], [ -75.035978713687271, 40.051637017985897 ], [ -75.035983797177067, 40.051647171305007 ], [ -75.03598875850264, 40.051657359581554 ], [ -75.035993600366709, 40.05166757386889 ], [ -75.035998325472193, 40.051677805220336 ], [ -75.036002937693269, 40.05168804471694 ], [ -75.036007438525402, 40.05169828428469 ], [ -75.036011831878767, 40.051708514104291 ], [ -75.036016120420214, 40.051718726129387 ], [ -75.036020306852535, 40.051728911413306 ], [ -75.036024395050049, 40.051739061037118 ], [ -75.03602838537266, 40.051749165998743 ], [ -75.036032282866088, 40.051759217406996 ], [ -75.036036089061781, 40.051769206287517 ], [ -75.036039807797849, 40.051779124621504 ], [ -75.036043441777224, 40.051788963462378 ], [ -75.036046993702655, 40.051798713863505 ], [ -75.036050466313043, 40.051808365977976 ], [ -75.036053852507848, 40.051817921440154 ], [ -75.036056992856899, 40.051827526057664 ], [ -75.036059834973571, 40.051837229051777 ], [ -75.036062383795382, 40.051847024231655 ], [ -75.03606464773803, 40.051856906389922 ], [ -75.036066632982511, 40.051866867563163 ], [ -75.03606834787243, 40.051876904344361 ], [ -75.03606979628195, 40.051887007814578 ], [ -75.036070987798283, 40.051897172793907 ], [ -75.03607192732288, 40.051907393991989 ], [ -75.036072623343486, 40.051917664400854 ], [ -75.036073082004989, 40.051927976957387 ], [ -75.036073309344417, 40.051938327298913 ], [ -75.036073313849514, 40.051948708417591 ], [ -75.036073100457727, 40.051959114122695 ], [ -75.036072677620837, 40.051969538306544 ], [ -75.03607205144786, 40.051979974806208 ], [ -75.03607122804766, 40.051990417458548 ], [ -75.036070215872073, 40.052000860155943 ], [ -75.036069021030002, 40.052011296735373 ], [ -75.036067650801897, 40.0520217210615 ], [ -75.036066110161244, 40.052032126043393 ], [ -75.036064408659257, 40.052042507401474 ], [ -75.036062551305548, 40.052052857144609 ], [ -75.036060545344498, 40.052063170037663 ], [ -75.036058398056468, 40.05207343994531 ], [ -75.03605611558649, 40.052083659804296 ], [ -75.036053705178901, 40.052093824379483 ], [ -75.03605117294282, 40.052103927507794 ], [ -75.03604852733001, 40.052113963081631 ], [ -75.036045774485515, 40.052123924037751 ], [ -75.036042920482359, 40.052133805113279 ], [ -75.036039964329092, 40.052143601779584 ], [ -75.036036776614623, 40.052153354229446 ], [ -75.036033320449192, 40.052163076008135 ], [ -75.036029608610221, 40.052172770120571 ], [ -75.036025656325634, 40.052182436926635 ], [ -75.036021476444887, 40.052192077630885 ], [ -75.036017081781154, 40.052201694338152 ], [ -75.036012486391314, 40.052211287380565 ], [ -75.036007704296082, 40.052220857990442 ], [ -75.036002748308647, 40.0522304082726 ], [ -75.035997632485945, 40.05223993855909 ], [ -75.035992369641178, 40.052249450954783 ], [ -75.035986973831228, 40.052258945791834 ], [ -75.035981457869383, 40.052268425174987 ], [ -75.035975836983894, 40.052277889464115 ], [ -75.03597012281665, 40.052287340736363 ], [ -75.035964329424587, 40.052296779323783 ], [ -75.035958470792352, 40.052306207358967 ], [ -75.035952559769441, 40.052315626046536 ], [ -75.035946610376655, 40.052325036618832 ], [ -75.035940636670801, 40.052334439407943 ], [ -75.03593465146534, 40.052343836518808 ], [ -75.035928667609639, 40.052353229156012 ], [ -75.035922699124598, 40.052362618551925 ], [ -75.035916760067053, 40.052372005038656 ], [ -75.035910864385883, 40.052381391648979 ], [ -75.035905023831077, 40.052390777759463 ], [ -75.035899253559023, 40.052400165530386 ], [ -75.035893566383081, 40.052409557066525 ], [ -75.035887975224796, 40.05241895177226 ], [ -75.035882495240472, 40.052428351807777 ], [ -75.035877138072195, 40.052437759250282 ], [ -75.03587191898427, 40.052447173559393 ], [ -75.035866850754161, 40.052456597740274 ], [ -75.035861946267474, 40.052466032097279 ], [ -75.035857219545093, 40.052475477862899 ], [ -75.035852684607931, 40.052484936269465 ], [ -75.035848354305614, 40.052494408521625 ], [ -75.035844241451557, 40.052503896724339 ], [ -75.035840361274239, 40.052513401237405 ], [ -75.035836726623174, 40.052522923265506 ], [ -75.03583335148339, 40.052532464941308 ], [ -75.035830247568967, 40.052542026541474 ], [ -75.035827430036377, 40.052551610226395 ], [ -75.035824912942559, 40.052561216328172 ], [ -75.035822707965792, 40.052570846023826 ], [ -75.035820831433853, 40.052580501501325 ], [ -75.035819433918363, 40.052590199834192 ], [ -75.03581857732415, 40.052599946990583 ], [ -75.03581823598843, 40.052609739660895 ], [ -75.035818385419887, 40.052619574563266 ], [ -75.03581899882046, 40.052629447460284 ], [ -75.035820051734746, 40.052639354169905 ], [ -75.035821517292533, 40.052649292255012 ], [ -75.03582337217388, 40.052659258461524 ], [ -75.035825588445178, 40.052669247624017 ], [ -75.035828141615013, 40.05267925646065 ], [ -75.035831007156006, 40.052689282589732 ], [ -75.035834158305832, 40.052699320873614 ], [ -75.035837569401679, 40.052709368002745 ], [ -75.03584121474465, 40.052719421567808 ], [ -75.035845071086698, 40.052729476514088 ], [ -75.035849110422021, 40.05273952947676 ], [ -75.035853307087805, 40.052749577146258 ], [ -75.035857637763868, 40.052759616268347 ], [ -75.035862075651849, 40.052769642605647 ], [ -75.035866595088791, 40.052779652848606 ], [ -75.035871171619164, 40.052789642815128 ], [ -75.03587577723701, 40.052799609140337 ], [ -75.035880389793647, 40.052809548597743 ], [ -75.035884981283246, 40.052819457822423 ], [ -75.035889526114644, 40.052829331704494 ], [ -75.03589400089561, 40.052839168790193 ], [ -75.035898378899788, 40.052848963041683 ], [ -75.035902633220488, 40.052858712922237 ], [ -75.03590674060959, 40.052868413377226 ], [ -75.035910795104044, 40.05287805851917 ], [ -75.035915076040524, 40.052887641432477 ], [ -75.035919584374383, 40.052897167545979 ], [ -75.035924300047711, 40.05290663998997 ], [ -75.035929206444578, 40.052916063778085 ], [ -75.035934285777927, 40.052925443896363 ], [ -75.03593951912508, 40.052934784402872 ], [ -75.035944891077591, 40.052944089438896 ], [ -75.035950381505486, 40.052953363935011 ], [ -75.035955973828933, 40.052962612004734 ], [ -75.035961651396008, 40.052971839561927 ], [ -75.035967394184681, 40.052981048836727 ], [ -75.035973186678504, 40.052990246670902 ], [ -75.035979008819425, 40.05299943619471 ], [ -75.035984845162943, 40.053008622449504 ], [ -75.035990677921745, 40.053017810421409 ], [ -75.035996488209207, 40.053027003268362 ], [ -75.036002258238, 40.053036205976341 ], [ -75.03600797018467, 40.053045424431652 ], [ -75.036013608712906, 40.053054660975143 ], [ -75.036019153656511, 40.053063921437648 ], [ -75.03602458722807, 40.053073210805266 ], [ -75.036180068577139, 40.053206176101106 ], [ -75.036376302599749, 40.053709637603021 ], [ -75.036361765829525, 40.05407302149991 ], [ -75.036229589497964, 40.0546726471825 ], [ -75.03453596822358, 40.057116368633807 ], [ -75.034735314576494, 40.057204217135386 ], [ -75.034576714379284, 40.057449881996938 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "TORRESDALE", "LISTNAME": "Torresdale", "MAPNAME": "Torresdale", "Shape_Leng": 35702.492498200001, "Shape_Area": 65136117.672600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.98315745245317, 40.054205765263575 ], [ -74.982664745748124, 40.053953811962202 ], [ -74.982547745741144, 40.053953811230635 ], [ -74.982200747753595, 40.053804812169616 ], [ -74.982020748094158, 40.053727812378305 ], [ -74.980026758903236, 40.053637812863528 ], [ -74.979733760591245, 40.053547813539808 ], [ -74.979713760446728, 40.053473813028305 ], [ -74.979693760309118, 40.05339981341325 ], [ -74.979561403237852, 40.053260203380987 ], [ -74.979547760859134, 40.053245813203873 ], [ -74.979464760856445, 40.053157813538341 ], [ -74.979092763482754, 40.052861814210296 ], [ -74.97895141446341, 40.052764769309981 ], [ -74.978556765109545, 40.052493814825439 ], [ -74.97841376602959, 40.052415814974097 ], [ -74.978184767662171, 40.052290814471363 ], [ -74.977921769077724, 40.052132814967401 ], [ -74.976279776283675, 40.050659816839392 ], [ -74.976010778293471, 40.050417816930832 ], [ -74.97551774230871, 40.049975738374037 ], [ -74.974994783061106, 40.049506818970201 ], [ -74.974685572670225, 40.049229294568683 ], [ -74.973979787950512, 40.048595820195089 ], [ -74.977433768894613, 40.045714820539921 ], [ -74.977844766484736, 40.045372820640594 ], [ -74.979327757391204, 40.04444782027511 ], [ -74.980260752600998, 40.043865820358555 ], [ -74.980777749132116, 40.043543820112454 ], [ -74.981460745352535, 40.042934820295514 ], [ -74.982768738536322, 40.041772820904299 ], [ -74.983183735338073, 40.041404820646306 ], [ -74.986571716434455, 40.038958820591894 ], [ -74.987639709900236, 40.038186820171994 ], [ -74.99019369550436, 40.036343819508666 ], [ -74.990983690533639, 40.035773819913786 ], [ -74.994091672400486, 40.033413818854001 ], [ -74.995294665149189, 40.032566818531969 ], [ -74.995379250330174, 40.032507487478711 ], [ -74.995884674673789, 40.032858800372551 ], [ -74.99894096545529, 40.035024106524034 ], [ -75.000305008193038, 40.036173821676719 ], [ -75.001026206348016, 40.036797682862826 ], [ -75.002505359564637, 40.038077149440454 ], [ -75.003610535198732, 40.039047955794736 ], [ -75.004836744046315, 40.040125036216544 ], [ -75.005556879760121, 40.04069943890233 ], [ -75.006332205509267, 40.041231948465295 ], [ -75.006872766898951, 40.041748303862036 ], [ -75.007860400790861, 40.042540814030382 ], [ -75.008670917966128, 40.043191178577892 ], [ -75.009591847981596, 40.043930118302015 ], [ -75.010920211145248, 40.044993116708568 ], [ -75.012243100821095, 40.046046920684475 ], [ -75.013485534880274, 40.047053559259361 ], [ -75.014102073855184, 40.047464128846507 ], [ -75.014106982451835, 40.047472338176192 ], [ -75.013292452161537, 40.048186192367382 ], [ -75.012364052698061, 40.048898678792618 ], [ -75.011578687192866, 40.049549748851298 ], [ -75.010198764582427, 40.050651167573363 ], [ -75.009108620088142, 40.051538022357271 ], [ -75.008295103934785, 40.052188400559622 ], [ -75.008284587134867, 40.05219499849391 ], [ -75.007963359870658, 40.052396543377576 ], [ -75.006150001643576, 40.053739443104277 ], [ -75.005656483748751, 40.054115827759297 ], [ -75.004793344993928, 40.054774093313398 ], [ -75.002986190949088, 40.055998999332409 ], [ -75.001124939411284, 40.057232892983627 ], [ -74.999860625480892, 40.057640804437881 ], [ -74.99942543471829, 40.057785034020931 ], [ -74.998273567090095, 40.058066748706842 ], [ -74.997025772069492, 40.058397702481273 ], [ -74.995643088536497, 40.058746029267645 ], [ -74.994069802812348, 40.059161937772657 ], [ -74.993026799937141, 40.059404972258974 ], [ -74.992076988705577, 40.059665699457128 ], [ -74.990920451704255, 40.060060637867387 ], [ -74.990423229747847, 40.060409541627564 ], [ -74.98851138123824, 40.061559551580011 ], [ -74.988340321314624, 40.061614834767603 ], [ -74.987940307026165, 40.061914831046188 ], [ -74.987094208130983, 40.062422441015698 ], [ -74.985608505619751, 40.063319749150253 ], [ -74.984973664032992, 40.06353110183661 ], [ -74.984171663580398, 40.06392648017362 ], [ -74.983237223624116, 40.064318665014866 ], [ -74.982361553755325, 40.064586455541296 ], [ -74.982355111240878, 40.064588425978449 ], [ -74.982117146624077, 40.064619069948428 ], [ -74.981008891449903, 40.06486154909247 ], [ -74.980696036541701, 40.064922339049808 ], [ -74.980700761007114, 40.064878804268801 ], [ -74.980704760656522, 40.064838804029606 ], [ -74.980716761173113, 40.064720803720625 ], [ -74.980729760939198, 40.064592804010402 ], [ -74.98080875986696, 40.064389804140561 ], [ -74.980896744182985, 40.064278665720131 ], [ -74.980903760033215, 40.064269804295925 ], [ -74.981020758625291, 40.063818804494915 ], [ -74.981137758060086, 40.063683804730445 ], [ -74.981138168485685, 40.063554261739831 ], [ -74.981138757353023, 40.063368805459113 ], [ -74.980903758706404, 40.063007805001192 ], [ -74.980903759022837, 40.062939167032539 ], [ -74.980903758260681, 40.062737805280847 ], [ -74.981079757695667, 40.062557805383101 ], [ -74.981079757708045, 40.06242280553392 ], [ -74.981070199589809, 40.062393314802286 ], [ -74.980987682832122, 40.062138710792141 ], [ -74.980962758272412, 40.062061805842156 ], [ -74.980962758443042, 40.061950020210951 ], [ -74.980962758039496, 40.061746806765456 ], [ -74.980845757870782, 40.061611806546878 ], [ -74.980845758482388, 40.061160806513115 ], [ -74.980669758833173, 40.060845806735095 ], [ -74.980376759945941, 40.060574807669653 ], [ -74.980376759770238, 40.060504557655712 ], [ -74.980376759591309, 40.060349807231454 ], [ -74.980855930686744, 40.05998175133869 ], [ -74.981442974906997, 40.05953082848653 ], [ -74.981549753726071, 40.059448808280109 ], [ -74.981568467094277, 40.059425816101907 ], [ -74.981842751687751, 40.059088807932106 ], [ -74.982140827975201, 40.058860169816469 ], [ -74.982370748799525, 40.058683808200804 ], [ -74.98289874674208, 40.05836780828345 ], [ -74.983015746168533, 40.058367808465931 ], [ -74.983308744052707, 40.058187808257408 ], [ -74.983868740990005, 40.057948807660416 ], [ -74.983909534157007, 40.057931325123015 ], [ -74.984127740296103, 40.057837807910154 ], [ -74.984363738432293, 40.057737808300971 ], [ -74.984803736533976, 40.057399807684128 ], [ -74.98486217662294, 40.057325429053684 ], [ -74.984891735505713, 40.057287808162521 ], [ -74.984891735754445, 40.056976808377819 ], [ -74.984891736138181, 40.056836808650509 ], [ -74.984715859601366, 40.056604737963163 ], [ -74.984481737779589, 40.056295808645899 ], [ -74.984445786900963, 40.056207421658513 ], [ -74.984300738474502, 40.055850809706726 ], [ -74.984188739018748, 40.055575809922999 ], [ -74.984201738658626, 40.05551681010224 ], [ -74.984197737811812, 40.05550380959523 ], [ -74.984188738666006, 40.055470809403104 ], [ -74.984188738631701, 40.055349809533027 ], [ -74.984071738822905, 40.055124810206735 ], [ -74.983995739146593, 40.055066809693251 ], [ -74.983971025431856, 40.055047208457587 ], [ -74.983966739865153, 40.055043810071822 ], [ -74.983930739259137, 40.055016810533679 ], [ -74.983902739361667, 40.05499480991223 ], [ -74.983887739301622, 40.054979810008035 ], [ -74.983836740273532, 40.054912810445934 ], [ -74.98355374143631, 40.054538811004043 ], [ -74.983519370108198, 40.054493318296011 ], [ -74.983485741906449, 40.054448811218549 ], [ -74.98347220636046, 40.054438417638927 ], [ -74.983229181632439, 40.054251793757757 ], [ -74.983192742246274, 40.054223811150997 ], [ -74.98315745245317, 40.054205765263575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "LEXINGTON_PARK", "LISTNAME": "Lexington Park", "MAPNAME": "Lexington Park", "Shape_Leng": 15293.613690100001, "Shape_Area": 11359376.6636 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.051192489393443, 40.049297413121351 ], [ -75.051248270007477, 40.049383456362726 ], [ -75.051168568759905, 40.050357414461637 ], [ -75.051099381873883, 40.05120287352289 ], [ -75.05093667819574, 40.052043439242759 ], [ -75.050453073658602, 40.052826793418113 ], [ -75.049849983447814, 40.053458117511504 ], [ -75.049188480857339, 40.054150572745264 ], [ -75.048397744578466, 40.05492610453669 ], [ -75.047614443320043, 40.055694322999493 ], [ -75.04666606660652, 40.056624407730752 ], [ -75.045933722175917, 40.057389203190866 ], [ -75.04523852777487, 40.058115181486301 ], [ -75.044642660370968, 40.058737418282917 ], [ -75.044212814003046, 40.059385422155138 ], [ -75.043832523459315, 40.060227380293021 ], [ -75.043324009932022, 40.06135318414978 ], [ -75.042893363772237, 40.062306566277492 ], [ -75.042374912805158, 40.063454294587189 ], [ -75.042138032224017, 40.063978680511077 ], [ -75.041837416834696, 40.064644144729378 ], [ -75.041703311959367, 40.064825774204763 ], [ -75.041385248999291, 40.064708148836601 ], [ -75.041179316580809, 40.06457531755148 ], [ -75.040786528589805, 40.064312174287323 ], [ -75.038612969422104, 40.062003030606547 ], [ -75.038320076499417, 40.061556919620948 ], [ -75.038130945934014, 40.060822739713252 ], [ -75.038099746071794, 40.060260321819179 ], [ -75.03824897903236, 40.058891854999715 ], [ -75.038438008761034, 40.058377230967182 ], [ -75.038433602505165, 40.058361671246317 ], [ -75.038600653358642, 40.057714672115587 ], [ -75.038708632124596, 40.056426187803041 ], [ -75.03945936817874, 40.055304754735779 ], [ -75.040028452993894, 40.054135637401387 ], [ -75.039966125321058, 40.053575442990521 ], [ -75.040221274085766, 40.053196322032363 ], [ -75.041534354854974, 40.051778942703393 ], [ -75.041515587663284, 40.050834637200452 ], [ -75.04213867759087, 40.050079046015483 ], [ -75.04516646875733, 40.048848496728567 ], [ -75.046642905430389, 40.048286557290901 ], [ -75.047528769978555, 40.048019902843038 ], [ -75.048442811681923, 40.048115075878009 ], [ -75.050462634770327, 40.049243204605048 ], [ -75.05075207889962, 40.049078374645518 ], [ -75.051191980636531, 40.049302333496669 ], [ -75.051192489393443, 40.049297413121351 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "RHAWNHURST", "LISTNAME": "Rhawnhurst", "MAPNAME": "Rhawnhurst", "Shape_Leng": 37982.440009400001, "Shape_Area": 56786859.453599997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.041703311959367, 40.064825774204763 ], [ -75.041837416834696, 40.064644144729378 ], [ -75.042138032224017, 40.063978680511077 ], [ -75.042374912805158, 40.063454294587189 ], [ -75.042893363772237, 40.062306566277492 ], [ -75.043324009932022, 40.06135318414978 ], [ -75.043832523459315, 40.060227380293021 ], [ -75.044212814003046, 40.059385422155138 ], [ -75.044642660370968, 40.058737418282917 ], [ -75.04523852777487, 40.058115181486301 ], [ -75.045933722175917, 40.057389203190866 ], [ -75.04666606660652, 40.056624407730752 ], [ -75.047614443320043, 40.055694322999493 ], [ -75.048397744578466, 40.05492610453669 ], [ -75.049188480857339, 40.054150572745264 ], [ -75.049849983447814, 40.053458117511504 ], [ -75.050453073658602, 40.052826793418113 ], [ -75.05093667819574, 40.052043439242759 ], [ -75.051099381873883, 40.05120287352289 ], [ -75.051168568759905, 40.050357414461637 ], [ -75.051248270007477, 40.049383456362726 ], [ -75.051192489393443, 40.049297413121351 ], [ -75.051310715886004, 40.048154148856192 ], [ -75.051436929028739, 40.047736026330483 ], [ -75.051640577699814, 40.047157730060512 ], [ -75.054414398756506, 40.044507414812294 ], [ -75.055756315887308, 40.045288388419337 ], [ -75.05641112292129, 40.045669891147689 ], [ -75.057080356888235, 40.046063169685524 ], [ -75.057735178857087, 40.046444664847115 ], [ -75.058390007060453, 40.046826155338792 ], [ -75.059916910259687, 40.047742959921123 ], [ -75.061430791639182, 40.048613669881775 ], [ -75.062449380895572, 40.049209606155259 ], [ -75.063483315943927, 40.049794449537337 ], [ -75.064152630487612, 40.050187686738035 ], [ -75.064852832238429, 40.050553038310042 ], [ -75.065390094220618, 40.050897413366243 ], [ -75.066104735761684, 40.051274534975022 ], [ -75.073299587952974, 40.055338392740552 ], [ -75.071591877549977, 40.05710642682601 ], [ -75.07045598038377, 40.058344279034486 ], [ -75.069200348246795, 40.059596490792735 ], [ -75.068750381458088, 40.060055112751328 ], [ -75.068064140819246, 40.060840036491861 ], [ -75.066923298766241, 40.062072115913608 ], [ -75.066897457583693, 40.06210002313717 ], [ -75.066480381324752, 40.06247931060981 ], [ -75.065631450292045, 40.063303917535663 ], [ -75.065116656737985, 40.063891546396228 ], [ -75.064705789833823, 40.064325995106678 ], [ -75.064475041404094, 40.064569983741016 ], [ -75.063590391431092, 40.065515244564089 ], [ -75.062996584779455, 40.066151313307095 ], [ -75.064113797025868, 40.066838043456805 ], [ -75.067326731230793, 40.068744694610977 ], [ -75.067768959938363, 40.068990875627001 ], [ -75.068843759802718, 40.069513111447883 ], [ -75.070415808059209, 40.070276121067423 ], [ -75.069779879969431, 40.070879568471732 ], [ -75.069302827810375, 40.071478011750955 ], [ -75.069285485589319, 40.071630000001761 ], [ -75.069371610872594, 40.07174521507217 ], [ -75.06951621242662, 40.071783247926895 ], [ -75.069021413843075, 40.072067714353921 ], [ -75.068883031939734, 40.071808056672147 ], [ -75.068638868990647, 40.071670243172349 ], [ -75.068699376136991, 40.071663134040328 ], [ -75.067590261021394, 40.071177390669277 ], [ -75.065502338860298, 40.070238141435148 ], [ -75.063321611782641, 40.071383872960674 ], [ -75.060954266048256, 40.072836895090248 ], [ -75.058405645422638, 40.074748793190288 ], [ -75.057220477731065, 40.073724814439139 ], [ -75.056318106647595, 40.073017279210696 ], [ -75.056068338966327, 40.073255908325336 ], [ -75.055771170218534, 40.073443016590758 ], [ -75.050390536141876, 40.076248412405754 ], [ -75.049748741385272, 40.076571074161784 ], [ -75.049034503580259, 40.076778548378002 ], [ -75.048185226876313, 40.076711678775808 ], [ -75.047419422459711, 40.076535116541514 ], [ -75.046773168045448, 40.076087647949294 ], [ -75.046075369206775, 40.075256149207874 ], [ -75.04526328840393, 40.074145494634735 ], [ -75.044341089605879, 40.073088188512507 ], [ -75.044158688955534, 40.072762319286866 ], [ -75.044037403074981, 40.072338900809065 ], [ -75.044074688260537, 40.071996782442874 ], [ -75.044861109762024, 40.070501239286735 ], [ -75.045102270433688, 40.070125693593106 ], [ -75.045294234598629, 40.069969982965198 ], [ -75.045473081168922, 40.06987289446981 ], [ -75.04577294180713, 40.06976161067012 ], [ -75.045944626027023, 40.069784285891991 ], [ -75.047367867763384, 40.070621064840452 ], [ -75.047912751259247, 40.070029116719994 ], [ -75.047624836034998, 40.069297013503856 ], [ -75.04738312024223, 40.068797340812978 ], [ -75.047313688344971, 40.068229887965167 ], [ -75.047498797413937, 40.067665872635622 ], [ -75.048216529369029, 40.066915688163519 ], [ -75.046387419011907, 40.065874417089432 ], [ -75.044973524641307, 40.065084111982934 ], [ -75.044716316948325, 40.06500486997421 ], [ -75.044484140362059, 40.064989289297017 ], [ -75.044114558696094, 40.06506117963297 ], [ -75.043689392999198, 40.065118179778537 ], [ -75.043459892570866, 40.06517839588922 ], [ -75.04301461477246, 40.06514974996518 ], [ -75.042423299467075, 40.065071629762464 ], [ -75.042020057455815, 40.064942909879328 ], [ -75.041990935826973, 40.0649321407261 ], [ -75.041703311959367, 40.064825774204763 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "FOX_CHASE", "LISTNAME": "Fox Chase", "MAPNAME": "Fox Chase", "Shape_Leng": 35027.5171787, "Shape_Area": 54942234.806500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.067520766698451, 40.084936154500085 ], [ -75.067120063524712, 40.084883321130754 ], [ -75.063354946536933, 40.084854546803285 ], [ -75.063027293630867, 40.084826421200617 ], [ -75.062671309576231, 40.084749293117525 ], [ -75.06232900966053, 40.084523085892016 ], [ -75.063654157869124, 40.083603963063879 ], [ -75.068481653979447, 40.080196928862712 ], [ -75.067621242802559, 40.078861339834987 ], [ -75.067137866419301, 40.078299691201828 ], [ -75.066202001766101, 40.077829250157919 ], [ -75.067280973728543, 40.075549887031279 ], [ -75.068884771487305, 40.072304241357536 ], [ -75.069021413843075, 40.072067714353921 ], [ -75.06951621242662, 40.071783247926895 ], [ -75.069371610872594, 40.07174521507217 ], [ -75.069285485589319, 40.071630000001761 ], [ -75.069302827810375, 40.071478011750955 ], [ -75.069779879969431, 40.070879568471732 ], [ -75.070415808059209, 40.070276121067423 ], [ -75.068843759802718, 40.069513111447883 ], [ -75.067768959938363, 40.068990875627001 ], [ -75.067326731230793, 40.068744694610977 ], [ -75.064113797025868, 40.066838043456805 ], [ -75.062996584779455, 40.066151313307095 ], [ -75.063590391431092, 40.065515244564089 ], [ -75.064475041404094, 40.064569983741016 ], [ -75.064705789833823, 40.064325995106678 ], [ -75.065116656737985, 40.063891546396228 ], [ -75.065631450292045, 40.063303917535663 ], [ -75.066480381324752, 40.06247931060981 ], [ -75.066897457583693, 40.06210002313717 ], [ -75.066923298766241, 40.062072115913608 ], [ -75.068064140819246, 40.060840036491861 ], [ -75.068750381458088, 40.060055112751328 ], [ -75.069200348246795, 40.059596490792735 ], [ -75.07045598038377, 40.058344279034486 ], [ -75.071591877549977, 40.05710642682601 ], [ -75.073299587952974, 40.055338392740552 ], [ -75.074069541067331, 40.055825449145246 ], [ -75.075029293513438, 40.056408455591985 ], [ -75.076718026196218, 40.057386002915472 ], [ -75.077754235299665, 40.057919275774424 ], [ -75.078045016994608, 40.05809766828682 ], [ -75.078809448605782, 40.058516539966263 ], [ -75.079646241601765, 40.059017428468849 ], [ -75.080522252578575, 40.059543037199191 ], [ -75.081342457394172, 40.06002611022646 ], [ -75.082292697496285, 40.060562446678013 ], [ -75.083124301211782, 40.061034427925797 ], [ -75.083522124446773, 40.061324606171411 ], [ -75.083542864358321, 40.061333842916603 ], [ -75.083550326868334, 40.061969681557358 ], [ -75.083552902866515, 40.062792824894466 ], [ -75.083555558217014, 40.063640951248452 ], [ -75.083488062127046, 40.064569759903591 ], [ -75.083410001072181, 40.06553962947946 ], [ -75.084023803543019, 40.066690802438373 ], [ -75.085510247996027, 40.067470497154609 ], [ -75.086364174389388, 40.067891565899735 ], [ -75.087303954490508, 40.068343279636032 ], [ -75.088394611941268, 40.068898843173628 ], [ -75.089105497693723, 40.06926094629933 ], [ -75.089834451250283, 40.069632244630554 ], [ -75.091266659201224, 40.07036172402551 ], [ -75.092070614150501, 40.070771195254942 ], [ -75.092688499686716, 40.071085890256128 ], [ -75.093836014298603, 40.071670314427564 ], [ -75.093913676443506, 40.071708377156583 ], [ -75.093729406142486, 40.071888097298832 ], [ -75.093717581918625, 40.071893063449153 ], [ -75.093405583176789, 40.072030062256296 ], [ -75.093122583952464, 40.072335060602796 ], [ -75.09307758379498, 40.072377060565294 ], [ -75.091543589047262, 40.07390305445621 ], [ -75.090315593899817, 40.075116049415847 ], [ -75.089826595318129, 40.075601047668002 ], [ -75.089086597597259, 40.076375044615958 ], [ -75.087896601315748, 40.077607039669857 ], [ -75.08690460482751, 40.078649036563313 ], [ -75.086859604720075, 40.078626036386993 ], [ -75.084451611927577, 40.080949026493961 ], [ -75.083413615334791, 40.081954022237142 ], [ -75.08245461800243, 40.08288501914479 ], [ -75.081187622497296, 40.084117014128346 ], [ -75.078808626406115, 40.085278006130046 ], [ -75.077803628288194, 40.085771002982945 ], [ -75.076429632544802, 40.087193997925255 ], [ -75.07641463202566, 40.08720899722428 ], [ -75.076391632764199, 40.087227997561065 ], [ -75.076383633113451, 40.087234997229054 ], [ -75.076368632992285, 40.087250997583453 ], [ -75.076361632964407, 40.087265997382637 ], [ -75.076247633141662, 40.087377996787538 ], [ -75.076208632898528, 40.087417996522227 ], [ -75.076194586228567, 40.087432544040567 ], [ -75.074370350431636, 40.087787637936209 ], [ -75.07385500024057, 40.087745093831316 ], [ -75.074256362429068, 40.087361222683114 ], [ -75.074302297806639, 40.087241013415898 ], [ -75.072556190474558, 40.086952230937129 ], [ -75.072111440099192, 40.086808730481266 ], [ -75.071619154506578, 40.086638228218206 ], [ -75.06802285673713, 40.085062706789657 ], [ -75.067520766698451, 40.084936154500085 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "BURHOLME", "LISTNAME": "Burholme", "MAPNAME": "Burholme", "Shape_Leng": 18179.223340600001, "Shape_Area": 10450451.3157 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.086401849242804, 40.05388774256199 ], [ -75.086412757010919, 40.053873948350251 ], [ -75.086418630753627, 40.053877427390454 ], [ -75.087846912864578, 40.054718260858827 ], [ -75.08881294804749, 40.05525312699632 ], [ -75.089703718214778, 40.055746306000806 ], [ -75.091420858865845, 40.056741537254027 ], [ -75.092592945684487, 40.056926261365511 ], [ -75.093255833616311, 40.057020396552844 ], [ -75.0934883651354, 40.057254293172058 ], [ -75.093481546356017, 40.057260079601271 ], [ -75.093550546140747, 40.05733207921319 ], [ -75.092626550020796, 40.058281075297764 ], [ -75.092611550130059, 40.058301075446202 ], [ -75.092253550992581, 40.05866307403987 ], [ -75.092008551868403, 40.058923072607179 ], [ -75.091457553495587, 40.059488070683393 ], [ -75.091383554740119, 40.059564070515798 ], [ -75.091131554771593, 40.059823069179956 ], [ -75.091092555412374, 40.059864069109381 ], [ -75.090460557323524, 40.060529066962786 ], [ -75.090414557495919, 40.060582066769619 ], [ -75.089704560543211, 40.061299063862833 ], [ -75.088964563380628, 40.062043060699914 ], [ -75.088783609426443, 40.062227082576079 ], [ -75.088669564790678, 40.062343059200153 ], [ -75.088194566182167, 40.062821057782593 ], [ -75.087423569044134, 40.063600054095232 ], [ -75.087873568826225, 40.063851055713279 ], [ -75.088062568938696, 40.063957055446977 ], [ -75.088758569490025, 40.064343057714964 ], [ -75.088910569176591, 40.064433057937777 ], [ -75.089270569451628, 40.064645058330122 ], [ -75.089376568684912, 40.06470605871155 ], [ -75.089750568975234, 40.064923059909496 ], [ -75.090368569187305, 40.065286060740071 ], [ -75.091781569622739, 40.066111063919038 ], [ -75.091917569998458, 40.066190064813881 ], [ -75.093221570923589, 40.066936067755286 ], [ -75.094946571686364, 40.067948071542205 ], [ -75.096632572558008, 40.068933075286985 ], [ -75.096712126873129, 40.068978879177543 ], [ -75.096731572177958, 40.068990074824221 ], [ -75.096212574148211, 40.069493073095295 ], [ -75.095182577431302, 40.07050006877769 ], [ -75.094000582103448, 40.071687064649922 ], [ -75.093817582177778, 40.071851063351041 ], [ -75.093729406142486, 40.071888097298832 ], [ -75.093913676443506, 40.071708377156583 ], [ -75.093836014298603, 40.071670314427564 ], [ -75.092688499686716, 40.071085890256128 ], [ -75.092070614150501, 40.070771195254942 ], [ -75.091266659201224, 40.07036172402551 ], [ -75.089834451250283, 40.069632244630554 ], [ -75.089105497693723, 40.06926094629933 ], [ -75.088394611941268, 40.068898843173628 ], [ -75.087303954490508, 40.068343279636032 ], [ -75.086364174389388, 40.067891565899735 ], [ -75.085510247996027, 40.067470497154609 ], [ -75.084023803543019, 40.066690802438373 ], [ -75.083410001072181, 40.06553962947946 ], [ -75.083488062127046, 40.064569759903591 ], [ -75.083555558217014, 40.063640951248452 ], [ -75.083552902866515, 40.062792824894466 ], [ -75.083550326868334, 40.061969681557358 ], [ -75.083542864358321, 40.061333842916603 ], [ -75.083522124446773, 40.061324606171411 ], [ -75.083832398715373, 40.060848815253671 ], [ -75.084977744630663, 40.058952436819318 ], [ -75.085780655271222, 40.057546188461096 ], [ -75.085806494008125, 40.057239475208348 ], [ -75.085850575365384, 40.056117217351677 ], [ -75.085906505834402, 40.055504512953554 ], [ -75.085873905854399, 40.054469926013446 ], [ -75.086401849242804, 40.05388774256199 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "OXFORD_CIRCLE", "LISTNAME": "Oxford Circle", "MAPNAME": "Oxford Circle", "Shape_Leng": 31820.622326600002, "Shape_Area": 59779885.457599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.073299587952974, 40.055338392740552 ], [ -75.066104735761684, 40.051274534975022 ], [ -75.065390094220618, 40.050897413366243 ], [ -75.064852832238429, 40.050553038310042 ], [ -75.064152630487612, 40.050187686738035 ], [ -75.063483315943927, 40.049794449537337 ], [ -75.062449380895572, 40.049209606155259 ], [ -75.061430791639182, 40.048613669881775 ], [ -75.059916910259687, 40.047742959921123 ], [ -75.058390007060453, 40.046826155338792 ], [ -75.057735178857087, 40.046444664847115 ], [ -75.057080356888235, 40.046063169685524 ], [ -75.05641112292129, 40.045669891147689 ], [ -75.055756315887308, 40.045288388419337 ], [ -75.054414398756506, 40.044507414812294 ], [ -75.061319414145544, 40.038016079429369 ], [ -75.061814884248264, 40.037494300946761 ], [ -75.062151057631823, 40.037305660944 ], [ -75.062450741873562, 40.037116166971209 ], [ -75.062824511591714, 40.036900333816028 ], [ -75.063230322152094, 40.036797537149816 ], [ -75.063601866047463, 40.03663779349322 ], [ -75.064260822177914, 40.036452853977003 ], [ -75.064334193943566, 40.036475576811334 ], [ -75.065185672347525, 40.036277296361838 ], [ -75.066954447052566, 40.035865384434189 ], [ -75.068279739804524, 40.035556728816019 ], [ -75.069444637745264, 40.035285414442328 ], [ -75.071231645074548, 40.034869178053448 ], [ -75.072239492733999, 40.034639101787491 ], [ -75.073325505324746, 40.034391336672371 ], [ -75.074621578811318, 40.034095630293699 ], [ -75.075297160258472, 40.033938912272831 ], [ -75.076100698696465, 40.033752505385046 ], [ -75.077004878263764, 40.033542742508409 ], [ -75.078130209755429, 40.033281662956966 ], [ -75.079557139914314, 40.032950592890899 ], [ -75.081072440742801, 40.032604014344685 ], [ -75.082115447365254, 40.032373178944113 ], [ -75.082883290046794, 40.032203235728971 ], [ -75.084108187779762, 40.031932121931817 ], [ -75.084665677279588, 40.031744732814502 ], [ -75.084682709027831, 40.031754536760289 ], [ -75.084832117533495, 40.032351935520751 ], [ -75.084905781870134, 40.032922253404614 ], [ -75.085313069211821, 40.033523768138259 ], [ -75.087105693537239, 40.034774583753922 ], [ -75.087626283700345, 40.035686206906504 ], [ -75.087820941022883, 40.036103629103643 ], [ -75.087930744875592, 40.036238896144866 ], [ -75.088147464559498, 40.036583094674455 ], [ -75.088698743620213, 40.037930959680814 ], [ -75.088707669084826, 40.03795278054919 ], [ -75.088792530259198, 40.038234936566916 ], [ -75.088603928793162, 40.039130119106289 ], [ -75.088287591071222, 40.040346772304602 ], [ -75.088194152097955, 40.040772264198075 ], [ -75.088258689375607, 40.041083442180422 ], [ -75.088402533574353, 40.041717625759951 ], [ -75.0884577276031, 40.041919393294535 ], [ -75.08865286064831, 40.042773707521341 ], [ -75.089002575665859, 40.044079191958801 ], [ -75.088901338708439, 40.044378349794833 ], [ -75.088353720492762, 40.045572919510036 ], [ -75.087974179601915, 40.046396057325182 ], [ -75.087683265604909, 40.047149566542345 ], [ -75.086998397071184, 40.048626111664738 ], [ -75.086686181000985, 40.049294119395363 ], [ -75.086228375155528, 40.050069054912527 ], [ -75.086056200310821, 40.050881774048108 ], [ -75.086706028414554, 40.052242658169007 ], [ -75.086932818494645, 40.052788362574518 ], [ -75.086953307385272, 40.052968986044149 ], [ -75.086944162872328, 40.053201906974692 ], [ -75.086412757010919, 40.053873948350251 ], [ -75.086401849242804, 40.05388774256199 ], [ -75.085873905854399, 40.054469926013446 ], [ -75.085906505834402, 40.055504512953554 ], [ -75.085850575365384, 40.056117217351677 ], [ -75.085806494008125, 40.057239475208348 ], [ -75.085780655271222, 40.057546188461096 ], [ -75.084977744630663, 40.058952436819318 ], [ -75.083832398715373, 40.060848815253671 ], [ -75.083522124446773, 40.061324606171411 ], [ -75.083124301211782, 40.061034427925797 ], [ -75.082292697496285, 40.060562446678013 ], [ -75.081342457394172, 40.06002611022646 ], [ -75.080522252578575, 40.059543037199191 ], [ -75.079646241601765, 40.059017428468849 ], [ -75.078809448605782, 40.058516539966263 ], [ -75.078045016994608, 40.05809766828682 ], [ -75.077754235299665, 40.057919275774424 ], [ -75.076718026196218, 40.057386002915472 ], [ -75.075029293513438, 40.056408455591985 ], [ -75.074069541067331, 40.055825449145246 ], [ -75.073299587952974, 40.055338392740552 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "SUMMERDALE", "LISTNAME": "Summerdale", "MAPNAME": "Summerdale", "Shape_Leng": 12065.377599, "Shape_Area": 7236096.7609299989 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.084682709027831, 40.031754536760289 ], [ -75.084760780260211, 40.031680215715312 ], [ -75.085321938023469, 40.031463599724177 ], [ -75.086119305210488, 40.031026582871512 ], [ -75.086624471928232, 40.030749707921466 ], [ -75.087208151392943, 40.030429795232365 ], [ -75.087968285888238, 40.030013294187079 ], [ -75.088883490473606, 40.029514864862612 ], [ -75.089679798932522, 40.029081176885505 ], [ -75.090661823827844, 40.02854520416362 ], [ -75.091213037883108, 40.028244351873084 ], [ -75.091923775021286, 40.027856426916507 ], [ -75.092302011054343, 40.027649978952319 ], [ -75.093517039127093, 40.02698677849483 ], [ -75.094284756697505, 40.026567720561204 ], [ -75.095491546907681, 40.026272775565396 ], [ -75.09661825984017, 40.026373322465297 ], [ -75.097763676074734, 40.026821973629787 ], [ -75.09889457166976, 40.027642795234421 ], [ -75.098650906682536, 40.027870765478077 ], [ -75.098286907694273, 40.028229261466528 ], [ -75.097922903721269, 40.028587755370168 ], [ -75.097524242153895, 40.029018827747734 ], [ -75.096765380113069, 40.029710637658397 ], [ -75.096087951594953, 40.030420776966537 ], [ -75.095571741565465, 40.030961900511393 ], [ -75.095143231483675, 40.031411082553099 ], [ -75.094386420552738, 40.032204385299885 ], [ -75.0939372316343, 40.032624493363855 ], [ -75.093723822178887, 40.032873942369044 ], [ -75.093273094101235, 40.033333148835446 ], [ -75.092902486913133, 40.033696367865382 ], [ -75.092665167110852, 40.033906125392811 ], [ -75.092053401528034, 40.034576849833122 ], [ -75.091656580717896, 40.034959026176821 ], [ -75.091310624756872, 40.035342378865501 ], [ -75.090832898184672, 40.035840087860556 ], [ -75.090595564511361, 40.036049840197236 ], [ -75.09027502970487, 40.036433778708236 ], [ -75.089801119543708, 40.036833732351504 ], [ -75.089427408807865, 40.037275141126699 ], [ -75.08871460853878, 40.037923939737347 ], [ -75.088698743620213, 40.037930959680814 ], [ -75.088147464559498, 40.036583094674455 ], [ -75.087930744875592, 40.036238896144866 ], [ -75.087820941022883, 40.036103629103643 ], [ -75.087626283700345, 40.035686206906504 ], [ -75.087105693537239, 40.034774583753922 ], [ -75.085313069211821, 40.033523768138259 ], [ -75.084905781870134, 40.032922253404614 ], [ -75.084832117533495, 40.032351935520751 ], [ -75.084682709027831, 40.031754536760289 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "CRESCENTVILLE", "LISTNAME": "Crescentville", "MAPNAME": "Crescentville", "Shape_Leng": 18197.139198199999, "Shape_Area": 16230908.784 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.088901338708439, 40.044378349794833 ], [ -75.089002575665859, 40.044079191958801 ], [ -75.08865286064831, 40.042773707521341 ], [ -75.0884577276031, 40.041919393294535 ], [ -75.088402533574353, 40.041717625759951 ], [ -75.088258689375607, 40.041083442180422 ], [ -75.088194152097955, 40.040772264198075 ], [ -75.088287591071222, 40.040346772304602 ], [ -75.088603928793162, 40.039130119106289 ], [ -75.088792530259198, 40.038234936566916 ], [ -75.088707669084826, 40.03795278054919 ], [ -75.088698743620213, 40.037930959680814 ], [ -75.08871460853878, 40.037923939737347 ], [ -75.089427408807865, 40.037275141126699 ], [ -75.089801119543708, 40.036833732351504 ], [ -75.09027502970487, 40.036433778708236 ], [ -75.090595564511361, 40.036049840197236 ], [ -75.090832898184672, 40.035840087860556 ], [ -75.091310624756872, 40.035342378865501 ], [ -75.091656580717896, 40.034959026176821 ], [ -75.092053401528034, 40.034576849833122 ], [ -75.092665167110852, 40.033906125392811 ], [ -75.092902486913133, 40.033696367865382 ], [ -75.093273094101235, 40.033333148835446 ], [ -75.093723822178887, 40.032873942369044 ], [ -75.0939372316343, 40.032624493363855 ], [ -75.094386420552738, 40.032204385299885 ], [ -75.095143231483675, 40.031411082553099 ], [ -75.095571741565465, 40.030961900511393 ], [ -75.096087951594953, 40.030420776966537 ], [ -75.096765380113069, 40.029710637658397 ], [ -75.097524242153895, 40.029018827747734 ], [ -75.097922903721269, 40.028587755370168 ], [ -75.098286907694273, 40.028229261466528 ], [ -75.098650906682536, 40.027870765478077 ], [ -75.09889457166976, 40.027642795234421 ], [ -75.099753689840441, 40.028194291553461 ], [ -75.100345030896278, 40.028573883682384 ], [ -75.100951491324992, 40.028963174118793 ], [ -75.101683678657565, 40.029433158707974 ], [ -75.103123541887385, 40.029789207090474 ], [ -75.104239988345611, 40.029735236723191 ], [ -75.104300964367823, 40.030054500972511 ], [ -75.103907058005049, 40.030586078216622 ], [ -75.103184055994078, 40.031317857732255 ], [ -75.102382845577452, 40.032128770404569 ], [ -75.101807075230056, 40.03270080022223 ], [ -75.101150906174738, 40.033352691025037 ], [ -75.102436762374865, 40.034062218143468 ], [ -75.103377972306888, 40.034586978482551 ], [ -75.104009616515327, 40.034924787864476 ], [ -75.104665918955746, 40.035349363212518 ], [ -75.103696257031672, 40.036313824251827 ], [ -75.102826506035257, 40.037178880508471 ], [ -75.101966994400286, 40.038056373033243 ], [ -75.101065017812999, 40.038897583145847 ], [ -75.100312328037859, 40.03950517776952 ], [ -75.099647025591025, 40.040028583656756 ], [ -75.098978347245207, 40.040638109720234 ], [ -75.097952344453461, 40.041422558619182 ], [ -75.097234483998122, 40.04204795367103 ], [ -75.096675155581821, 40.042535226025009 ], [ -75.095504927449312, 40.043779654134426 ], [ -75.094831969551691, 40.044477095129317 ], [ -75.094233656200842, 40.045097161295175 ], [ -75.093656328270228, 40.045680439583528 ], [ -75.093065867026269, 40.046276971936415 ], [ -75.092006375003393, 40.045794438431578 ], [ -75.091277282800959, 40.045462372746073 ], [ -75.09037812607508, 40.045052838998068 ], [ -75.089731296930239, 40.044758223739443 ], [ -75.088901338708439, 40.044378349794833 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "LAWNDALE", "LISTNAME": "Lawndale", "MAPNAME": "Lawndale", "Shape_Leng": 32758.368098, "Shape_Area": 38060419.836599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.086412757010919, 40.053873948350251 ], [ -75.086944162872328, 40.053201906974692 ], [ -75.086953307385272, 40.052968986044149 ], [ -75.086932818494645, 40.052788362574518 ], [ -75.086706028414554, 40.052242658169007 ], [ -75.086056200310821, 40.050881774048108 ], [ -75.086228375155528, 40.050069054912527 ], [ -75.086686181000985, 40.049294119395363 ], [ -75.086998397071184, 40.048626111664738 ], [ -75.087683265604909, 40.047149566542345 ], [ -75.087974179601915, 40.046396057325182 ], [ -75.088353720492762, 40.045572919510036 ], [ -75.088901338708439, 40.044378349794833 ], [ -75.089731296930239, 40.044758223739443 ], [ -75.09037812607508, 40.045052838998068 ], [ -75.091277282800959, 40.045462372746073 ], [ -75.092006375003393, 40.045794438431578 ], [ -75.093065867026269, 40.046276971936415 ], [ -75.093656328270228, 40.045680439583528 ], [ -75.094233656200842, 40.045097161295175 ], [ -75.094831969551691, 40.044477095129317 ], [ -75.095504927449312, 40.043779654134426 ], [ -75.096675155581821, 40.042535226025009 ], [ -75.097234483998122, 40.04204795367103 ], [ -75.097952344453461, 40.041422558619182 ], [ -75.098978347245207, 40.040638109720234 ], [ -75.099647025591025, 40.040028583656756 ], [ -75.100312328037859, 40.03950517776952 ], [ -75.101065017812999, 40.038897583145847 ], [ -75.101966994400286, 40.038056373033243 ], [ -75.102826506035257, 40.037178880508471 ], [ -75.103696257031672, 40.036313824251827 ], [ -75.104665918955746, 40.035349363212518 ], [ -75.104009616515327, 40.034924787864476 ], [ -75.103377972306888, 40.034586978482551 ], [ -75.102436762374865, 40.034062218143468 ], [ -75.101150906174738, 40.033352691025037 ], [ -75.101807075230056, 40.03270080022223 ], [ -75.102382845577452, 40.032128770404569 ], [ -75.103184055994078, 40.031317857732255 ], [ -75.103907058005049, 40.030586078216622 ], [ -75.104300964367823, 40.030054500972511 ], [ -75.104239988345611, 40.029735236723191 ], [ -75.104921168550362, 40.029531629722953 ], [ -75.106152337133025, 40.029163615520524 ], [ -75.107198944245795, 40.028818830323267 ], [ -75.108476401450417, 40.028397977384301 ], [ -75.110062931904778, 40.027875275254665 ], [ -75.111695049224622, 40.027440933218806 ], [ -75.112774703239069, 40.027273871990865 ], [ -75.112764331134116, 40.027386134350436 ], [ -75.112555576510701, 40.027919923827376 ], [ -75.112109340465423, 40.027957396269045 ], [ -75.111718679591704, 40.028026223855925 ], [ -75.111170200840817, 40.028663387392569 ], [ -75.110995814042482, 40.029025162198181 ], [ -75.110861399043813, 40.029488376938453 ], [ -75.111045659625276, 40.030065655126187 ], [ -75.111164758173018, 40.030514134582141 ], [ -75.111020228040317, 40.03186568353297 ], [ -75.111028171845007, 40.032251447747235 ], [ -75.110824492315103, 40.033306674683217 ], [ -75.110918406061799, 40.033727795954313 ], [ -75.111158256920092, 40.034336430116042 ], [ -75.111541299727733, 40.034723451595646 ], [ -75.112081504704577, 40.035107100768577 ], [ -75.112451708838847, 40.035973327714451 ], [ -75.113169101496766, 40.036496422867586 ], [ -75.113430574936061, 40.036775342976519 ], [ -75.113787640455953, 40.037279161076079 ], [ -75.114071900035668, 40.038110028685615 ], [ -75.114325770694549, 40.038936898415038 ], [ -75.114533652348101, 40.039829852104866 ], [ -75.11433406548818, 40.040164274324852 ], [ -75.113972102669777, 40.040525430457038 ], [ -75.113388922212508, 40.041458612532885 ], [ -75.112904557470969, 40.041947936977245 ], [ -75.112464551434229, 40.042659501247456 ], [ -75.112278100452201, 40.0433563242483 ], [ -75.112078490912239, 40.043690742474041 ], [ -75.11205517177298, 40.04370429084598 ], [ -75.111845544000914, 40.043941510903139 ], [ -75.111434265622549, 40.044210771848093 ], [ -75.11113967854125, 40.044424035777787 ], [ -75.111077340525654, 40.044554623021462 ], [ -75.111081744232436, 40.044686743725002 ], [ -75.111143069533014, 40.044827505715382 ], [ -75.111183331447279, 40.045019125206046 ], [ -75.111232273226648, 40.045232946293758 ], [ -75.111281500232323, 40.04543944043786 ], [ -75.111327305813816, 40.04573386835137 ], [ -75.111309505317649, 40.045946156947011 ], [ -75.111324997801105, 40.046283894636396 ], [ -75.111276597317186, 40.046546820800621 ], [ -75.111133417051434, 40.046792901591374 ], [ -75.111100505260779, 40.046836900394737 ], [ -75.110983495873896, 40.046770144422332 ], [ -75.11086849512084, 40.046703144347276 ], [ -75.11072949509682, 40.046623144082126 ], [ -75.109429495399226, 40.045875140407794 ], [ -75.109404495239858, 40.045841141095714 ], [ -75.109259495230177, 40.045919140537983 ], [ -75.109297495785526, 40.046025139923024 ], [ -75.109020498191384, 40.046642138664815 ], [ -75.108908498292081, 40.04682713767248 ], [ -75.108758498909978, 40.047064136929492 ], [ -75.108603499859626, 40.047299136083915 ], [ -75.108441501202506, 40.047531135833196 ], [ -75.108273501828336, 40.047760134795311 ], [ -75.108090503011283, 40.047983133676581 ], [ -75.107888504164777, 40.048196133522467 ], [ -75.107673504249902, 40.04840013272144 ], [ -75.10744850567805, 40.048600131607941 ], [ -75.107224506098788, 40.048799130400155 ], [ -75.107031506428825, 40.048971130045729 ], [ -75.107000507511955, 40.048998129708352 ], [ -75.10677150773347, 40.049195128567668 ], [ -75.106529508437333, 40.049381128105473 ], [ -75.106268509895784, 40.049549127007609 ], [ -75.105992510305455, 40.04970712551178 ], [ -75.105721511631074, 40.049867124363104 ], [ -75.105451512054032, 40.05003012350906 ], [ -75.105183512504126, 40.050193123050121 ], [ -75.104912513734504, 40.050356121407468 ], [ -75.104799514494445, 40.050423121051509 ], [ -75.104643514092089, 40.050518120901792 ], [ -75.104566514884596, 40.050564120163699 ], [ -75.104372514997323, 40.050681119838423 ], [ -75.104100515958621, 40.05084311841518 ], [ -75.103827516945728, 40.051004117525295 ], [ -75.103555517898869, 40.051165116528814 ], [ -75.103282518924217, 40.051325115160743 ], [ -75.103256518225322, 40.051340115589255 ], [ -75.103228518175314, 40.05135611513748 ], [ -75.103004518559729, 40.051476114663544 ], [ -75.102724519728042, 40.051625113129255 ], [ -75.102443520666185, 40.051774112214027 ], [ -75.102411521075993, 40.051793112623493 ], [ -75.102169521732961, 40.05193211111029 ], [ -75.101897522219431, 40.052092110712046 ], [ -75.101629522915118, 40.05225610969682 ], [ -75.101365523801576, 40.052424108092609 ], [ -75.101103524740566, 40.052592107882553 ], [ -75.100933525123523, 40.052700107243652 ], [ -75.100894525496386, 40.052724106920849 ], [ -75.100838525172392, 40.052760106383118 ], [ -75.100799525835527, 40.05278310589209 ], [ -75.100571526207261, 40.052925105507938 ], [ -75.100301526940555, 40.053086104536099 ], [ -75.10024852658654, 40.053115104337301 ], [ -75.100026527489362, 40.053242103117718 ], [ -75.099828528685023, 40.053353102363275 ], [ -75.099748529010782, 40.053397102012468 ], [ -75.099470529603622, 40.053551100998327 ], [ -75.099192530451759, 40.053704100102273 ], [ -75.098914531229028, 40.053860098994818 ], [ -75.098638531383841, 40.05401509819545 ], [ -75.09836253258419, 40.054170097686772 ], [ -75.098084533382504, 40.054325096314919 ], [ -75.097808533958883, 40.054481095564448 ], [ -75.097718534222878, 40.054532094654817 ], [ -75.097533534578901, 40.054637094745615 ], [ -75.097523534050637, 40.054643094460346 ], [ -75.09725853469385, 40.0547940934309 ], [ -75.096983535427867, 40.054952092547538 ], [ -75.096709536200891, 40.055110091607773 ], [ -75.096438536971263, 40.055269090109697 ], [ -75.096167537924373, 40.055430089197685 ], [ -75.095898538989246, 40.055594088372132 ], [ -75.095631539407947, 40.055760087484025 ], [ -75.095358540075424, 40.055909086336712 ], [ -75.095212540528124, 40.056005086270993 ], [ -75.095076541720616, 40.056092085184304 ], [ -75.094839542307895, 40.05625608450805 ], [ -75.094718196164692, 40.056333370675993 ], [ -75.09467154273257, 40.056363084175295 ], [ -75.094564543172964, 40.05643208343357 ], [ -75.094313543265585, 40.056596082463521 ], [ -75.094191543808464, 40.056680081911253 ], [ -75.094054544487619, 40.056772081603313 ], [ -75.093699545550166, 40.057075080209998 ], [ -75.0934883651354, 40.057254293172058 ], [ -75.093255833616311, 40.057020396552844 ], [ -75.092592945684487, 40.056926261365511 ], [ -75.091420858865845, 40.056741537254027 ], [ -75.089703718214778, 40.055746306000806 ], [ -75.08881294804749, 40.05525312699632 ], [ -75.087846912864578, 40.054718260858827 ], [ -75.086418630753627, 40.053877427390454 ], [ -75.086412757010919, 40.053873948350251 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "NORTHWOOD", "LISTNAME": "Northwood", "MAPNAME": "Northwood", "Shape_Leng": 27334.122089299999, "Shape_Area": 28028130.740600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.081357135361742, 40.026316423913279 ], [ -75.081996726895198, 40.025780441312754 ], [ -75.082720389937705, 40.02513357865034 ], [ -75.083233781019445, 40.024621802571907 ], [ -75.083919943490656, 40.023897334059555 ], [ -75.084422999369579, 40.023349195911059 ], [ -75.085670134136578, 40.022095979593573 ], [ -75.086329238111418, 40.021461162803369 ], [ -75.086841866308532, 40.020967412693707 ], [ -75.087942452586944, 40.019855243679629 ], [ -75.088568437434404, 40.019165471374372 ], [ -75.089180553853495, 40.018529548406676 ], [ -75.089729087061173, 40.017978579182767 ], [ -75.09066103704248, 40.017010811469817 ], [ -75.091682560872755, 40.015922496236982 ], [ -75.092278281149831, 40.015296578139655 ], [ -75.093439361249978, 40.015034514915712 ], [ -75.094340908599875, 40.01480255299721 ], [ -75.094396724345359, 40.014784222309927 ], [ -75.0943988481513, 40.01478795576746 ], [ -75.095845114220737, 40.015715773268759 ], [ -75.097166990151706, 40.015987513838454 ], [ -75.097749450225891, 40.016040189860092 ], [ -75.098128802897818, 40.016162291410048 ], [ -75.098776388317646, 40.016343768023958 ], [ -75.099440437551465, 40.016310995900604 ], [ -75.100303229505016, 40.016087984940469 ], [ -75.100972478347686, 40.016031844941814 ], [ -75.102508035055507, 40.016017638463708 ], [ -75.103546235829413, 40.016130290187682 ], [ -75.105070559235855, 40.016306931584424 ], [ -75.106732026659344, 40.016429469561523 ], [ -75.107234701778395, 40.01670002063512 ], [ -75.107243463940378, 40.016716453495164 ], [ -75.107565610851893, 40.017320660613613 ], [ -75.107435570562771, 40.017904673387797 ], [ -75.107002518953237, 40.018304531379741 ], [ -75.106164901119783, 40.018554952033476 ], [ -75.105921004308925, 40.018667118032283 ], [ -75.105615507828674, 40.018915445828405 ], [ -75.10548627770558, 40.019355294336592 ], [ -75.105328324561995, 40.019502818321399 ], [ -75.10508005092548, 40.019494180621841 ], [ -75.104731053723839, 40.019376099955892 ], [ -75.104275294604648, 40.019316100984661 ], [ -75.103737124505898, 40.019485701807355 ], [ -75.103528165141896, 40.020564277355113 ], [ -75.10337457629538, 40.020832601576224 ], [ -75.103169784248976, 40.021190365563591 ], [ -75.103208905651087, 40.021435968647474 ], [ -75.103424296616851, 40.021873097285024 ], [ -75.103503374191504, 40.022220142997384 ], [ -75.103715234740022, 40.022392307139462 ], [ -75.104198897642362, 40.022888795811596 ], [ -75.104252799172102, 40.023208479377537 ], [ -75.104565396234293, 40.023490083923519 ], [ -75.104878826153055, 40.023627523790225 ], [ -75.105193919860639, 40.023476639729282 ], [ -75.105337936353976, 40.023110871436899 ], [ -75.105531486728637, 40.02294398766611 ], [ -75.105947307517866, 40.02290254237154 ], [ -75.106367502369622, 40.02298189652354 ], [ -75.106877199587643, 40.023361571245388 ], [ -75.107120286282054, 40.023393565272372 ], [ -75.107339015582596, 40.023254037625456 ], [ -75.107604561405182, 40.022904264856287 ], [ -75.108117566393759, 40.022707285182406 ], [ -75.108809325291062, 40.022269331751417 ], [ -75.109251147199842, 40.022111072218379 ], [ -75.109762498321004, 40.022202409236854 ], [ -75.11037020612487, 40.022282378927997 ], [ -75.110759197560654, 40.02250188090715 ], [ -75.111097002274889, 40.022810825143836 ], [ -75.111201527213751, 40.023207615904887 ], [ -75.11150382417415, 40.024355143825197 ], [ -75.111568162237788, 40.024628104015882 ], [ -75.111372166792492, 40.025227485774842 ], [ -75.111329743024527, 40.025558532734621 ], [ -75.111657981452169, 40.025770034035737 ], [ -75.112184963906145, 40.025791279002604 ], [ -75.112503620745784, 40.025905337619726 ], [ -75.11280698751662, 40.026931091062508 ], [ -75.112805606013396, 40.026939408260581 ], [ -75.112774703239069, 40.027273871990865 ], [ -75.111695049224622, 40.027440933218806 ], [ -75.110062931904778, 40.027875275254665 ], [ -75.108476401450417, 40.028397977384301 ], [ -75.107198944245795, 40.028818830323267 ], [ -75.106152337133025, 40.029163615520524 ], [ -75.104921168550362, 40.029531629722953 ], [ -75.104239988345611, 40.029735236723191 ], [ -75.103123541887385, 40.029789207090474 ], [ -75.101683678657565, 40.029433158707974 ], [ -75.100951491324992, 40.028963174118793 ], [ -75.100345030896278, 40.028573883682384 ], [ -75.099753689840441, 40.028194291553461 ], [ -75.09889457166976, 40.027642795234421 ], [ -75.097763676074734, 40.026821973629787 ], [ -75.09661825984017, 40.026373322465297 ], [ -75.095491546907681, 40.026272775565396 ], [ -75.094284756697505, 40.026567720561204 ], [ -75.093517039127093, 40.02698677849483 ], [ -75.092302011054343, 40.027649978952319 ], [ -75.091923775021286, 40.027856426916507 ], [ -75.091213037883108, 40.028244351873084 ], [ -75.090661823827844, 40.02854520416362 ], [ -75.089679798932522, 40.029081176885505 ], [ -75.088883490473606, 40.029514864862612 ], [ -75.087968285888238, 40.030013294187079 ], [ -75.086926491312809, 40.029472694596144 ], [ -75.086905259741798, 40.029461737559025 ], [ -75.085820077520324, 40.028880307150217 ], [ -75.084736959825833, 40.028246765541944 ], [ -75.082990457053455, 40.027232763154949 ], [ -75.082305834952493, 40.026817049130116 ], [ -75.081361238278859, 40.026318699783474 ], [ -75.081357135361742, 40.026316423913279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "HOLMESBURG", "LISTNAME": "Holmesburg", "MAPNAME": "Holmesburg", "Shape_Leng": 40376.277535300011, "Shape_Area": 84064467.323500007 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.021138250539025, 40.04848711352065 ], [ -75.020433415975489, 40.047832988025306 ], [ -75.020103311232631, 40.047134976569019 ], [ -75.020008479157141, 40.046608315684239 ], [ -75.020081642863062, 40.046010413151798 ], [ -75.020730162110169, 40.045558764747099 ], [ -75.021231018424288, 40.045087573097085 ], [ -75.021475284148579, 40.044675896161799 ], [ -75.021651298858885, 40.044161713397457 ], [ -75.021798745954257, 40.043685034074258 ], [ -75.020731743807502, 40.043572727662827 ], [ -75.0206634860631, 40.043575648718601 ], [ -75.019474651024794, 40.043626531558864 ], [ -75.01846073846994, 40.044151120620839 ], [ -75.018299906220179, 40.044269258924302 ], [ -75.017527042756768, 40.044836950804957 ], [ -75.017381189516925, 40.044940175840921 ], [ -75.016456565542683, 40.045712012395889 ], [ -75.015778146316663, 40.04622207016417 ], [ -75.014905234140713, 40.046885025749106 ], [ -75.014106982451835, 40.047472338176192 ], [ -75.014102073855184, 40.047464128846507 ], [ -75.013485534880274, 40.047053559259361 ], [ -75.012243100821095, 40.046046920684475 ], [ -75.010920211145248, 40.044993116708568 ], [ -75.009591847981596, 40.043930118302015 ], [ -75.008670917966128, 40.043191178577892 ], [ -75.007860400790861, 40.042540814030382 ], [ -75.006872766898951, 40.041748303862036 ], [ -75.006332205509267, 40.041231948465295 ], [ -75.005556879760121, 40.04069943890233 ], [ -75.004836744046315, 40.040125036216544 ], [ -75.003610535198732, 40.039047955794736 ], [ -75.002505359564637, 40.038077149440454 ], [ -75.001026206348016, 40.036797682862826 ], [ -75.000305008193038, 40.036173821676719 ], [ -74.99894096545529, 40.035024106524034 ], [ -74.995884674673789, 40.032858800372551 ], [ -74.995379250330174, 40.032507487478711 ], [ -74.996195658856934, 40.031934818453045 ], [ -74.99711265361465, 40.031288817837741 ], [ -74.998163646864569, 40.030512817668857 ], [ -75.000615633883569, 40.028700819978113 ], [ -75.003348629037973, 40.027261829382901 ], [ -75.003851627182314, 40.026996830519707 ], [ -75.010367611241378, 40.022491854512637 ], [ -75.012419605773147, 40.02092586200245 ], [ -75.013235603959302, 40.02030386480061 ], [ -75.013774602185592, 40.020166866435993 ], [ -75.014085901913788, 40.020088236603492 ], [ -75.015219599319408, 40.019801871110296 ], [ -75.016669595787207, 40.019434875730674 ], [ -75.019643589434907, 40.018436886202615 ], [ -75.019988588451511, 40.018389887174443 ], [ -75.021114586362401, 40.018234891047072 ], [ -75.021209585879703, 40.018222891652258 ], [ -75.022645583588186, 40.018024896516145 ], [ -75.02407057982181, 40.017829901357224 ], [ -75.025348600309826, 40.017550304721048 ], [ -75.028979222212655, 40.022252919056179 ], [ -75.032741674839485, 40.027116587263414 ], [ -75.032790160703172, 40.027087061903906 ], [ -75.033105321986312, 40.027527946075139 ], [ -75.033509309343728, 40.028063277884108 ], [ -75.033980079358514, 40.028609843456152 ], [ -75.034367564005578, 40.029115259457193 ], [ -75.034739648873654, 40.029581132076807 ], [ -75.035176496120897, 40.030126890960794 ], [ -75.035629798032346, 40.030686095015803 ], [ -75.035758793424051, 40.030858915070844 ], [ -75.03603427984082, 40.031191907448147 ], [ -75.036539037146895, 40.031739263809811 ], [ -75.036942486534684, 40.032271167101328 ], [ -75.037329492667268, 40.032789620530529 ], [ -75.03773243430274, 40.033334566767905 ], [ -75.038153919001374, 40.033840771606272 ], [ -75.038641219142235, 40.034400766262173 ], [ -75.039045224442376, 40.034919613714791 ], [ -75.039466728795489, 40.035425813690416 ], [ -75.040033187980811, 40.036131321157903 ], [ -75.040542532966114, 40.03661527927914 ], [ -75.040639878451884, 40.03694963561194 ], [ -75.040627694169999, 40.037003131859713 ], [ -75.039563887916472, 40.037268024043179 ], [ -75.038031597416705, 40.037848086997869 ], [ -75.035583671149354, 40.038720654364319 ], [ -75.033398012117459, 40.039503078800152 ], [ -75.033426928130083, 40.039506263218414 ], [ -75.034836388703184, 40.041288776693008 ], [ -75.035665577066212, 40.042371691248341 ], [ -75.036486457112829, 40.043466485930267 ], [ -75.035126772773665, 40.044050592774482 ], [ -75.034358362268492, 40.044394919780892 ], [ -75.034407020498932, 40.044531108265687 ], [ -75.034265672611156, 40.044526018086223 ], [ -75.03151765628165, 40.045724046715677 ], [ -75.031828501696282, 40.046372726297328 ], [ -75.03181450318236, 40.046978446810165 ], [ -75.031494061951904, 40.04773058657954 ], [ -75.030582965841987, 40.048404611174988 ], [ -75.029615677075896, 40.048650570854157 ], [ -75.028763357836525, 40.048654680618498 ], [ -75.026194059405611, 40.04831481029872 ], [ -75.024113946233811, 40.049184660959838 ], [ -75.023418472946062, 40.049302957080492 ], [ -75.022699529845283, 40.049254564131594 ], [ -75.02190822563901, 40.048986274419278 ], [ -75.021138250539025, 40.04848711352065 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "FRANKFORD", "LISTNAME": "Frankford", "MAPNAME": "Frankford", "Shape_Leng": 26646.606393900001, "Shape_Area": 41352420.6523 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.068846717986077, 40.008594305489986 ], [ -75.06886663595337, 40.008552510904764 ], [ -75.068874478313873, 40.008582332973639 ], [ -75.07259756632763, 40.008118342299618 ], [ -75.074870554501913, 40.006330094607286 ], [ -75.075732078852567, 40.005605443873016 ], [ -75.076437467431276, 40.005038249315561 ], [ -75.076903893875098, 40.004757298701357 ], [ -75.077510022081569, 40.004131327177411 ], [ -75.079554459321656, 40.002525369310796 ], [ -75.08605388128241, 39.999107446433442 ], [ -75.086380408798249, 39.998936631451443 ], [ -75.087108646079642, 39.999839783801107 ], [ -75.087479692573424, 40.000606530232574 ], [ -75.087475511948156, 40.001300649894354 ], [ -75.087545711058183, 40.001796173627625 ], [ -75.087988645840113, 40.002780794212995 ], [ -75.088414875300302, 40.00330009585408 ], [ -75.089241431583289, 40.003779543683237 ], [ -75.090205023921371, 40.00420018120694 ], [ -75.09022929798634, 40.00421077762509 ], [ -75.090242532770901, 40.004215091207612 ], [ -75.090706519005693, 40.00436629786676 ], [ -75.09173368162898, 40.004756385604075 ], [ -75.092494135477139, 40.005446230523404 ], [ -75.092510149680052, 40.00546075654497 ], [ -75.092762567008378, 40.005679265188071 ], [ -75.092906352194163, 40.006115010344729 ], [ -75.092842009179734, 40.006268619716039 ], [ -75.092321359737028, 40.006848361835608 ], [ -75.092099898103442, 40.007166508560495 ], [ -75.092170962037414, 40.007523205192911 ], [ -75.092636531839887, 40.008001357273471 ], [ -75.09298592020501, 40.008325264071303 ], [ -75.09361313253207, 40.008761462648373 ], [ -75.094645116197256, 40.009315900586081 ], [ -75.095052953071587, 40.009641166198783 ], [ -75.09509047827963, 40.010278270678654 ], [ -75.094390803548194, 40.011402511893834 ], [ -75.093462874263238, 40.012773561782289 ], [ -75.093478580221799, 40.013170072381705 ], [ -75.094396724345359, 40.014784222309927 ], [ -75.094340908599875, 40.01480255299721 ], [ -75.093439361249978, 40.015034514915712 ], [ -75.092278281149831, 40.015296578139655 ], [ -75.091682560872755, 40.015922496236982 ], [ -75.09066103704248, 40.017010811469817 ], [ -75.089729087061173, 40.017978579182767 ], [ -75.089180553853495, 40.018529548406676 ], [ -75.088568437434404, 40.019165471374372 ], [ -75.087942452586944, 40.019855243679629 ], [ -75.086841866308532, 40.020967412693707 ], [ -75.086329238111418, 40.021461162803369 ], [ -75.085670134136578, 40.022095979593573 ], [ -75.084422999369579, 40.023349195911059 ], [ -75.083919943490656, 40.023897334059555 ], [ -75.083233781019445, 40.024621802571907 ], [ -75.082720389937705, 40.02513357865034 ], [ -75.081996726895198, 40.025780441312754 ], [ -75.081357135361742, 40.026316423913279 ], [ -75.080026553576957, 40.025540493861008 ], [ -75.07934288029783, 40.025149650242476 ], [ -75.079048785689466, 40.024955126582931 ], [ -75.07887041732269, 40.02484361572612 ], [ -75.078669610200805, 40.024718075956514 ], [ -75.07846880268697, 40.024592534907448 ], [ -75.078229952197432, 40.024443208347101 ], [ -75.078068887376006, 40.024342513033581 ], [ -75.077877372488487, 40.024222778993099 ], [ -75.077698135214348, 40.024110720693372 ], [ -75.077522694968934, 40.024001035514047 ], [ -75.077287238992326, 40.023853826755207 ], [ -75.076999769137018, 40.023674098173885 ], [ -75.07689050728338, 40.023610587416783 ], [ -75.076868489371009, 40.023293127818413 ], [ -75.076835605574644, 40.023262803617889 ], [ -75.076025047295204, 40.022515329549208 ], [ -75.074929317731687, 40.021512258801103 ], [ -75.073356591875694, 40.019651432239904 ], [ -75.072635555063115, 40.018936371728778 ], [ -75.072202551222844, 40.017826531609082 ], [ -75.071655473222975, 40.016443458085988 ], [ -75.071058939914394, 40.014875935589309 ], [ -75.070410894352349, 40.013176286370268 ], [ -75.069956660228939, 40.012031028439878 ], [ -75.069529818903916, 40.010799583475453 ], [ -75.069283945861002, 40.010095134972886 ], [ -75.069055148009582, 40.009278077628728 ], [ -75.068846717986077, 40.008594305489986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "MAYFAIR", "LISTNAME": "Mayfair", "MAPNAME": "Mayfair", "Shape_Leng": 38261.575206300011, "Shape_Area": 52171748.533100002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.034407020498932, 40.044531108265687 ], [ -75.034358362268492, 40.044394919780892 ], [ -75.035126772773665, 40.044050592774482 ], [ -75.036486457112829, 40.043466485930267 ], [ -75.035665577066212, 40.042371691248341 ], [ -75.034836388703184, 40.041288776693008 ], [ -75.033426928130083, 40.039506263218414 ], [ -75.033398012117459, 40.039503078800152 ], [ -75.035583671149354, 40.038720654364319 ], [ -75.038031597416705, 40.037848086997869 ], [ -75.039563887916472, 40.037268024043179 ], [ -75.040627694169999, 40.037003131859713 ], [ -75.040639878451884, 40.03694963561194 ], [ -75.040645369995701, 40.036968496209852 ], [ -75.040975688767602, 40.036780399513461 ], [ -75.041782269886738, 40.03633188044239 ], [ -75.042471699703512, 40.035994983140313 ], [ -75.0432649943792, 40.035587130503103 ], [ -75.044122419688051, 40.035162860050427 ], [ -75.04467496269136, 40.034837803593256 ], [ -75.045012300808381, 40.034663559804109 ], [ -75.045862217529731, 40.034224546279553 ], [ -75.046883401158837, 40.033697050383978 ], [ -75.048520682613528, 40.032958027753267 ], [ -75.051006144238016, 40.032347888571621 ], [ -75.053116763102608, 40.031682068241054 ], [ -75.05344844118828, 40.031595591755831 ], [ -75.053987037690064, 40.031294815549302 ], [ -75.054833433784665, 40.030625714626261 ], [ -75.055242866184145, 40.03023917158233 ], [ -75.055461338457022, 40.0300811775341 ], [ -75.05568073276082, 40.029899901875297 ], [ -75.056121368389938, 40.029490785210555 ], [ -75.056682215860221, 40.029107790421314 ], [ -75.057194394970864, 40.028805211661656 ], [ -75.057886894457766, 40.028541812779906 ], [ -75.057904690028451, 40.028535023439247 ], [ -75.058548641447146, 40.028289340442662 ], [ -75.059225526834965, 40.028037218257964 ], [ -75.060140531788164, 40.027895534195707 ], [ -75.062018030887444, 40.027560824432001 ], [ -75.062492053650359, 40.02745540524193 ], [ -75.065067223789015, 40.027107842777497 ], [ -75.065538014723259, 40.027083894445653 ], [ -75.0679521131256, 40.026592685634334 ], [ -75.073344421165601, 40.02541585765271 ], [ -75.0745274929603, 40.024709774203224 ], [ -75.074801657076776, 40.024546017116535 ], [ -75.074836460159005, 40.024525228262284 ], [ -75.075195106906975, 40.024311007981481 ], [ -75.075685286088103, 40.024018216107194 ], [ -75.075946747191509, 40.023862041032899 ], [ -75.076190246811052, 40.02369582310854 ], [ -75.076520126163231, 40.023474732512433 ], [ -75.076732238851392, 40.023332571163785 ], [ -75.076835605574644, 40.023262803617889 ], [ -75.076868489371009, 40.023293127818413 ], [ -75.07689050728338, 40.023610587416783 ], [ -75.076999769137018, 40.023674098173885 ], [ -75.077287238992326, 40.023853826755207 ], [ -75.077522694968934, 40.024001035514047 ], [ -75.077698135214348, 40.024110720693372 ], [ -75.077877372488487, 40.024222778993099 ], [ -75.078068887376006, 40.024342513033581 ], [ -75.078229952197432, 40.024443208347101 ], [ -75.07846880268697, 40.024592534907448 ], [ -75.078669610200805, 40.024718075956514 ], [ -75.07887041732269, 40.02484361572612 ], [ -75.079048785689466, 40.024955126582931 ], [ -75.07934288029783, 40.025149650242476 ], [ -75.080026553576957, 40.025540493861008 ], [ -75.081357135361742, 40.026316423913279 ], [ -75.081361238278859, 40.026318699783474 ], [ -75.082305834952493, 40.026817049130116 ], [ -75.082990457053455, 40.027232763154949 ], [ -75.084736959825833, 40.028246765541944 ], [ -75.085820077520324, 40.028880307150217 ], [ -75.086905259741798, 40.029461737559025 ], [ -75.086926491312809, 40.029472694596144 ], [ -75.087968285888238, 40.030013294187079 ], [ -75.087208151392943, 40.030429795232365 ], [ -75.086624471928232, 40.030749707921466 ], [ -75.086119305210488, 40.031026582871512 ], [ -75.085321938023469, 40.031463599724177 ], [ -75.084760780260211, 40.031680215715312 ], [ -75.084682709027831, 40.031754536760289 ], [ -75.084665677279588, 40.031744732814502 ], [ -75.084108187779762, 40.031932121931817 ], [ -75.082883290046794, 40.032203235728971 ], [ -75.082115447365254, 40.032373178944113 ], [ -75.081072440742801, 40.032604014344685 ], [ -75.079557139914314, 40.032950592890899 ], [ -75.078130209755429, 40.033281662956966 ], [ -75.077004878263764, 40.033542742508409 ], [ -75.076100698696465, 40.033752505385046 ], [ -75.075297160258472, 40.033938912272831 ], [ -75.074621578811318, 40.034095630293699 ], [ -75.073325505324746, 40.034391336672371 ], [ -75.072239492733999, 40.034639101787491 ], [ -75.071231645074548, 40.034869178053448 ], [ -75.069444637745264, 40.035285414442328 ], [ -75.068279739804524, 40.035556728816019 ], [ -75.066954447052566, 40.035865384434189 ], [ -75.065185672347525, 40.036277296361838 ], [ -75.064334193943566, 40.036475576811334 ], [ -75.064260822177914, 40.036452853977003 ], [ -75.063601866047463, 40.03663779349322 ], [ -75.063230322152094, 40.036797537149816 ], [ -75.062824511591714, 40.036900333816028 ], [ -75.062450741873562, 40.037116166971209 ], [ -75.062151057631823, 40.037305660944 ], [ -75.061814884248264, 40.037494300946761 ], [ -75.061319414145544, 40.038016079429369 ], [ -75.054414398756506, 40.044507414812294 ], [ -75.051640577699814, 40.047157730060512 ], [ -75.051300939329209, 40.047109096976513 ], [ -75.049566122753873, 40.046841879397491 ], [ -75.047783784046473, 40.046224970328396 ], [ -75.047058045497636, 40.04637063005557 ], [ -75.045245060468091, 40.04652323719408 ], [ -75.044250488326327, 40.046684247381371 ], [ -75.043664904462304, 40.046854885759771 ], [ -75.043456216479129, 40.047132043573093 ], [ -75.042858083527349, 40.047617003471942 ], [ -75.042185705084009, 40.047839833839696 ], [ -75.042171169706222, 40.047850340701899 ], [ -75.04146556306479, 40.047844554959575 ], [ -75.040849988829621, 40.047705274167441 ], [ -75.04041970976462, 40.047521541609832 ], [ -75.040011761980864, 40.047132202806957 ], [ -75.039858542556843, 40.046727174162022 ], [ -75.039832253070671, 40.046325140401663 ], [ -75.039518274635313, 40.046057355599871 ], [ -75.039046565094878, 40.045850941614674 ], [ -75.038467907892056, 40.045848132408935 ], [ -75.037737149289853, 40.045765786177284 ], [ -75.037277817360916, 40.045603053471943 ], [ -75.036936945674128, 40.045302078316027 ], [ -75.036470886443155, 40.044954749817194 ], [ -75.035706504911147, 40.044654614620363 ], [ -75.034892013881844, 40.044548573702073 ], [ -75.034407020498932, 40.044531108265687 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "TACONY", "LISTNAME": "Tacony", "MAPNAME": "Tacony", "Shape_Leng": 32404.997788799999, "Shape_Area": 49925598.670500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.033105321986312, 40.027527946075139 ], [ -75.032790160703172, 40.027087061903906 ], [ -75.032741674839485, 40.027116587263414 ], [ -75.028979222212655, 40.022252919056179 ], [ -75.025348600309826, 40.017550304721048 ], [ -75.027498572599285, 40.017079912532949 ], [ -75.029798568019388, 40.016419920623697 ], [ -75.030581565078563, 40.016194923593716 ], [ -75.030936564512558, 40.016092924115753 ], [ -75.03136956396591, 40.015976925653739 ], [ -75.031912562751785, 40.015831928230682 ], [ -75.03359033917053, 40.015385891969707 ], [ -75.034214556857336, 40.015219935998779 ], [ -75.03520555434325, 40.014880939003426 ], [ -75.036167040247165, 40.014553486770815 ], [ -75.038285547139466, 40.013831949589772 ], [ -75.038387547138512, 40.013793950329216 ], [ -75.041265539034853, 40.012714960687575 ], [ -75.042887535440443, 40.012032966413514 ], [ -75.042968534530289, 40.011998966913552 ], [ -75.043048535161049, 40.011964967241568 ], [ -75.043227533766952, 40.011889967589006 ], [ -75.044876530036277, 40.01119697364841 ], [ -75.047088523112549, 40.009941981651259 ], [ -75.047116523009834, 40.009912981985188 ], [ -75.04837614376757, 40.008693664258494 ], [ -75.049900512142486, 40.00721799321559 ], [ -75.04999895344298, 40.007143540299076 ], [ -75.050267922235221, 40.007411403124493 ], [ -75.053259405444749, 40.010730940311483 ], [ -75.054677659638855, 40.012345338826336 ], [ -75.056128532189874, 40.014043215815697 ], [ -75.054180555666065, 40.015041276029542 ], [ -75.052613932038227, 40.015843903199482 ], [ -75.050555773800141, 40.016895483262971 ], [ -75.048531360887679, 40.017929753246271 ], [ -75.049109754134491, 40.018521891657436 ], [ -75.050004652775698, 40.019534706736117 ], [ -75.050887526886939, 40.020580290021535 ], [ -75.052936770386836, 40.022843388331466 ], [ -75.054520544586453, 40.024649226466202 ], [ -75.05537198945953, 40.025677504272785 ], [ -75.056833560828593, 40.027315145147519 ], [ -75.05789913183979, 40.028523679616782 ], [ -75.057904690028451, 40.028535023439247 ], [ -75.057886894457766, 40.028541812779906 ], [ -75.057194394970864, 40.028805211661656 ], [ -75.056682215860221, 40.029107790421314 ], [ -75.056121368389938, 40.029490785210555 ], [ -75.05568073276082, 40.029899901875297 ], [ -75.055461338457022, 40.0300811775341 ], [ -75.055242866184145, 40.03023917158233 ], [ -75.054833433784665, 40.030625714626261 ], [ -75.053987037690064, 40.031294815549302 ], [ -75.05344844118828, 40.031595591755831 ], [ -75.053116763102608, 40.031682068241054 ], [ -75.051006144238016, 40.032347888571621 ], [ -75.048520682613528, 40.032958027753267 ], [ -75.046883401158837, 40.033697050383978 ], [ -75.045862217529731, 40.034224546279553 ], [ -75.045012300808381, 40.034663559804109 ], [ -75.04467496269136, 40.034837803593256 ], [ -75.044122419688051, 40.035162860050427 ], [ -75.0432649943792, 40.035587130503103 ], [ -75.042471699703512, 40.035994983140313 ], [ -75.041782269886738, 40.03633188044239 ], [ -75.040975688767602, 40.036780399513461 ], [ -75.040645369995701, 40.036968496209852 ], [ -75.040639878451884, 40.03694963561194 ], [ -75.040542532966114, 40.03661527927914 ], [ -75.040033187980811, 40.036131321157903 ], [ -75.039466728795489, 40.035425813690416 ], [ -75.039045224442376, 40.034919613714791 ], [ -75.038641219142235, 40.034400766262173 ], [ -75.038153919001374, 40.033840771606272 ], [ -75.03773243430274, 40.033334566767905 ], [ -75.037329492667268, 40.032789620530529 ], [ -75.036942486534684, 40.032271167101328 ], [ -75.036539037146895, 40.031739263809811 ], [ -75.03603427984082, 40.031191907448147 ], [ -75.035758793424051, 40.030858915070844 ], [ -75.035629798032346, 40.030686095015803 ], [ -75.035176496120897, 40.030126890960794 ], [ -75.034739648873654, 40.029581132076807 ], [ -75.034367564005578, 40.029115259457193 ], [ -75.033980079358514, 40.028609843456152 ], [ -75.033509309343728, 40.028063277884108 ], [ -75.033105321986312, 40.027527946075139 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WISSINOMING", "LISTNAME": "Wissinoming", "MAPNAME": "Wissinoming", "Shape_Leng": 29226.474499200001, "Shape_Area": 42361155.039800003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.04999895344298, 40.007143540299076 ], [ -75.052223504816624, 40.005461002691405 ], [ -75.053403500808457, 40.004569006969334 ], [ -75.053710499043049, 40.004079009007029 ], [ -75.054028497359596, 40.003573010185917 ], [ -75.054077829377022, 40.003494655930375 ], [ -75.05448438671813, 40.003651966010985 ], [ -75.061709020630488, 40.006693000395515 ], [ -75.06274271590425, 40.005967638954282 ], [ -75.063439165732419, 40.005915959355349 ], [ -75.064669565887968, 40.005982656112899 ], [ -75.065537078889818, 40.006001429263073 ], [ -75.067311471941622, 40.005358754783728 ], [ -75.067648557043526, 40.005198774366235 ], [ -75.067729845181233, 40.005402758971762 ], [ -75.068336961391722, 40.00692622449737 ], [ -75.068543771814831, 40.007324670034173 ], [ -75.06886663595337, 40.008552510904764 ], [ -75.068846717986077, 40.008594305489986 ], [ -75.069055148009582, 40.009278077628728 ], [ -75.069283945861002, 40.010095134972886 ], [ -75.069529818903916, 40.010799583475453 ], [ -75.069956660228939, 40.012031028439878 ], [ -75.070410894352349, 40.013176286370268 ], [ -75.071058939914394, 40.014875935589309 ], [ -75.071655473222975, 40.016443458085988 ], [ -75.072202551222844, 40.017826531609082 ], [ -75.072635555063115, 40.018936371728778 ], [ -75.073356591875694, 40.019651432239904 ], [ -75.074929317731687, 40.021512258801103 ], [ -75.076025047295204, 40.022515329549208 ], [ -75.076835605574644, 40.023262803617889 ], [ -75.076732238851392, 40.023332571163785 ], [ -75.076520126163231, 40.023474732512433 ], [ -75.076190246811052, 40.02369582310854 ], [ -75.075946747191509, 40.023862041032899 ], [ -75.075685286088103, 40.024018216107194 ], [ -75.075195106906975, 40.024311007981481 ], [ -75.074836460159005, 40.024525228262284 ], [ -75.074801657076776, 40.024546017116535 ], [ -75.0745274929603, 40.024709774203224 ], [ -75.073344421165601, 40.02541585765271 ], [ -75.0679521131256, 40.026592685634334 ], [ -75.065538014723259, 40.027083894445653 ], [ -75.065067223789015, 40.027107842777497 ], [ -75.062492053650359, 40.02745540524193 ], [ -75.062018030887444, 40.027560824432001 ], [ -75.060140531788164, 40.027895534195707 ], [ -75.059225526834965, 40.028037218257964 ], [ -75.058548641447146, 40.028289340442662 ], [ -75.057904690028451, 40.028535023439247 ], [ -75.05789913183979, 40.028523679616782 ], [ -75.056833560828593, 40.027315145147519 ], [ -75.05537198945953, 40.025677504272785 ], [ -75.054520544586453, 40.024649226466202 ], [ -75.052936770386836, 40.022843388331466 ], [ -75.050887526886939, 40.020580290021535 ], [ -75.050004652775698, 40.019534706736117 ], [ -75.049109754134491, 40.018521891657436 ], [ -75.048531360887679, 40.017929753246271 ], [ -75.050555773800141, 40.016895483262971 ], [ -75.052613932038227, 40.015843903199482 ], [ -75.054180555666065, 40.015041276029542 ], [ -75.056128532189874, 40.014043215815697 ], [ -75.054677659638855, 40.012345338826336 ], [ -75.053259405444749, 40.010730940311483 ], [ -75.050267922235221, 40.007411403124493 ], [ -75.04999895344298, 40.007143540299076 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "ANDORRA", "LISTNAME": "Andorra", "MAPNAME": "Andorra", "Shape_Leng": 26469.7742884, "Shape_Area": 24518134.011500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.233081353922927, 40.07056740488369 ], [ -75.232557703857296, 40.070120359556022 ], [ -75.231955885593578, 40.070629635722341 ], [ -75.229711457842527, 40.0708537387804 ], [ -75.229311025808059, 40.070688782601557 ], [ -75.228713285853559, 40.070363325065138 ], [ -75.224675851176357, 40.066877909797299 ], [ -75.225467999145067, 40.066075407025373 ], [ -75.226091826134279, 40.065698678449465 ], [ -75.226505286546214, 40.065512542454414 ], [ -75.226561870186814, 40.065357611815223 ], [ -75.225302664846438, 40.065056650465564 ], [ -75.224758669765862, 40.064654264514921 ], [ -75.224736956059843, 40.063872921433756 ], [ -75.224882711131897, 40.062619897361515 ], [ -75.225963372584815, 40.062143702449831 ], [ -75.225930502092837, 40.062106383788944 ], [ -75.226036405951604, 40.062129267485723 ], [ -75.226829281726623, 40.061845311602347 ], [ -75.228246622364324, 40.062409961089976 ], [ -75.229589465276419, 40.063068220943038 ], [ -75.230591580407591, 40.063541295327752 ], [ -75.231733936435688, 40.064084570148722 ], [ -75.23263602350535, 40.063481056842264 ], [ -75.234165952867869, 40.062457463174603 ], [ -75.234946397020408, 40.06193529057991 ], [ -75.235555630636071, 40.061527660379141 ], [ -75.236201852131813, 40.061095273571468 ], [ -75.236257566106786, 40.061308274640211 ], [ -75.237241271452135, 40.062225798817003 ], [ -75.237859887284372, 40.062689060171813 ], [ -75.238540976227668, 40.063199094382604 ], [ -75.23966696330794, 40.063997523537893 ], [ -75.239814872276114, 40.065157413817545 ], [ -75.239932260923752, 40.066117706949555 ], [ -75.240083442048828, 40.067354415060748 ], [ -75.240320930752944, 40.068385933092067 ], [ -75.240841200009129, 40.06979831877446 ], [ -75.241052588713998, 40.070389409065022 ], [ -75.241589935313627, 40.071249504237564 ], [ -75.242317603495565, 40.072306774100561 ], [ -75.243181581146544, 40.07348692399642 ], [ -75.243227495684494, 40.073546473563574 ], [ -75.243212447406947, 40.073559488884918 ], [ -75.243131447328054, 40.073629488958211 ], [ -75.241275458389552, 40.075447479427631 ], [ -75.240940460732347, 40.075759477785866 ], [ -75.240867461331234, 40.075831477358932 ], [ -75.240656462395705, 40.076041476937085 ], [ -75.240380464475237, 40.076337474907007 ], [ -75.240119465955914, 40.076593473489069 ], [ -75.239982466206627, 40.076717473457528 ], [ -75.239630468646894, 40.077036471503078 ], [ -75.239347469797153, 40.077310469784997 ], [ -75.238195477255431, 40.078465464685053 ], [ -75.238086477698829, 40.078573463951265 ], [ -75.237688479822424, 40.078969462046054 ], [ -75.237146483220073, 40.079494459885311 ], [ -75.236660485287587, 40.079986456949953 ], [ -75.236207488371207, 40.08044345521089 ], [ -75.236075488970258, 40.080577453958682 ], [ -75.235462492711136, 40.081130451732903 ], [ -75.235522491937061, 40.081156451623748 ], [ -75.233065641348205, 40.083582768272009 ], [ -75.232955649892986, 40.083502751735743 ], [ -75.232481734775718, 40.083134881225284 ], [ -75.231551437868816, 40.08272296350647 ], [ -75.230865166666433, 40.082503643667629 ], [ -75.230359430321471, 40.082396092197285 ], [ -75.229497489233864, 40.082133192221306 ], [ -75.229059455501755, 40.081993073158685 ], [ -75.228461985972075, 40.081770011221636 ], [ -75.227816227958826, 40.081455096183355 ], [ -75.227485944734227, 40.081186383923075 ], [ -75.22708741034171, 40.080707304602541 ], [ -75.225943584166004, 40.079195940365295 ], [ -75.225934735718852, 40.078995070924826 ], [ -75.22853918832746, 40.077891567049988 ], [ -75.230605345987072, 40.076885985672945 ], [ -75.229267538627113, 40.074592148185097 ], [ -75.229386507776084, 40.074126239244308 ], [ -75.228401348411509, 40.073284721141533 ], [ -75.22853628372286, 40.072389687113251 ], [ -75.229104656945239, 40.072014937444841 ], [ -75.229125020901932, 40.07198619030757 ], [ -75.230708779729738, 40.071836244847411 ], [ -75.231992799860635, 40.07131437533431 ], [ -75.233081353922927, 40.07056740488369 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "UPPER_ROXBOROUGH", "LISTNAME": "Upper Roxborough", "MAPNAME": "Upper Roxborough", "Shape_Leng": 50882.081407500002, "Shape_Area": 68691431.695800006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.236257566106786, 40.061308274640211 ], [ -75.236201852131813, 40.061095273571468 ], [ -75.235555630636071, 40.061527660379141 ], [ -75.234946397020408, 40.06193529057991 ], [ -75.234165952867869, 40.062457463174603 ], [ -75.23263602350535, 40.063481056842264 ], [ -75.231733936435688, 40.064084570148722 ], [ -75.230591580407591, 40.063541295327752 ], [ -75.229589465276419, 40.063068220943038 ], [ -75.228246622364324, 40.062409961089976 ], [ -75.226829281726623, 40.061845311602347 ], [ -75.226036405951604, 40.062129267485723 ], [ -75.225930502092837, 40.062106383788944 ], [ -75.223365828132785, 40.059194477578814 ], [ -75.225366464566264, 40.058161768357586 ], [ -75.226518160915901, 40.058697910769908 ], [ -75.227339418877648, 40.059259021387511 ], [ -75.228290350853854, 40.060480961916262 ], [ -75.229601590995216, 40.059841582686111 ], [ -75.229865527952199, 40.059724756954822 ], [ -75.227783619164455, 40.057115280644354 ], [ -75.228747858160801, 40.056628239938902 ], [ -75.227934749921076, 40.056431365352516 ], [ -75.22936863128011, 40.055824010968948 ], [ -75.228650574428016, 40.055020694211692 ], [ -75.228794350843501, 40.054945545153807 ], [ -75.229391268457604, 40.054642393881302 ], [ -75.229822542356899, 40.054423827006794 ], [ -75.231225151749101, 40.053712975491401 ], [ -75.230981393847998, 40.053596672040989 ], [ -75.230419488907401, 40.053383654138592 ], [ -75.229877924516799, 40.053262305190607 ], [ -75.228801355444205, 40.053056232812409 ], [ -75.228134855404306, 40.052889561767905 ], [ -75.227164628533103, 40.052543105878406 ], [ -75.225289795688596, 40.051659719752791 ], [ -75.223285386545399, 40.050715219877503 ], [ -75.2197723345881, 40.049107740722199 ], [ -75.218150049421041, 40.048215222880309 ], [ -75.217872208330235, 40.04712233215465 ], [ -75.217842285111075, 40.046082733844472 ], [ -75.217848098666593, 40.044352809100303 ], [ -75.217729683039096, 40.043809050650296 ], [ -75.217666914480105, 40.043582641892399 ], [ -75.217610387895306, 40.043416694994939 ], [ -75.217788678046105, 40.043428309618548 ], [ -75.218847098042673, 40.043350234638652 ], [ -75.219720993068563, 40.042913165933363 ], [ -75.220447371575105, 40.042303833376671 ], [ -75.220970961435285, 40.041825239041245 ], [ -75.221775182657311, 40.040896495533644 ], [ -75.222227223806868, 40.039976897797018 ], [ -75.223397106896101, 40.038910071620599 ], [ -75.223803050237251, 40.03941896948934 ], [ -75.224396040686486, 40.040230336881649 ], [ -75.225574818563956, 40.041737589489621 ], [ -75.226266035513234, 40.042391440169474 ], [ -75.227412601170187, 40.043214953196156 ], [ -75.22903826288784, 40.044190895048267 ], [ -75.231170045667625, 40.044902935060811 ], [ -75.2320397886471, 40.045318417990465 ], [ -75.23294473352982, 40.045908698219527 ], [ -75.234821692495473, 40.047581940968698 ], [ -75.235446566052033, 40.048784235453354 ], [ -75.235762334269452, 40.049607211165345 ], [ -75.236179649398707, 40.050804957497533 ], [ -75.236353098627006, 40.051731258474646 ], [ -75.236260297778387, 40.052725984403352 ], [ -75.237266735950058, 40.052546777081247 ], [ -75.238599552354842, 40.052042395267883 ], [ -75.241082484224961, 40.050943851848288 ], [ -75.243748680504552, 40.049915946376075 ], [ -75.245578988252475, 40.049365176344502 ], [ -75.246802559754784, 40.048458174835361 ], [ -75.247712365688898, 40.046982218562675 ], [ -75.248700922522474, 40.045955054638846 ], [ -75.249903667306469, 40.044705285044998 ], [ -75.250857319028327, 40.044123065406453 ], [ -75.251543678249035, 40.043698501574859 ], [ -75.252880297752085, 40.044734564575329 ], [ -75.254224306457132, 40.045690559661139 ], [ -75.254316306941888, 40.045756559671787 ], [ -75.254676308066479, 40.045925558343917 ], [ -75.255096311037263, 40.046123556933715 ], [ -75.255891314157793, 40.046498554318298 ], [ -75.257653324644693, 40.047612548822755 ], [ -75.259587272490492, 40.049213004978149 ], [ -75.259619338485166, 40.049239541129246 ], [ -75.261095348625588, 40.050672535019366 ], [ -75.262675361519328, 40.052305529176209 ], [ -75.264425095839854, 40.054091155030285 ], [ -75.264429374799789, 40.054095521849788 ], [ -75.263858374750924, 40.054558521713268 ], [ -75.263809374797688, 40.054603521460493 ], [ -75.263594375499835, 40.05481152157143 ], [ -75.263517376525883, 40.054872521308631 ], [ -75.263440375865429, 40.054942521766648 ], [ -75.263238376415885, 40.055129521392139 ], [ -75.263229376406713, 40.055137521939393 ], [ -75.260549382659136, 40.057604521804492 ], [ -75.256705392058947, 40.061143522135076 ], [ -75.25668139150234, 40.061164522268982 ], [ -75.25500439524528, 40.062705522221911 ], [ -75.254916396452202, 40.062786521903263 ], [ -75.254341397673315, 40.063314521607673 ], [ -75.245855432218448, 40.071128501655608 ], [ -75.243456445904684, 40.07333548986928 ], [ -75.243286446803666, 40.073495489774992 ], [ -75.243227495684494, 40.073546473563574 ], [ -75.243181581146544, 40.07348692399642 ], [ -75.242317603495565, 40.072306774100561 ], [ -75.241589935313627, 40.071249504237564 ], [ -75.241052588713998, 40.070389409065022 ], [ -75.240841200009129, 40.06979831877446 ], [ -75.240320930752944, 40.068385933092067 ], [ -75.240083442048828, 40.067354415060748 ], [ -75.239932260923752, 40.066117706949555 ], [ -75.239814872276114, 40.065157413817545 ], [ -75.23966696330794, 40.063997523537893 ], [ -75.238540976227668, 40.063199094382604 ], [ -75.237859887284372, 40.062689060171813 ], [ -75.237241271452135, 40.062225798817003 ], [ -75.236257566106786, 40.061308274640211 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "DEARNLEY_PARK", "LISTNAME": "Dearnley Park", "MAPNAME": "Dearnley Park", "Shape_Leng": 17330.8420224, "Shape_Area": 16215770.7346 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.241085018347505, 40.03713588634843 ], [ -75.242206710604847, 40.035708102016564 ], [ -75.243032256992748, 40.036218567062022 ], [ -75.24323825695906, 40.036302567882139 ], [ -75.24335325699262, 40.036351568112757 ], [ -75.244306257620451, 40.036744570406654 ], [ -75.245108258611822, 40.037259571509878 ], [ -75.245596260073029, 40.037656572225281 ], [ -75.245834301850991, 40.037922709591733 ], [ -75.245901261050264, 40.037997572136547 ], [ -75.246168261804115, 40.038291572511255 ], [ -75.246564457754133, 40.038981767596297 ], [ -75.24667226546191, 40.039169572216551 ], [ -75.246998268427276, 40.039739571959053 ], [ -75.247320270176758, 40.040097572233883 ], [ -75.247917272132526, 40.040763572754756 ], [ -75.249037276509512, 40.041849574181285 ], [ -75.249179276898076, 40.041952573879868 ], [ -75.249347276757106, 40.042074574552743 ], [ -75.250332280394517, 40.042790573974109 ], [ -75.250984284516491, 40.043264571505247 ], [ -75.251220286664605, 40.043448570444767 ], [ -75.251296287027486, 40.043506570220053 ], [ -75.251359287705895, 40.043555570171151 ], [ -75.251543678249035, 40.043698501574859 ], [ -75.250857319028327, 40.044123065406453 ], [ -75.249903667306469, 40.044705285044998 ], [ -75.248700922522474, 40.045955054638846 ], [ -75.247712365688898, 40.046982218562675 ], [ -75.246802559754784, 40.048458174835361 ], [ -75.245578988252475, 40.049365176344502 ], [ -75.243748680504552, 40.049915946376075 ], [ -75.241082484224961, 40.050943851848288 ], [ -75.238599552354842, 40.052042395267883 ], [ -75.237266735950058, 40.052546777081247 ], [ -75.236260297778387, 40.052725984403352 ], [ -75.236353098627006, 40.051731258474646 ], [ -75.236179649398707, 40.050804957497533 ], [ -75.235762334269452, 40.049607211165345 ], [ -75.235446566052033, 40.048784235453354 ], [ -75.234821692495473, 40.047581940968698 ], [ -75.23294473352982, 40.045908698219527 ], [ -75.2320397886471, 40.045318417990465 ], [ -75.234080817971815, 40.044427305804106 ], [ -75.234950456189651, 40.044047605024382 ], [ -75.2365246923016, 40.04336023426297 ], [ -75.237572841130529, 40.042655119717971 ], [ -75.237734570405479, 40.042326566179753 ], [ -75.238725290499261, 40.040253499924972 ], [ -75.239376283585869, 40.039501367323929 ], [ -75.24009198366447, 40.038571827074733 ], [ -75.241085018347505, 40.03713588634843 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "ROXBOROUGH_PARK", "LISTNAME": "Roxborough Park", "MAPNAME": "Roxborough Park", "Shape_Leng": 13388.15641, "Shape_Area": 9697307.6591800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.23371278934161, 40.035921199977317 ], [ -75.234871594943641, 40.0349121913152 ], [ -75.235396681528528, 40.035483547664704 ], [ -75.236151369904846, 40.034772255469179 ], [ -75.236605108181607, 40.034320305049931 ], [ -75.239020151627585, 40.032721365943502 ], [ -75.239294245206679, 40.032891562417447 ], [ -75.239806246994235, 40.033338562988419 ], [ -75.240278247940026, 40.033750563764293 ], [ -75.240751249677828, 40.034162564510908 ], [ -75.240805249382078, 40.034219564277507 ], [ -75.240866250051823, 40.034280564204927 ], [ -75.240957250452993, 40.034398564695096 ], [ -75.241056250756102, 40.034520564580887 ], [ -75.241087250629334, 40.034558564410212 ], [ -75.241148251352698, 40.034631564447579 ], [ -75.241209251665822, 40.034703564342671 ], [ -75.241247252306408, 40.034753565067419 ], [ -75.241285252493626, 40.034802564769663 ], [ -75.241491253265153, 40.035142565045348 ], [ -75.242094255246755, 40.035638565871444 ], [ -75.242206710604847, 40.035708102016564 ], [ -75.241085018347505, 40.03713588634843 ], [ -75.24009198366447, 40.038571827074733 ], [ -75.239376283585869, 40.039501367323929 ], [ -75.238725290499261, 40.040253499924972 ], [ -75.237734570405479, 40.042326566179753 ], [ -75.237572841130529, 40.042655119717971 ], [ -75.2365246923016, 40.04336023426297 ], [ -75.234950456189651, 40.044047605024382 ], [ -75.234080817971815, 40.044427305804106 ], [ -75.2320397886471, 40.045318417990465 ], [ -75.231170045667625, 40.044902935060811 ], [ -75.22903826288784, 40.044190895048267 ], [ -75.227412601170187, 40.043214953196156 ], [ -75.226266035513234, 40.042391440169474 ], [ -75.227343078299839, 40.04150735236724 ], [ -75.228114035348952, 40.040852453897799 ], [ -75.229431333028117, 40.039705669602817 ], [ -75.22973231977663, 40.039446342614788 ], [ -75.230797187122448, 40.038475957505476 ], [ -75.23266070218925, 40.036837247213477 ], [ -75.23371278934161, 40.035921199977317 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "GERMANY_HILL", "LISTNAME": "Germany Hill", "MAPNAME": "Germany Hill", "Shape_Leng": 13041.9390872, "Shape_Area": 6949968.42772 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.227201250305598, 40.035264711787896 ], [ -75.2287554824035, 40.034382260336294 ], [ -75.231031495224499, 40.033104732573399 ], [ -75.231806339675501, 40.032761662406983 ], [ -75.232472883915406, 40.032435757676097 ], [ -75.233408004996548, 40.031575638093351 ], [ -75.233408004996548, 40.031575638093351 ], [ -75.233532881700697, 40.03165200205671 ], [ -75.233646147765114, 40.031532349943532 ], [ -75.234283722983207, 40.030858817654909 ], [ -75.235282361248395, 40.030361059877265 ], [ -75.237036241877277, 40.031484557996983 ], [ -75.237760243722491, 40.031935559528527 ], [ -75.238066243328092, 40.032128560166214 ], [ -75.238492244008313, 40.03239356070555 ], [ -75.239020151627585, 40.032721365943502 ], [ -75.236605108181607, 40.034320305049931 ], [ -75.236151369904846, 40.034772255469179 ], [ -75.235396681528528, 40.035483547664704 ], [ -75.234871594943641, 40.0349121913152 ], [ -75.23371278934161, 40.035921199977317 ], [ -75.23266070218925, 40.036837247213477 ], [ -75.230797187122448, 40.038475957505476 ], [ -75.22973231977663, 40.039446342614788 ], [ -75.229431333028117, 40.039705669602817 ], [ -75.228114035348952, 40.040852453897799 ], [ -75.227343078299839, 40.04150735236724 ], [ -75.226266035513234, 40.042391440169474 ], [ -75.225574818563956, 40.041737589489621 ], [ -75.224396040686486, 40.040230336881649 ], [ -75.223803050237251, 40.03941896948934 ], [ -75.223397106896101, 40.038910071620599 ], [ -75.223273569539302, 40.038742954782023 ], [ -75.223161507805301, 40.038578882434102 ], [ -75.222811152296401, 40.038121115119701 ], [ -75.224432736095494, 40.037365272289598 ], [ -75.225184116130805, 40.037027722533999 ], [ -75.225729609634996, 40.036769251299091 ], [ -75.226025715836698, 40.036461781376602 ], [ -75.226729585967107, 40.035769270535695 ], [ -75.227201250305598, 40.035264711787896 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WISSAHICKON_HILLS", "LISTNAME": "Wissahickon Hills", "MAPNAME": "Wissahickon Hills", "Shape_Leng": 7113.0286423300004, "Shape_Area": 3048525.5728600002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.223397106896101, 40.038910071620599 ], [ -75.222227223806868, 40.039976897797018 ], [ -75.221775182657311, 40.040896495533644 ], [ -75.220970961435285, 40.041825239041245 ], [ -75.220447371575105, 40.042303833376671 ], [ -75.219720993068563, 40.042913165933363 ], [ -75.218847098042673, 40.043350234638652 ], [ -75.217788678046105, 40.043428309618548 ], [ -75.217610387895306, 40.043416694994939 ], [ -75.21747181090609, 40.0430857192951 ], [ -75.217338341321593, 40.042845588979503 ], [ -75.217158568802205, 40.042574027947502 ], [ -75.216925040301405, 40.042258709939723 ], [ -75.216696697926096, 40.042016485710292 ], [ -75.216459544551398, 40.041798394498585 ], [ -75.216240313097771, 40.041619935390301 ], [ -75.215759819827198, 40.041253846106599 ], [ -75.214113500162796, 40.040133309131704 ], [ -75.214429636022601, 40.040018073013506 ], [ -75.214570975314999, 40.039945127003691 ], [ -75.216364332771718, 40.039171671751248 ], [ -75.218096918359194, 40.038428521509672 ], [ -75.219961987185869, 40.0376284980522 ], [ -75.220671909537018, 40.037313495023092 ], [ -75.221295892214599, 40.037528145484295 ], [ -75.221785435341886, 40.037692310316004 ], [ -75.222811152296401, 40.038121115119701 ], [ -75.223161507805301, 40.038578882434102 ], [ -75.223273569539302, 40.038742954782023 ], [ -75.223397106896101, 40.038910071620599 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "ROXBOROUGH", "LISTNAME": "Roxborough", "MAPNAME": "Roxborough", "Shape_Leng": 23054.709843500001, "Shape_Area": 22416604.1318 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.203156491038769, 40.025894947164431 ], [ -75.203166793524787, 40.025884088864743 ], [ -75.20441318436113, 40.025324206818119 ], [ -75.205237643669548, 40.024947424864166 ], [ -75.207724891195141, 40.023797092823415 ], [ -75.207731603747533, 40.023787558408053 ], [ -75.208490267493815, 40.022709904610529 ], [ -75.20925893523281, 40.021886154745438 ], [ -75.209975629209382, 40.020514250367725 ], [ -75.210671472259222, 40.019699010737696 ], [ -75.211265622331808, 40.018608019645249 ], [ -75.211755933629803, 40.019236767828041 ], [ -75.212606453164341, 40.020450865979171 ], [ -75.213720826350965, 40.021832859118248 ], [ -75.214071286485918, 40.022326822570115 ], [ -75.215393982771559, 40.023890614154652 ], [ -75.214417638446946, 40.024694676699752 ], [ -75.21470720687401, 40.025055607793853 ], [ -75.215555048824356, 40.026168325470209 ], [ -75.216606803437614, 40.027565543374394 ], [ -75.216614334796603, 40.027562151500838 ], [ -75.217087663154857, 40.028035271256826 ], [ -75.217562814817924, 40.028459725764222 ], [ -75.218052435725582, 40.028921024488454 ], [ -75.218311939603652, 40.029182437108503 ], [ -75.219124156783579, 40.029912620884453 ], [ -75.219764573496704, 40.030578134687893 ], [ -75.220421961445112, 40.031213580143259 ], [ -75.221019686447647, 40.031750301035217 ], [ -75.221828807450507, 40.032511813936814 ], [ -75.222403060338635, 40.033056869751036 ], [ -75.223392803913413, 40.033744325246637 ], [ -75.224013348675626, 40.034329162472929 ], [ -75.225125251317195, 40.035272650322696 ], [ -75.225429595489302, 40.035675286405009 ], [ -75.225978605328052, 40.036417536588708 ], [ -75.226025715836698, 40.036461781376602 ], [ -75.225729609634996, 40.036769251299091 ], [ -75.225184116130805, 40.037027722533999 ], [ -75.224432736095494, 40.037365272289598 ], [ -75.222811152296401, 40.038121115119701 ], [ -75.221785435341886, 40.037692310316004 ], [ -75.220671909537018, 40.037313495023092 ], [ -75.219961987185812, 40.0376284980522 ], [ -75.21809691835908, 40.038428521509672 ], [ -75.216364332771661, 40.039171671751284 ], [ -75.214570975314999, 40.039945127003691 ], [ -75.214429636022601, 40.040018073013506 ], [ -75.214113500162796, 40.040133309131704 ], [ -75.213049976513886, 40.03941543178211 ], [ -75.211600598990785, 40.038379206634211 ], [ -75.210397450735002, 40.037512480950163 ], [ -75.209607669272145, 40.036606182257273 ], [ -75.209218149222195, 40.035586975617342 ], [ -75.20890961839622, 40.035001711695436 ], [ -75.208444053820131, 40.033987926277469 ], [ -75.208043274954605, 40.032699665207765 ], [ -75.207830492794358, 40.032037462662849 ], [ -75.207768692555959, 40.03191849704357 ], [ -75.207613844090972, 40.031620413340107 ], [ -75.205553576691045, 40.032490374321114 ], [ -75.204812730990767, 40.031515748769102 ], [ -75.204459710467802, 40.031033399552889 ], [ -75.204292783852708, 40.030805316747163 ], [ -75.204058758722923, 40.030485548722432 ], [ -75.203847614959201, 40.030197043160875 ], [ -75.203413327636127, 40.029603625902446 ], [ -75.205567006883712, 40.028669734771434 ], [ -75.205079330635272, 40.027906210558214 ], [ -75.204539256308252, 40.027191449575959 ], [ -75.203949411323421, 40.026477880655683 ], [ -75.203584332733385, 40.026078169703133 ], [ -75.203162249276886, 40.025896783181715 ], [ -75.203156491038769, 40.025894947164431 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "MANAYUNK", "LISTNAME": "Manayunk", "MAPNAME": "Manayunk", "Shape_Leng": 16157.054671899999, "Shape_Area": 14712063.374 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.223392803913413, 40.033744325246637 ], [ -75.222403060338635, 40.033056869751036 ], [ -75.221828807450507, 40.032511813936814 ], [ -75.221019686447647, 40.031750301035217 ], [ -75.220421961445112, 40.031213580143259 ], [ -75.219764573496704, 40.030578134687893 ], [ -75.219124156783579, 40.029912620884453 ], [ -75.218311939603652, 40.029182437108503 ], [ -75.218052435725582, 40.028921024488454 ], [ -75.217562814817924, 40.028459725764222 ], [ -75.217087663154857, 40.028035271256826 ], [ -75.216614334796603, 40.027562151500838 ], [ -75.216606803437614, 40.027565543374394 ], [ -75.215555048824356, 40.026168325470209 ], [ -75.21470720687401, 40.025055607793853 ], [ -75.214417638446946, 40.024694676699752 ], [ -75.215393982771559, 40.023890614154652 ], [ -75.217089330819334, 40.022948449467798 ], [ -75.218300037627813, 40.022204083219087 ], [ -75.218705849179329, 40.021928551813652 ], [ -75.219317031166341, 40.021581995493108 ], [ -75.219581225635451, 40.021714522666272 ], [ -75.219915225855772, 40.021882523458601 ], [ -75.221777506459844, 40.022494179604138 ], [ -75.22189122524675, 40.022531528645935 ], [ -75.222151224421964, 40.02261552884729 ], [ -75.22229815190201, 40.022719774067077 ], [ -75.223015226403689, 40.023228531022632 ], [ -75.223692226813256, 40.023713531590914 ], [ -75.223943227614484, 40.023810532769168 ], [ -75.225189228225574, 40.02446053488687 ], [ -75.226306229664416, 40.025093537627754 ], [ -75.22651122916615, 40.025198538163806 ], [ -75.226650230014187, 40.02526853855656 ], [ -75.227950230877411, 40.025935541050686 ], [ -75.228002230049427, 40.025964540978741 ], [ -75.228147230261669, 40.026032541309561 ], [ -75.228178230104021, 40.026048541730873 ], [ -75.228216230129547, 40.026067541218325 ], [ -75.22824723082492, 40.02608254153656 ], [ -75.229676231199662, 40.026794544808467 ], [ -75.229822808235184, 40.026865842751519 ], [ -75.230743232750669, 40.027313546787511 ], [ -75.230922232563842, 40.027426547059662 ], [ -75.231024232723129, 40.027490547714415 ], [ -75.231334233046908, 40.027614547964113 ], [ -75.231700232774031, 40.027801549311619 ], [ -75.232321233392554, 40.028108550533659 ], [ -75.232542234187989, 40.02828755039787 ], [ -75.232626234658071, 40.028356550984718 ], [ -75.232783234764284, 40.028481550964123 ], [ -75.23337878228304, 40.028955007738872 ], [ -75.23417823762945, 40.029590553637227 ], [ -75.234602238118839, 40.02992755433754 ], [ -75.234838239367619, 40.030076554334258 ], [ -75.235282361248395, 40.030361059877265 ], [ -75.234283722983207, 40.030858817654909 ], [ -75.233646147765114, 40.031532349943532 ], [ -75.233532881700697, 40.03165200205671 ], [ -75.233408004996548, 40.031575638093351 ], [ -75.232472883915406, 40.032435757676097 ], [ -75.231806339675501, 40.032761662406983 ], [ -75.231031495224499, 40.033104732573399 ], [ -75.2287554824035, 40.034382260336294 ], [ -75.228152128199511, 40.034722166655463 ], [ -75.227197615876634, 40.035259888379017 ], [ -75.226729585967107, 40.035769270535695 ], [ -75.226025715836698, 40.036461781376602 ], [ -75.225978605328052, 40.036417536588708 ], [ -75.225429595489302, 40.035675286405009 ], [ -75.225125251317195, 40.035272650322696 ], [ -75.224013348675626, 40.034329162472929 ], [ -75.223392803913413, 40.033744325246637 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WISSAHICKON", "LISTNAME": "Wissahickon", "MAPNAME": "Wissahickon", "Shape_Leng": 17714.185971800001, "Shape_Area": 9064239.1173500009 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.203616587615087, 40.018541410913173 ], [ -75.203399985257548, 40.018182845838567 ], [ -75.204069990291757, 40.017902902274159 ], [ -75.203823182000804, 40.017531874968327 ], [ -75.204337725890539, 40.017307443653614 ], [ -75.204470781484559, 40.01744010546777 ], [ -75.204954232327069, 40.017226773451753 ], [ -75.205012877007974, 40.017298825411906 ], [ -75.205433703349271, 40.017119479185645 ], [ -75.207155826368691, 40.016591270605844 ], [ -75.207063152552706, 40.015542467869174 ], [ -75.207327058990188, 40.014971450632551 ], [ -75.207900349786172, 40.01362648125464 ], [ -75.207990837733576, 40.013436197165944 ], [ -75.208241628902641, 40.01316083817418 ], [ -75.208647207909735, 40.013440503503084 ], [ -75.210005208416433, 40.014108506859969 ], [ -75.211338524716723, 40.01492466473254 ], [ -75.212217210571779, 40.015462511603658 ], [ -75.212628985537989, 40.015826919074506 ], [ -75.213460213303563, 40.016562513129998 ], [ -75.213635212861377, 40.016719512993298 ], [ -75.214270214665618, 40.017274514129099 ], [ -75.214750216566813, 40.017785515168597 ], [ -75.215750219531301, 40.018846515709683 ], [ -75.216345221071506, 40.019479516455128 ], [ -75.218054224957626, 40.020944519179011 ], [ -75.218542224564899, 40.021192520961939 ], [ -75.218967224577128, 40.021406521180403 ], [ -75.219317031166511, 40.021581995493108 ], [ -75.218705849179429, 40.021928551813652 ], [ -75.218300037627913, 40.022204083219087 ], [ -75.217089330819348, 40.022948449467755 ], [ -75.215393982771715, 40.023890614154595 ], [ -75.214071286485932, 40.022326822570058 ], [ -75.213720826351008, 40.021832859118206 ], [ -75.212606453164341, 40.020450865979136 ], [ -75.211755933629917, 40.019236767828012 ], [ -75.211265622331766, 40.018608019645249 ], [ -75.210671472259321, 40.019699010737703 ], [ -75.209975629209495, 40.020514250367725 ], [ -75.209258935232967, 40.021886154745388 ], [ -75.208490267493772, 40.022709904610529 ], [ -75.207731603747604, 40.023787558407989 ], [ -75.207724891195184, 40.023797092823415 ], [ -75.205237643669648, 40.024947424864166 ], [ -75.204413184361186, 40.025324206818077 ], [ -75.203166793524829, 40.025884088864686 ], [ -75.203156491038712, 40.025894947164431 ], [ -75.20248811562854, 40.02568177943796 ], [ -75.202612259298292, 40.025397175668978 ], [ -75.202694315257133, 40.02519829905048 ], [ -75.202832535934888, 40.024993499066298 ], [ -75.203054329061004, 40.024797721103496 ], [ -75.203242591384594, 40.024709172244584 ], [ -75.202885126062881, 40.024393462111945 ], [ -75.20298464043141, 40.023692311483956 ], [ -75.203406079077268, 40.023514096234123 ], [ -75.203677277072032, 40.022788618177373 ], [ -75.204280476157592, 40.021667242194219 ], [ -75.204190707426122, 40.021458933498046 ], [ -75.204460365777464, 40.021099165579876 ], [ -75.204517239520129, 40.020891107877453 ], [ -75.204067748606391, 40.020203804571153 ], [ -75.203564120044121, 40.019530781369909 ], [ -75.203445364462581, 40.018608366140022 ], [ -75.203616587615087, 40.018541410913173 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "GERMANTOWN_EAST", "LISTNAME": "Germantown, East", "MAPNAME": "East Germantown", "Shape_Leng": 22052.734660900001, "Shape_Area": 25689796.520599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.157863173772469, 40.055197918450332 ], [ -75.157686310146275, 40.055019759728339 ], [ -75.15775339334256, 40.05449802910131 ], [ -75.157747395840943, 40.054315033141336 ], [ -75.157848874472037, 40.053298466449206 ], [ -75.157779653201516, 40.052581751285381 ], [ -75.157871711458426, 40.05201975028141 ], [ -75.157924527285701, 40.050637866069358 ], [ -75.157944843952706, 40.050475610549299 ], [ -75.157974251243672, 40.049706090698649 ], [ -75.158032714671265, 40.049284350890709 ], [ -75.158012792190064, 40.049066949032628 ], [ -75.158067112520115, 40.048753592315791 ], [ -75.158102337813474, 40.048201156899992 ], [ -75.158150423890504, 40.047681555378311 ], [ -75.158155785660497, 40.047171836160295 ], [ -75.158209667242474, 40.046500497784436 ], [ -75.158243648355111, 40.045980577041838 ], [ -75.158247533840623, 40.045115239535399 ], [ -75.158318057951803, 40.043796265063264 ], [ -75.158366673362053, 40.043365173833962 ], [ -75.158369948290598, 40.042858783548283 ], [ -75.15840156783446, 40.042451855104567 ], [ -75.158447584184572, 40.041915311846751 ], [ -75.15841134301327, 40.041494363178991 ], [ -75.158407644565287, 40.041451415806129 ], [ -75.158451050813127, 40.040735933615622 ], [ -75.158468915108756, 40.039426940527008 ], [ -75.158503099271229, 40.038532134084242 ], [ -75.158476588601843, 40.037543313074998 ], [ -75.158330608607301, 40.036737087630001 ], [ -75.15833320712828, 40.036688041020838 ], [ -75.158347650546148, 40.036415434578359 ], [ -75.158878778749269, 40.035922386004209 ], [ -75.159065038341609, 40.036008531974332 ], [ -75.160634941013683, 40.036169697154193 ], [ -75.163335327111227, 40.036431761676894 ], [ -75.166596009702459, 40.03673152029176 ], [ -75.16874929221531, 40.036897311675403 ], [ -75.169766001119655, 40.036978844720558 ], [ -75.171322544181621, 40.037349155494432 ], [ -75.172011572125726, 40.038161079413321 ], [ -75.171986221075315, 40.038425839630051 ], [ -75.171899484017558, 40.039331707414377 ], [ -75.170493993710082, 40.041113922446307 ], [ -75.169553467839691, 40.043340853479563 ], [ -75.169434150070401, 40.044730435949518 ], [ -75.169527303002681, 40.046214203720183 ], [ -75.170004335475511, 40.047655502758417 ], [ -75.170587342826536, 40.049046003325294 ], [ -75.17109287555283, 40.050261223803695 ], [ -75.171403706169386, 40.050896636082769 ], [ -75.172198334948419, 40.051734126650693 ], [ -75.172233560245303, 40.051745537342491 ], [ -75.17219417231135, 40.051783362569743 ], [ -75.168960443266187, 40.054943066873093 ], [ -75.168303066604508, 40.055582067473033 ], [ -75.167557469578398, 40.056306582077909 ], [ -75.166084910081651, 40.057738291349857 ], [ -75.16569138019932, 40.058119979473972 ], [ -75.164730322304919, 40.059100501232123 ], [ -75.163237551226942, 40.058264179207747 ], [ -75.162198284904321, 40.057752632920419 ], [ -75.160762407074756, 40.056906710708169 ], [ -75.158981818684566, 40.055846891291978 ], [ -75.158447409021036, 40.055515006529042 ], [ -75.157863173772469, 40.055197918450332 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "GERMANTOWN_MORTON", "LISTNAME": "Germantown, Morton", "MAPNAME": "Germantown - Morton", "Shape_Leng": 13572.180548099999, "Shape_Area": 10124433.1088 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.171986221075315, 40.038425839630051 ], [ -75.172092314318093, 40.038423138543614 ], [ -75.173105567122136, 40.037463972972432 ], [ -75.173869735011934, 40.036693677552762 ], [ -75.174803018898572, 40.035834636211604 ], [ -75.174811889543648, 40.035825470042219 ], [ -75.175641834288001, 40.036862257924589 ], [ -75.176244626374825, 40.037468891756582 ], [ -75.176514239006565, 40.037786557325695 ], [ -75.176997437639031, 40.038424947893716 ], [ -75.177748450865948, 40.039415390309138 ], [ -75.178748477084994, 40.040615363533092 ], [ -75.17923722737352, 40.041112639566798 ], [ -75.17970947096947, 40.041685655606436 ], [ -75.180073545108243, 40.042134676291212 ], [ -75.180954001881616, 40.043170198685303 ], [ -75.18087372010821, 40.043248002340938 ], [ -75.179612223182119, 40.044482565641246 ], [ -75.177758635400011, 40.046294025685462 ], [ -75.17659857305965, 40.047438329665226 ], [ -75.175545328217623, 40.048441981025469 ], [ -75.174921275656317, 40.049058648370497 ], [ -75.173243856329506, 40.050651977070054 ], [ -75.173284164045, 40.050699995913362 ], [ -75.172810358071871, 40.051191631879725 ], [ -75.172233560245303, 40.051745537342491 ], [ -75.172198334948419, 40.051734126650693 ], [ -75.171403706169386, 40.050896636082769 ], [ -75.17109287555283, 40.050261223803695 ], [ -75.170587342826536, 40.049046003325294 ], [ -75.170004335475511, 40.047655502758417 ], [ -75.169527303002681, 40.046214203720183 ], [ -75.169434150070401, 40.044730435949518 ], [ -75.169553467839691, 40.043340853479563 ], [ -75.170493993710082, 40.041113922446307 ], [ -75.171899484017558, 40.039331707414377 ], [ -75.171986221075315, 40.038425839630051 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "GERMANTOWN_WEST_CENT", "LISTNAME": "Germantown, West Central", "MAPNAME": "West Central Germantown", "Shape_Leng": 17090.451330899999, "Shape_Area": 17048848.22 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.180954001881616, 40.043170198685303 ], [ -75.180073545108243, 40.042134676291212 ], [ -75.17970947096947, 40.041685655606436 ], [ -75.17923722737352, 40.041112639566798 ], [ -75.178748477084994, 40.040615363533092 ], [ -75.177748450865948, 40.039415390309138 ], [ -75.176997437639031, 40.038424947893716 ], [ -75.176514239006565, 40.037786557325695 ], [ -75.176244626374825, 40.037468891756582 ], [ -75.175641834288001, 40.036862257924589 ], [ -75.174811889543648, 40.035825470042219 ], [ -75.174807023610228, 40.035819390843983 ], [ -75.174771442364928, 40.035791896971688 ], [ -75.176477820081587, 40.03410395738792 ], [ -75.177711372011927, 40.032930306033649 ], [ -75.178955008244799, 40.031804167426444 ], [ -75.178977837319778, 40.031783494959207 ], [ -75.180344637738031, 40.030430480708063 ], [ -75.181501100952531, 40.029299846442555 ], [ -75.182757400172093, 40.0281113552468 ], [ -75.183536526067471, 40.02731148327814 ], [ -75.183540967849623, 40.027309039014533 ], [ -75.183548876410072, 40.027315678697057 ], [ -75.184167896354737, 40.027788668128331 ], [ -75.18426199203212, 40.027895191900072 ], [ -75.184757777761206, 40.028294786520597 ], [ -75.185466577070997, 40.028884975688186 ], [ -75.186196116080097, 40.029478058606294 ], [ -75.187379658592207, 40.030432036180287 ], [ -75.187778852320093, 40.030780734121812 ], [ -75.187796080369793, 40.03142014139739 ], [ -75.187662711669702, 40.032076640851116 ], [ -75.187672895756904, 40.032384954751493 ], [ -75.1877073273088, 40.032595076366015 ], [ -75.187738911839304, 40.032800483450998 ], [ -75.187782783097305, 40.032959466341907 ], [ -75.187912444694106, 40.0333974982954 ], [ -75.188088986648594, 40.034164119638994 ], [ -75.188407418740397, 40.034976526442499 ], [ -75.188723974121899, 40.035424614311502 ], [ -75.189175656299994, 40.035790140971002 ], [ -75.189515702929597, 40.036004503003795 ], [ -75.189962761231101, 40.036318558746878 ], [ -75.190315643245597, 40.036612268546499 ], [ -75.190575037358201, 40.036867402375897 ], [ -75.190990580968304, 40.037362410585125 ], [ -75.190088986664605, 40.03824155183829 ], [ -75.188799868327905, 40.039489747966492 ], [ -75.187317463420101, 40.040938492068392 ], [ -75.185677802499427, 40.042667076975199 ], [ -75.184608150369542, 40.043713751905202 ], [ -75.183149703873937, 40.045109017772532 ], [ -75.182312612693934, 40.0459238711572 ], [ -75.181804003173568, 40.044829961628693 ], [ -75.181514680600699, 40.044208481250053 ], [ -75.181289704144163, 40.043665940094726 ], [ -75.181045264701211, 40.043331117213306 ], [ -75.180987036417903, 40.043209051078904 ], [ -75.180954001881616, 40.043170198685303 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "GERMANTOWN_PENN_KNOX", "LISTNAME": "Germantown, Penn Knox", "MAPNAME": "Germantown - Penn Knox", "Shape_Leng": 9550.4126131100002, "Shape_Area": 5075548.6174699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.166605493208962, 40.030952673705428 ], [ -75.166901758368695, 40.030415654650824 ], [ -75.167209227952881, 40.030370339974638 ], [ -75.168306112246185, 40.029219829016803 ], [ -75.168771378945166, 40.02949143944479 ], [ -75.16982932062912, 40.028470613883648 ], [ -75.170568870680185, 40.027782123627787 ], [ -75.171008601811351, 40.027249802521943 ], [ -75.172460673970434, 40.028059640600326 ], [ -75.173624861032948, 40.028712526676259 ], [ -75.174553453727697, 40.029307887844048 ], [ -75.176749127818283, 40.030532286101469 ], [ -75.177879455572636, 40.031184369225542 ], [ -75.178955008244799, 40.031804167426444 ], [ -75.177711372011927, 40.032930306033649 ], [ -75.176477820081587, 40.03410395738792 ], [ -75.174771442364928, 40.035791896971688 ], [ -75.174024979403555, 40.035215099144764 ], [ -75.173957667078042, 40.035160247695849 ], [ -75.173768383443971, 40.035027982601896 ], [ -75.172748302962802, 40.034415498824323 ], [ -75.17214828220078, 40.034015507153342 ], [ -75.170674755880967, 40.033166277980634 ], [ -75.169357249978432, 40.032411238277803 ], [ -75.168848000373472, 40.032207421723236 ], [ -75.168547922567697, 40.032040789336214 ], [ -75.167689611721258, 40.031577470401494 ], [ -75.166644640384789, 40.030975416542574 ], [ -75.166605493208962, 40.030952673705428 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "GERMANTOWN_WESTSIDE", "LISTNAME": "Germantown, Westside", "MAPNAME": "Germantown - Westside", "Shape_Leng": 10355.1783896, "Shape_Area": 6574067.573309999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.171008601811351, 40.027249802521943 ], [ -75.171918596946512, 40.026418088298364 ], [ -75.173699130047453, 40.024637202453768 ], [ -75.174314160181027, 40.024033212633597 ], [ -75.175347255418913, 40.022999639586267 ], [ -75.176884735799135, 40.021489636690674 ], [ -75.176913973355312, 40.021482204470225 ], [ -75.178174678387137, 40.022598590321486 ], [ -75.179108370865322, 40.023382061421842 ], [ -75.17984875862814, 40.024115746289212 ], [ -75.181730728373708, 40.025688558285665 ], [ -75.182076829935994, 40.026079704590558 ], [ -75.183540967849623, 40.027309039014533 ], [ -75.183536526067471, 40.02731148327814 ], [ -75.182757400172093, 40.0281113552468 ], [ -75.181501100952531, 40.029299846442555 ], [ -75.180344637738031, 40.030430480708063 ], [ -75.178977837319778, 40.031783494959207 ], [ -75.178955008244799, 40.031804167426444 ], [ -75.177879455572636, 40.031184369225542 ], [ -75.176749127818283, 40.030532286101469 ], [ -75.174553453727697, 40.029307887844048 ], [ -75.173624861032948, 40.028712526676259 ], [ -75.172460673970434, 40.028059640600326 ], [ -75.171008601811351, 40.027249802521943 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "GERMANTOWN_SOUTHWEST", "LISTNAME": "Germantown, Southwest", "MAPNAME": "Southwest Germantown", "Shape_Leng": 14880.7436082, "Shape_Area": 14418666.022299999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.162078395053769, 40.028294096975849 ], [ -75.161447897150595, 40.027815632026119 ], [ -75.16106094136137, 40.027300913489903 ], [ -75.160598285860146, 40.026756242358722 ], [ -75.160083236276876, 40.026001336018318 ], [ -75.159963776957937, 40.025568927296192 ], [ -75.159947867784226, 40.025015692877218 ], [ -75.159618475906868, 40.023929383706154 ], [ -75.159600940441109, 40.023960413660319 ], [ -75.159043777618777, 40.022809585855747 ], [ -75.159549350959423, 40.022301832769578 ], [ -75.160286646556258, 40.021383975812853 ], [ -75.160671510982922, 40.020499700030051 ], [ -75.160796484560208, 40.020168791057692 ], [ -75.161541931472186, 40.019944450501001 ], [ -75.163932849543585, 40.019224864418945 ], [ -75.164062224225248, 40.019317695005583 ], [ -75.16512357807666, 40.019007194427118 ], [ -75.166147163713575, 40.018705043525017 ], [ -75.167819279561087, 40.018429084680029 ], [ -75.168167734017914, 40.018402078172322 ], [ -75.169648387747628, 40.018215863681817 ], [ -75.171918715823466, 40.017883898639596 ], [ -75.172556061356445, 40.017782241441999 ], [ -75.173271180230785, 40.018412915640312 ], [ -75.174999119348911, 40.019896883543218 ], [ -75.176903121086383, 40.021472596179251 ], [ -75.176913973355312, 40.021482204470225 ], [ -75.176884735799135, 40.021489636690674 ], [ -75.175347255418913, 40.022999639586267 ], [ -75.174314160181027, 40.024033212633597 ], [ -75.173699130047453, 40.024637202453768 ], [ -75.171918596946512, 40.026418088298364 ], [ -75.171008601811351, 40.027249802521943 ], [ -75.170568870680185, 40.027782123627787 ], [ -75.16982932062912, 40.028470613883648 ], [ -75.168771378945166, 40.02949143944479 ], [ -75.168306112246185, 40.029219829016803 ], [ -75.167209227952881, 40.030370339974638 ], [ -75.166901758368695, 40.030415654650824 ], [ -75.166605493208962, 40.030952673705428 ], [ -75.166090817840356, 40.030653663877054 ], [ -75.165461014289136, 40.030290487111998 ], [ -75.164959823950738, 40.030000129673404 ], [ -75.164138365896136, 40.029525442659207 ], [ -75.163740651333754, 40.029286767244876 ], [ -75.163247959756461, 40.029015607469752 ], [ -75.162225480016531, 40.028405714469201 ], [ -75.162078395053769, 40.028294096975849 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "OGONTZ", "LISTNAME": "Ogontz", "MAPNAME": "Ogontz", "Shape_Leng": 17256.582708400001, "Shape_Area": 18032499.751200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.142923324180558, 40.047573053705129 ], [ -75.143145457081602, 40.04654450707627 ], [ -75.143326872633367, 40.045704466967763 ], [ -75.143590140433417, 40.044485385110889 ], [ -75.143912155844518, 40.042994200323783 ], [ -75.144244703818899, 40.04145417357222 ], [ -75.144586245984641, 40.039872422167946 ], [ -75.144766886858307, 40.039095051974606 ], [ -75.144789994389285, 40.039099745168308 ], [ -75.146670774000299, 40.039059853833244 ], [ -75.148509552865079, 40.039018455071982 ], [ -75.150156986363683, 40.039034994426721 ], [ -75.152149784528021, 40.039204688280449 ], [ -75.154488758163367, 40.039506770021916 ], [ -75.157169209366643, 40.040771769415812 ], [ -75.158362808895575, 40.041457547314515 ], [ -75.15841134301327, 40.041494363178991 ], [ -75.158447584184628, 40.041915311846751 ], [ -75.158401567834403, 40.042451855104567 ], [ -75.158369948290485, 40.042858783548283 ], [ -75.158366673361925, 40.043365173833998 ], [ -75.158318057951689, 40.043796265063293 ], [ -75.158247533840509, 40.045115239535434 ], [ -75.158243648355167, 40.045980577041874 ], [ -75.158209667242517, 40.046500497784436 ], [ -75.158155785660441, 40.047171836160324 ], [ -75.158150423890504, 40.047681555378311 ], [ -75.158102337813375, 40.048201156900028 ], [ -75.158067112520015, 40.048753592315784 ], [ -75.158012792190007, 40.049066949032685 ], [ -75.158032714671208, 40.049284350890744 ], [ -75.157974251243516, 40.04970609069867 ], [ -75.157944843952549, 40.050475610549292 ], [ -75.157924527285587, 40.050637866069358 ], [ -75.157871711458426, 40.05201975028141 ], [ -75.157779653201558, 40.052581751285423 ], [ -75.15784887447208, 40.053298466449235 ], [ -75.157747395840843, 40.054315033141336 ], [ -75.157753393342603, 40.054498029101325 ], [ -75.157686310146275, 40.055019759728339 ], [ -75.157863173772313, 40.055197918450368 ], [ -75.157749924133043, 40.055206210202144 ], [ -75.156647344665743, 40.054615026233797 ], [ -75.155630097393626, 40.054160378053076 ], [ -75.155269610996953, 40.053989521833508 ], [ -75.154508444361028, 40.053633936616428 ], [ -75.153817947861313, 40.053299544070782 ], [ -75.153398999616087, 40.053096652975199 ], [ -75.152938406961724, 40.052873590216194 ], [ -75.151718543868498, 40.05235262537434 ], [ -75.150234370011887, 40.051668187677649 ], [ -75.150122531616901, 40.051566393325153 ], [ -75.148658578933308, 40.050767538740516 ], [ -75.146549873136877, 40.049562292585762 ], [ -75.144950516981297, 40.04867128286282 ], [ -75.142968185583172, 40.047578667144293 ], [ -75.142923324180558, 40.047573053705129 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WISTER", "LISTNAME": "Wister", "MAPNAME": "Wister", "Shape_Leng": 15136.0986992, "Shape_Area": 10443333.5228 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.15833320712828, 40.036688041020838 ], [ -75.156218644511839, 40.036659317461101 ], [ -75.155336572436667, 40.035704901708904 ], [ -75.155619611288841, 40.034430914768272 ], [ -75.155940224321853, 40.032987751911328 ], [ -75.155745703017999, 40.032422663361849 ], [ -75.154815829073755, 40.031520071474006 ], [ -75.154847558915691, 40.031515539240985 ], [ -75.156510374078593, 40.031123973350503 ], [ -75.157133169242314, 40.031064831018995 ], [ -75.15812246997109, 40.030827753872458 ], [ -75.159110350239814, 40.030297123859263 ], [ -75.159111128755015, 40.030283821737527 ], [ -75.15957296689237, 40.030092378021891 ], [ -75.160600320762981, 40.029465958236138 ], [ -75.162051235122547, 40.028316817487408 ], [ -75.162078395053769, 40.028294096975849 ], [ -75.162225480016531, 40.028405714469201 ], [ -75.163247959756461, 40.029015607469752 ], [ -75.163740651333754, 40.029286767244876 ], [ -75.164138365896136, 40.029525442659207 ], [ -75.164959823950738, 40.030000129673404 ], [ -75.165461014289136, 40.030290487111998 ], [ -75.166090817840356, 40.030653663877054 ], [ -75.166605493208962, 40.030952673705428 ], [ -75.166644640384789, 40.030975416542574 ], [ -75.167689611721258, 40.031577470401494 ], [ -75.168547922567697, 40.032040789336214 ], [ -75.168848000373472, 40.032207421723236 ], [ -75.169357249978432, 40.032411238277803 ], [ -75.170674755880967, 40.033166277980634 ], [ -75.17214828220078, 40.034015507153342 ], [ -75.172748302962802, 40.034415498824323 ], [ -75.173768383443971, 40.035027982601896 ], [ -75.173957667078042, 40.035160247695849 ], [ -75.174024979403555, 40.035215099144764 ], [ -75.174771442364928, 40.035791896971688 ], [ -75.174807023610228, 40.035819390843983 ], [ -75.174811889543648, 40.035825470042219 ], [ -75.174803018898572, 40.035834636211604 ], [ -75.173869735011934, 40.036693677552762 ], [ -75.173105567122136, 40.037463972972432 ], [ -75.172092314318093, 40.038423138543614 ], [ -75.171986221075315, 40.038425839630051 ], [ -75.172011572125726, 40.038161079413321 ], [ -75.171322544181621, 40.037349155494432 ], [ -75.169766001119655, 40.036978844720558 ], [ -75.16874929221531, 40.036897311675403 ], [ -75.166596009702459, 40.03673152029176 ], [ -75.163335327111227, 40.036431761676894 ], [ -75.160634941013683, 40.036169697154193 ], [ -75.159065038341609, 40.036008531974332 ], [ -75.158878778749269, 40.035922386004209 ], [ -75.158347650546148, 40.036415434578359 ], [ -75.15833320712828, 40.036688041020838 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "NICETOWN", "LISTNAME": "Nicetown", "MAPNAME": "Nicetown", "Shape_Leng": 11237.318154000001, "Shape_Area": 6587595.7642700011 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.149055299017107, 40.019614146449982 ], [ -75.149370338684463, 40.01812619706552 ], [ -75.149613971886751, 40.016989674388398 ], [ -75.149665860072162, 40.016998036156693 ], [ -75.151584768523307, 40.016968728984658 ], [ -75.15384072328068, 40.015975239220147 ], [ -75.15519719662781, 40.015302449600661 ], [ -75.157989092496337, 40.014065189488839 ], [ -75.159457093671705, 40.013373552277692 ], [ -75.161773896577259, 40.012232066337063 ], [ -75.161840940030473, 40.014109458528978 ], [ -75.161825295598092, 40.016970152760457 ], [ -75.161813080160698, 40.019203549236614 ], [ -75.161541931472186, 40.019944450501001 ], [ -75.160796484560208, 40.020168791057692 ], [ -75.160701835474711, 40.020197276594196 ], [ -75.159291801127367, 40.020448814869631 ], [ -75.157042064570206, 40.020599519017871 ], [ -75.156394431305813, 40.020616374288736 ], [ -75.153804855068969, 40.020230424542383 ], [ -75.15222368648601, 40.020030947722269 ], [ -75.150667798722779, 40.019813131458825 ], [ -75.149055299017107, 40.019614146449982 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "TIOGA", "LISTNAME": "Tioga", "MAPNAME": "Tioga", "Shape_Leng": 27189.667080700001, "Shape_Area": 31627964.4932 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.161813080160698, 40.01920354923665 ], [ -75.161825295598021, 40.016970152760493 ], [ -75.161840940030459, 40.01410945852902 ], [ -75.161773896577202, 40.012232066337106 ], [ -75.159457093671762, 40.013373552277692 ], [ -75.15798909249618, 40.014065189488839 ], [ -75.15519719662764, 40.015302449600661 ], [ -75.153840723280723, 40.01597523922019 ], [ -75.151584768523236, 40.0169687289847 ], [ -75.149665860072162, 40.016998036156735 ], [ -75.149613971886708, 40.016989674388448 ], [ -75.149769696414907, 40.016263217121143 ], [ -75.150070222692975, 40.014839330603536 ], [ -75.150635076314984, 40.012441767336654 ], [ -75.150917037122596, 40.010842866028767 ], [ -75.151249179295419, 40.009301747208895 ], [ -75.151462186102549, 40.00829935919932 ], [ -75.151951688832639, 40.006220172592947 ], [ -75.152242487981624, 40.004718465266166 ], [ -75.152922887487847, 40.001620245083807 ], [ -75.152929319188473, 40.001591121980837 ], [ -75.154518443418254, 40.001806357561811 ], [ -75.157705963455584, 40.002219490843444 ], [ -75.157766806134788, 40.002227395487175 ], [ -75.159471355407689, 40.002448848255149 ], [ -75.160819664762883, 40.002630869624134 ], [ -75.162462238233957, 40.002838605907257 ], [ -75.163167201083837, 40.002926442433356 ], [ -75.163849338383045, 40.003011407770543 ], [ -75.164371715286606, 40.003076471019661 ], [ -75.165919753678693, 40.003273730052292 ], [ -75.165822414031311, 40.00388414476658 ], [ -75.165798677336966, 40.00399767048242 ], [ -75.165612344065735, 40.004851058258517 ], [ -75.166063289941306, 40.004914539587176 ], [ -75.167583709299223, 40.005221605181141 ], [ -75.170246913356962, 40.006013220506915 ], [ -75.170953066842941, 40.006210131224393 ], [ -75.172280123118284, 40.007883090981807 ], [ -75.174087655959241, 40.009863730670297 ], [ -75.176046746371213, 40.012010278759377 ], [ -75.176968919163784, 40.013043951375522 ], [ -75.178109936604798, 40.014314793436071 ], [ -75.178319665868884, 40.014502296449734 ], [ -75.175848693820484, 40.016115923673382 ], [ -75.175248661519689, 40.016515913681999 ], [ -75.172556061356445, 40.017782241441999 ], [ -75.171918715823466, 40.017883898639596 ], [ -75.169648387747628, 40.018215863681817 ], [ -75.168167734017743, 40.018402078172365 ], [ -75.167819279561073, 40.018429084680079 ], [ -75.166147163713518, 40.018705043525081 ], [ -75.16512357807666, 40.019007194427118 ], [ -75.164062224225091, 40.019317695005576 ], [ -75.163932849543585, 40.019224864418945 ], [ -75.161541931472087, 40.019944450501001 ], [ -75.161813080160698, 40.01920354923665 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "ALLEGHENY_WEST", "LISTNAME": "Allegheny West", "MAPNAME": "Allegheny West", "Shape_Leng": 24468.906442700001, "Shape_Area": 32220705.181200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.165919753678693, 40.003273730052292 ], [ -75.166580093865591, 40.000208612586505 ], [ -75.167213326943823, 39.997232149950889 ], [ -75.167582341373446, 39.995646334545143 ], [ -75.167605260940803, 39.99564917936064 ], [ -75.168200719243458, 39.995723268863294 ], [ -75.168691625460156, 39.995784933231356 ], [ -75.169261382031891, 39.995855982069607 ], [ -75.16983292004511, 39.995927408685674 ], [ -75.170286859491114, 39.995984411230879 ], [ -75.170829625095223, 39.996052208282713 ], [ -75.171466573278622, 39.996131912725332 ], [ -75.171905641211282, 39.996187702522199 ], [ -75.172417003887645, 39.996250702323607 ], [ -75.173994583233366, 39.996448182113227 ], [ -75.175608570170979, 39.996649406574122 ], [ -75.177051773902136, 39.996807058731619 ], [ -75.177620712226485, 39.996879774610896 ], [ -75.178067362495511, 39.996936966580712 ], [ -75.178671137514343, 39.99701419343053 ], [ -75.17928334060052, 39.997092806893363 ], [ -75.180354821585141, 39.99724146089271 ], [ -75.181846311613484, 39.997429895428425 ], [ -75.182451402315735, 39.997506121624909 ], [ -75.18453811677081, 39.997768970760923 ], [ -75.185149352452882, 39.997816335473907 ], [ -75.186649420728969, 39.998016337039772 ], [ -75.18774947167104, 39.998116339283577 ], [ -75.187749470579476, 39.998516336423101 ], [ -75.187130107403249, 40.000271762880345 ], [ -75.187290727716118, 40.000230862019556 ], [ -75.188696085212101, 40.000162133091301 ], [ -75.189749847281519, 39.999829746729311 ], [ -75.190573378748084, 39.999645508006559 ], [ -75.190734855048603, 39.999638775904764 ], [ -75.190812434451402, 39.99963554116421 ], [ -75.191949660696849, 39.999716338064999 ], [ -75.191549583709943, 40.003716246348283 ], [ -75.192316898992686, 40.005853399715363 ], [ -75.192722620403302, 40.006467334817593 ], [ -75.191877557359703, 40.006575809367241 ], [ -75.191737656098226, 40.00659815214901 ], [ -75.191742354647431, 40.006649178050317 ], [ -75.19208280000025, 40.007036650932427 ], [ -75.192205605112221, 40.007119125374139 ], [ -75.192343210375697, 40.007201928538521 ], [ -75.192245608218713, 40.007291439160859 ], [ -75.190684333132651, 40.008339308125272 ], [ -75.189826015259484, 40.008866365344261 ], [ -75.189417702899206, 40.009087918402408 ], [ -75.187127263464291, 40.009966421210471 ], [ -75.186959499165781, 40.009989730184742 ], [ -75.185856566872843, 40.010351054037315 ], [ -75.185089366651297, 40.010588479100811 ], [ -75.184139140810501, 40.01092806060776 ], [ -75.182554455335932, 40.01182106145653 ], [ -75.181108482537368, 40.012680950127674 ], [ -75.178319665868884, 40.014502296449734 ], [ -75.178109936604798, 40.014314793436071 ], [ -75.176968919163784, 40.013043951375522 ], [ -75.176046746371213, 40.012010278759377 ], [ -75.174087655959241, 40.009863730670297 ], [ -75.172280123118284, 40.007883090981807 ], [ -75.170953066842941, 40.006210131224393 ], [ -75.170246913356962, 40.006013220506915 ], [ -75.167583709299223, 40.005221605181141 ], [ -75.166063289941306, 40.004914539587176 ], [ -75.165612344065735, 40.004851058258517 ], [ -75.165798677336966, 40.00399767048242 ], [ -75.165822414031311, 40.00388414476658 ], [ -75.165919753678693, 40.003273730052292 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "GLENWOOD", "LISTNAME": "Glenwood", "MAPNAME": "Glenwood", "Shape_Leng": 12350.882116000001, "Shape_Area": 9652807.9537799992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.152929319188473, 40.001591121980837 ], [ -75.153267689213678, 40.000008253325035 ], [ -75.153527548929731, 39.998500464359601 ], [ -75.15360754619617, 39.998135773268025 ], [ -75.153623264562739, 39.998064116958439 ], [ -75.153646938530883, 39.997956192723841 ], [ -75.153711990888283, 39.997659630789997 ], [ -75.153896629700569, 39.996817879710044 ], [ -75.153993334325165, 39.996783735417537 ], [ -75.155502689955853, 39.99618070573932 ], [ -75.155944472802716, 39.996027145706179 ], [ -75.157559588341343, 39.99546572283694 ], [ -75.159292057660664, 39.994819526711964 ], [ -75.159795333228473, 39.994633707235984 ], [ -75.159805111702553, 39.994634990218763 ], [ -75.164187434156531, 39.995210019964262 ], [ -75.165045871178876, 39.995328381534904 ], [ -75.166070229434709, 39.995458595780796 ], [ -75.167582341373446, 39.995646334545143 ], [ -75.167213326943823, 39.997232149950889 ], [ -75.166580093865591, 40.000208612586505 ], [ -75.165919753678693, 40.003273730052292 ], [ -75.164371715286606, 40.003076471019661 ], [ -75.163849338383045, 40.003011407770543 ], [ -75.163167201083837, 40.002926442433356 ], [ -75.162462238233957, 40.002838605907257 ], [ -75.160819664762883, 40.002630869624134 ], [ -75.159471355407689, 40.002448848255149 ], [ -75.157766806134788, 40.002227395487175 ], [ -75.157705963455584, 40.002219490843444 ], [ -75.154518443418254, 40.001806357561811 ], [ -75.152929319188473, 40.001591121980837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "FERN_ROCK", "LISTNAME": "Fern Rock", "MAPNAME": "Fern Rock", "Shape_Leng": 11426.5545597, "Shape_Area": 8325509.4549500011 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.134862139324582, 40.046194066460501 ], [ -75.134736573372194, 40.046025325945038 ], [ -75.134784464589316, 40.038891989029707 ], [ -75.135076707678351, 40.038648382290965 ], [ -75.135857977499057, 40.037198260889873 ], [ -75.136473943757935, 40.037244326123265 ], [ -75.13789798133817, 40.037584889942089 ], [ -75.140186741106362, 40.03810776433567 ], [ -75.141799144377572, 40.038452252100889 ], [ -75.144766886858307, 40.039095051974606 ], [ -75.144586245984698, 40.03987242216796 ], [ -75.144244703819055, 40.04145417357217 ], [ -75.143912155844518, 40.042994200323733 ], [ -75.143590140433417, 40.044485385110889 ], [ -75.143326872633438, 40.045704466967727 ], [ -75.143145457081744, 40.046544507076284 ], [ -75.142923324180714, 40.047573053705086 ], [ -75.139158407881865, 40.047100034291681 ], [ -75.137571681463783, 40.046840848898213 ], [ -75.136746533517794, 40.046680099978055 ], [ -75.136063321567633, 40.04626289857984 ], [ -75.134862139324582, 40.046194066460501 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "EAST_OAK_LANE", "LISTNAME": "East Oak Lane", "MAPNAME": "East Oak Lane", "Shape_Leng": 20501.356627699999, "Shape_Area": 24048138.6303 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.123372260921983, 40.046639094652207 ], [ -75.123565889387152, 40.045598534596408 ], [ -75.123625576275145, 40.045052015543341 ], [ -75.123630723016802, 40.045052708987008 ], [ -75.12563511021537, 40.045284274858531 ], [ -75.126625545747018, 40.045447937490927 ], [ -75.12738895624129, 40.045558424778456 ], [ -75.128543879531165, 40.045725901222958 ], [ -75.129541800731317, 40.045870576044649 ], [ -75.130415504791472, 40.045997234997962 ], [ -75.131304169309061, 40.046016280522295 ], [ -75.132157472715221, 40.046057948779392 ], [ -75.132882871574083, 40.046093365265762 ], [ -75.134862139324582, 40.046194066460501 ], [ -75.136063321567633, 40.04626289857984 ], [ -75.136746533517794, 40.046680099978055 ], [ -75.137571681463783, 40.046840848898213 ], [ -75.139158407881865, 40.047100034291681 ], [ -75.142923324180714, 40.047573053705086 ], [ -75.14255887887991, 40.049260482634693 ], [ -75.142514939017303, 40.049463924367899 ], [ -75.1422985607214, 40.050636782520613 ], [ -75.142317204101388, 40.050638723980562 ], [ -75.142308497878517, 40.050642254743863 ], [ -75.141703194313294, 40.053209072603558 ], [ -75.141295655807795, 40.05522804791385 ], [ -75.140625087775661, 40.05826421801288 ], [ -75.139809573005692, 40.062003349739669 ], [ -75.139526991377963, 40.063388665476722 ], [ -75.139519268837574, 40.063416016113997 ], [ -75.139425510123132, 40.063359206488038 ], [ -75.139311510552602, 40.063291206604859 ], [ -75.139215509606501, 40.063236206449908 ], [ -75.136946507888524, 40.061936201846713 ], [ -75.136717508134439, 40.061822201263553 ], [ -75.136526508611709, 40.061730200778115 ], [ -75.135191507731577, 40.061032197611766 ], [ -75.135122507749102, 40.060990197455446 ], [ -75.13488650777272, 40.060853197391047 ], [ -75.134390506554482, 40.060533196432459 ], [ -75.134085506351425, 40.060338195461107 ], [ -75.133314505658802, 40.059819193794581 ], [ -75.132528505016694, 40.059300192698139 ], [ -75.131681504051684, 40.05877819001622 ], [ -75.130400503721461, 40.057965187964541 ], [ -75.130133503046125, 40.057797187395039 ], [ -75.130044503030476, 40.057740187231417 ], [ -75.129812503040313, 40.057591186550965 ], [ -75.129019502472488, 40.057092185201697 ], [ -75.128553502427522, 40.0568131836581 ], [ -75.128486501790746, 40.056773183759326 ], [ -75.127088501015251, 40.055932181138324 ], [ -75.126779798869777, 40.05575177181418 ], [ -75.126413128812871, 40.055537481960229 ], [ -75.126318500796714, 40.055482179301094 ], [ -75.124914500158809, 40.054685175546972 ], [ -75.124617499750883, 40.054521175686808 ], [ -75.124449500086371, 40.054429175318539 ], [ -75.123870781619303, 40.054121079279859 ], [ -75.123754499042235, 40.054059173115263 ], [ -75.12359601461111, 40.053974552123798 ], [ -75.123312499821111, 40.053823172265538 ], [ -75.122904650794041, 40.053597756508374 ], [ -75.122145499275305, 40.053178169525687 ], [ -75.122140790860712, 40.053175497497001 ], [ -75.122146373307729, 40.05315520889949 ], [ -75.122564778836875, 40.051279250105956 ], [ -75.122810030048953, 40.049708163050802 ], [ -75.123134643587491, 40.047873155219108 ], [ -75.123372260921983, 40.046639094652207 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "MELROSE_PARK_GARDENS", "LISTNAME": "Melrose Park Gardens", "MAPNAME": "Melrose Park Gardens", "Shape_Leng": 11457.265262200001, "Shape_Area": 7205121.6989900004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.111100505260779, 40.046836900394737 ], [ -75.111133417051434, 40.046792901591374 ], [ -75.111276597317186, 40.046546820800621 ], [ -75.111324997801105, 40.046283894636396 ], [ -75.111309505317649, 40.045946156947011 ], [ -75.111327305813816, 40.04573386835137 ], [ -75.111281500232323, 40.04543944043786 ], [ -75.111232273226648, 40.045232946293758 ], [ -75.111183331447279, 40.045019125206046 ], [ -75.111143069533014, 40.044827505715382 ], [ -75.111081744232436, 40.044686743725002 ], [ -75.111077340525654, 40.044554623021462 ], [ -75.11113967854125, 40.044424035777787 ], [ -75.111434265622549, 40.044210771848093 ], [ -75.111845544000914, 40.043941510903139 ], [ -75.11205517177298, 40.04370429084598 ], [ -75.112078490912239, 40.043690742474041 ], [ -75.112118641183656, 40.043667242275731 ], [ -75.112227223335452, 40.043574389334992 ], [ -75.112291761834257, 40.043509861357599 ], [ -75.112358360254532, 40.04351505802299 ], [ -75.112429013753584, 40.043538683686002 ], [ -75.112504434424565, 40.043562418778684 ], [ -75.112593729317638, 40.043597473967196 ], [ -75.112687364241452, 40.043643630288635 ], [ -75.112753820430541, 40.043652490636994 ], [ -75.112781676471684, 40.043662407242408 ], [ -75.113045614211032, 40.043756369837482 ], [ -75.113241964784834, 40.043683259657669 ], [ -75.11595217946595, 40.044011219233525 ], [ -75.116935391573961, 40.044147282478669 ], [ -75.117514518547296, 40.044208669804078 ], [ -75.119526110717828, 40.044505760717207 ], [ -75.120148285997729, 40.044591840942097 ], [ -75.12078793674381, 40.044680336100043 ], [ -75.121410468495185, 40.044766459923409 ], [ -75.122083049548209, 40.044863775518152 ], [ -75.122819393159602, 40.044943400677425 ], [ -75.123625576275145, 40.045052015543341 ], [ -75.123565889387152, 40.045598534596408 ], [ -75.123372260921983, 40.046639094652207 ], [ -75.123134643587491, 40.047873155219108 ], [ -75.122810030048953, 40.049708163050802 ], [ -75.122564778836875, 40.051279250105956 ], [ -75.122146373307729, 40.05315520889949 ], [ -75.122140790860712, 40.053175497497001 ], [ -75.121641498258271, 40.052892168421614 ], [ -75.120825498003995, 40.052426167147033 ], [ -75.120016498704786, 40.051965164908893 ], [ -75.119543497466168, 40.051698163748732 ], [ -75.119465497863771, 40.051654163602429 ], [ -75.118769497430236, 40.051255162475471 ], [ -75.118650497779754, 40.051187161715191 ], [ -75.118551498011271, 40.051133161413979 ], [ -75.1171024972314, 40.050305158774584 ], [ -75.115034496138506, 40.049119153869029 ], [ -75.114504496322198, 40.048807152463191 ], [ -75.112910496246101, 40.047883149017757 ], [ -75.112869495661499, 40.0478591485819 ], [ -75.112361495770514, 40.047564147838159 ], [ -75.112053495609416, 40.04738614686736 ], [ -75.111139495434116, 40.04685914515224 ], [ -75.111100505260779, 40.046836900394737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "FRANKLINVILLE", "LISTNAME": "Franklinville", "MAPNAME": "Franklinville", "Shape_Leng": 17874.535081400001, "Shape_Area": 14189794.730699999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.131929524136225, 40.005198717674737 ], [ -75.131976137436396, 40.005198199532543 ], [ -75.132746885556614, 40.005216072397836 ], [ -75.134167798452708, 40.00491589356686 ], [ -75.134735110195095, 40.004796038630026 ], [ -75.135600324894668, 40.004543522491986 ], [ -75.13768164921818, 40.003731196371554 ], [ -75.138338092993735, 40.003500777095084 ], [ -75.139070835379997, 40.003243570607971 ], [ -75.139462535222847, 40.003106073788523 ], [ -75.139881119906292, 40.002962627591856 ], [ -75.139873566329513, 40.002933433047339 ], [ -75.140054758735872, 40.00196883517296 ], [ -75.141473632467537, 40.001437144359201 ], [ -75.143337029350448, 40.000743618014198 ], [ -75.146197078185992, 39.999678468224054 ], [ -75.148788422614629, 39.998712282259049 ], [ -75.151492660206387, 39.997696034538357 ], [ -75.153416605881205, 39.996977441678723 ], [ -75.153896629700569, 39.996817879710044 ], [ -75.153711990888283, 39.997659630789997 ], [ -75.153646938530883, 39.997956192723841 ], [ -75.153623264562739, 39.998064116958439 ], [ -75.15360754619617, 39.998135773268025 ], [ -75.153527548929731, 39.998500464359601 ], [ -75.153267689213678, 40.000008253325035 ], [ -75.152929319188473, 40.001591121980837 ], [ -75.152922887487847, 40.001620245083807 ], [ -75.152242487981624, 40.004718465266166 ], [ -75.151951688832639, 40.006220172592947 ], [ -75.151462186102549, 40.00829935919932 ], [ -75.151249179295419, 40.009301747208895 ], [ -75.149961444231977, 40.009195549879031 ], [ -75.148508515676554, 40.008988128661734 ], [ -75.14765528196537, 40.008879692927792 ], [ -75.147654059965689, 40.008885620955184 ], [ -75.145931729864429, 40.008684307640458 ], [ -75.14335580273854, 40.008358633181167 ], [ -75.14056943498224, 40.0079735852973 ], [ -75.13884732001867, 40.007759921117746 ], [ -75.136850776895827, 40.007490903540031 ], [ -75.136828740762979, 40.007487647474449 ], [ -75.134058446491025, 40.007078293508705 ], [ -75.131652006599111, 40.006816952272224 ], [ -75.131946957671545, 40.005326816403183 ], [ -75.131929524136225, 40.005198717674737 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "FELTONVILLE", "LISTNAME": "Feltonville", "MAPNAME": "Feltonville", "Shape_Leng": 22648.9887485, "Shape_Area": 27907972.478599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.112774703239069, 40.027273871990865 ], [ -75.112805606013396, 40.026939408260581 ], [ -75.11280698751662, 40.026931091062508 ], [ -75.112503620745784, 40.025905337619726 ], [ -75.112184963906145, 40.025791279002604 ], [ -75.111657981452169, 40.025770034035737 ], [ -75.111329743024527, 40.025558532734621 ], [ -75.111372166792492, 40.025227485774842 ], [ -75.111568162237788, 40.024628104015882 ], [ -75.11150382417415, 40.024355143825197 ], [ -75.111201527213751, 40.023207615904887 ], [ -75.11137503722847, 40.023031574318416 ], [ -75.11269936588468, 40.021697410784498 ], [ -75.11379141263825, 40.020623709553298 ], [ -75.114069149714453, 40.020298460220936 ], [ -75.112922055143528, 40.020152521698783 ], [ -75.110498416201395, 40.019849586886615 ], [ -75.110874649312947, 40.018216003905607 ], [ -75.111066684225861, 40.017222376956092 ], [ -75.111349439191272, 40.015867910285621 ], [ -75.111360827087097, 40.015859562689386 ], [ -75.11149637156754, 40.015170914660409 ], [ -75.111850281149472, 40.013671722834381 ], [ -75.112222149989634, 40.012137703609348 ], [ -75.112236919050602, 40.012084626363468 ], [ -75.113002534360106, 40.01219499638492 ], [ -75.115861558674936, 40.012560046036668 ], [ -75.117320772787252, 40.012753042650189 ], [ -75.119430347425094, 40.013032021410169 ], [ -75.122336949733636, 40.013388925995962 ], [ -75.125976563098362, 40.013862316034668 ], [ -75.12989742631737, 40.014387375300451 ], [ -75.132322168530607, 40.014696733049796 ], [ -75.135174877351048, 40.015075299953082 ], [ -75.134821451856254, 40.01665738647042 ], [ -75.134502436852827, 40.018159948020255 ], [ -75.134195700094836, 40.019614602007515 ], [ -75.134177899652343, 40.019688422633912 ], [ -75.133922192976129, 40.020748773902362 ], [ -75.133679367388808, 40.021899705168487 ], [ -75.133522580626135, 40.022715295574848 ], [ -75.133325014306834, 40.023539349633985 ], [ -75.133258195872656, 40.023848249650811 ], [ -75.127221351788648, 40.025028917030866 ], [ -75.123494764780816, 40.025656291830394 ], [ -75.119517400445105, 40.026141859303991 ], [ -75.117147585094941, 40.026655050867163 ], [ -75.116043605583883, 40.026876200566605 ], [ -75.115559142394488, 40.026967782784027 ], [ -75.114662458415225, 40.027125212506782 ], [ -75.112764331134116, 40.027386134350436 ], [ -75.112774703239069, 40.027273871990865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "RICHMOND", "LISTNAME": "Richmond", "MAPNAME": "Richmond", "Shape_Leng": 45405.154627199998, "Shape_Area": 78360637.682999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.075287104132741, 39.988619034144456 ], [ -75.073795836730199, 39.987469226619837 ], [ -75.071791532527911, 39.985923760758268 ], [ -75.071692029730016, 39.986006059604897 ], [ -75.071588647067486, 39.986091568321825 ], [ -75.071553195637108, 39.986120890560237 ], [ -75.071182237952172, 39.985896286526184 ], [ -75.070971262509801, 39.985802442193567 ], [ -75.070763290809751, 39.985632452215363 ], [ -75.070699150590798, 39.985550330503735 ], [ -75.070629009720264, 39.985522505883303 ], [ -75.07050691291974, 39.985450864178446 ], [ -75.070466238114321, 39.985431598069638 ], [ -75.070450453450363, 39.98542609806703 ], [ -75.070296301604273, 39.985403416209444 ], [ -75.070284233137713, 39.985406922360688 ], [ -75.070253313862622, 39.98542139186884 ], [ -75.07022273087766, 39.985449986720454 ], [ -75.070117312749375, 39.985655994076069 ], [ -75.070081137246049, 39.985713269051899 ], [ -75.070028349668206, 39.98584394134641 ], [ -75.069838854497803, 39.986042758871328 ], [ -75.069580360571294, 39.986316181671242 ], [ -75.067857573907304, 39.985615390430979 ], [ -75.065735940681094, 39.984986508434744 ], [ -75.065448515177948, 39.984906116422636 ], [ -75.06551451600599, 39.984849117068073 ], [ -75.065579516116756, 39.984791117538812 ], [ -75.065641516064375, 39.984736117642171 ], [ -75.065650515662668, 39.984729118031531 ], [ -75.065701516145822, 39.984684118255601 ], [ -75.06574651614892, 39.984644118538817 ], [ -75.06706751637121, 39.983484126940006 ], [ -75.067576516613386, 39.983118129935292 ], [ -75.067653167213209, 39.983063078642679 ], [ -75.067826593791267, 39.982938521484947 ], [ -75.068591516915447, 39.982389136454231 ], [ -75.068800516877346, 39.982241137828751 ], [ -75.069963752680962, 39.981415746680192 ], [ -75.071262516232935, 39.980494152439775 ], [ -75.071504516011757, 39.980358153686083 ], [ -75.075603513958697, 39.978042175109245 ], [ -75.080198506743244, 39.97702119307786 ], [ -75.082459502830545, 39.976251202914071 ], [ -75.083029502994748, 39.976057204952717 ], [ -75.085829498812359, 39.975103217033336 ], [ -75.087138496242261, 39.975010220890418 ], [ -75.089656490283332, 39.974831228985515 ], [ -75.090859487705686, 39.974745233325542 ], [ -75.091450486361353, 39.974663235362542 ], [ -75.091770886020328, 39.974619019695517 ], [ -75.09236348415628, 39.974537237947693 ], [ -75.093664481917159, 39.974356242563879 ], [ -75.094023999928567, 39.974306557815908 ], [ -75.094334639149025, 39.974683881099345 ], [ -75.09594956342012, 39.976739909159896 ], [ -75.097574390701396, 39.978651976864612 ], [ -75.098514053887612, 39.979636866314976 ], [ -75.099694334175325, 39.980973445620975 ], [ -75.100519132399228, 39.981895467143758 ], [ -75.101015630673558, 39.982431388776448 ], [ -75.102811506619986, 39.981497472055338 ], [ -75.104098827569302, 39.980759521849414 ], [ -75.107330351900686, 39.979660127811215 ], [ -75.109129998003738, 39.979159777681517 ], [ -75.111030714075739, 39.978323111618003 ], [ -75.113446985723655, 39.977054302923612 ], [ -75.114062076818655, 39.977683875714973 ], [ -75.114355577374582, 39.97802784906915 ], [ -75.114608334888203, 39.978292199100849 ], [ -75.11481773329507, 39.978544312440079 ], [ -75.115195785392316, 39.978968913755139 ], [ -75.115544645169393, 39.979392842583941 ], [ -75.115866923334096, 39.979748715455827 ], [ -75.116189204946693, 39.980104585622698 ], [ -75.116889127799126, 39.980896282740851 ], [ -75.117395155527078, 39.981456515098145 ], [ -75.117407543968156, 39.981470230022282 ], [ -75.119188757432624, 39.98355142712191 ], [ -75.119689243445137, 39.984114684029812 ], [ -75.120250448394927, 39.984757987795064 ], [ -75.120905026968714, 39.985482689272978 ], [ -75.121211038766404, 39.985823260293103 ], [ -75.121509131316515, 39.986168173084089 ], [ -75.122257056602848, 39.987062809399596 ], [ -75.122416168467481, 39.987003977413544 ], [ -75.122912893120215, 39.987465145945585 ], [ -75.123386356079195, 39.987918723834341 ], [ -75.124374055205521, 39.988824732034921 ], [ -75.125490140157012, 39.989839188034644 ], [ -75.125090793797, 39.990057792943169 ], [ -75.124988205864639, 39.990113949036072 ], [ -75.124838512178044, 39.990195890650355 ], [ -75.124649658682003, 39.990299268132929 ], [ -75.124519587008436, 39.990370468407299 ], [ -75.124358514425481, 39.990448953164403 ], [ -75.123686154201494, 39.990838280600109 ], [ -75.122558200951602, 39.991430314775251 ], [ -75.121551046791396, 39.992002533416866 ], [ -75.120308366056534, 39.992674984194878 ], [ -75.119693622532367, 39.993018909224183 ], [ -75.118271430330125, 39.993806196822952 ], [ -75.118042252179251, 39.993928639247216 ], [ -75.115778088353352, 39.995169868232828 ], [ -75.114886527206821, 39.995652438487326 ], [ -75.114437713089742, 39.995905306692741 ], [ -75.114222212755323, 39.996023747167193 ], [ -75.113996177620706, 39.996147976771965 ], [ -75.11346350337044, 39.996451739759763 ], [ -75.113444625907277, 39.996432272804562 ], [ -75.113016595361572, 39.995996053214121 ], [ -75.112211459501339, 39.995175495456031 ], [ -75.110258132591198, 39.992959491421153 ], [ -75.109339476343735, 39.991911970752192 ], [ -75.108312420027389, 39.990733751203358 ], [ -75.1070470935407, 39.989315364098331 ], [ -75.10632475309049, 39.988526424865015 ], [ -75.104934869827645, 39.989248123149224 ], [ -75.103768174096203, 39.98984663160735 ], [ -75.10146010866589, 39.991044197852311 ], [ -75.099139267734571, 39.992241424338587 ], [ -75.096881812851663, 39.993440070996783 ], [ -75.094369640917733, 39.994652326555453 ], [ -75.091929719602575, 39.995963920392548 ], [ -75.089308925271197, 39.997349448824458 ], [ -75.086948805310612, 39.998565071839153 ], [ -75.086492892587458, 39.9987966224028 ], [ -75.086327423379643, 39.998883958095561 ], [ -75.085785756795588, 39.998345475107108 ], [ -75.083722646795479, 39.996765658440118 ], [ -75.083717390211248, 39.996761450125646 ], [ -75.083713062749609, 39.996757985125434 ], [ -75.083708017572974, 39.996753614129119 ], [ -75.083702973602783, 39.996749242259632 ], [ -75.083698687972216, 39.996744771773415 ], [ -75.08369348813504, 39.996740520625401 ], [ -75.083688360824013, 39.996736212594726 ], [ -75.083683899378542, 39.996732848099761 ], [ -75.083679603377874, 39.996729357699024 ], [ -75.083675850364429, 39.996726419633106 ], [ -75.083671695727773, 39.996722819886656 ], [ -75.083666201683513, 39.996718572714855 ], [ -75.083660005062185, 39.996713630740686 ], [ -75.083654304084462, 39.996709014742336 ], [ -75.083649882469842, 39.996705620536147 ], [ -75.083645751934043, 39.996701586148269 ], [ -75.083641196971755, 39.99669773922691 ], [ -75.083636867177248, 39.996694274169414 ], [ -75.083632550865701, 39.996691122084428 ], [ -75.083628864317646, 39.996688132399875 ], [ -75.083625177734774, 39.99668514361538 ], [ -75.083620261546173, 39.996681157650862 ], [ -75.083615346493431, 39.996677172613602 ], [ -75.083610430270824, 39.996673187548872 ], [ -75.083605101756845, 39.996668872136709 ], [ -75.083598948624683, 39.996663896930023 ], [ -75.083594034744905, 39.996659911919018 ], [ -75.083590348200232, 39.996656922233214 ], [ -75.083586661620743, 39.99665393344749 ], [ -75.083582975076723, 39.996650943761452 ], [ -75.083579289668123, 39.996647955002693 ], [ -75.083574374655541, 39.996643969063413 ], [ -75.083570059520525, 39.996640817003311 ], [ -75.083565729697909, 39.996637352843358 ], [ -75.083561177120885, 39.996633505072964 ], [ -75.08355635359338, 39.996629039204045 ], [ -75.083551379286391, 39.996625101443172 ], [ -75.083546405015312, 39.996621162781786 ], [ -75.0835421937185, 39.996617604062685 ], [ -75.083537706612475, 39.99661426689768 ], [ -75.083532692580548, 39.996610028168043 ], [ -75.083527265091291, 39.996605488797741 ], [ -75.083522037271706, 39.996601085617286 ], [ -75.083517869209942, 39.996597499969624 ], [ -75.083513554962138, 39.996594027159027 ], [ -75.083508090332046, 39.996589986098812 ], [ -75.083503463241954, 39.996585291423045 ], [ -75.08349973907761, 39.996582335099426 ], [ -75.08349579221283, 39.996578576184874 ], [ -75.083491441686832, 39.996575132264788 ], [ -75.083487091161544, 39.996571688344545 ], [ -75.083482130473556, 39.996566270494647 ], [ -75.08347609670011, 39.996561209752507 ], [ -75.083470065409827, 39.996556145463607 ], [ -75.08346494149697, 39.996551841105322 ], [ -75.083460120480822, 39.996547788865968 ], [ -75.083455300706575, 39.996543734853198 ], [ -75.083451086689578, 39.996540185978688 ], [ -75.083445969978612, 39.99653587728168 ], [ -75.083440855680067, 39.996531566838449 ], [ -75.083437246250611, 39.996528523074872 ], [ -75.083433638027287, 39.996525478438102 ], [ -75.083429431212039, 39.996521925224904 ], [ -75.083425224397303, 39.9965183720116 ], [ -75.083420420196859, 39.996514309348711 ], [ -75.08341531909474, 39.996509991101526 ], [ -75.083409619436523, 39.996505163377435 ], [ -75.083406020791514, 39.996502113556126 ], [ -75.083402424558415, 39.996499061988629 ], [ -75.083398229734158, 39.996495501844528 ], [ -75.083393738043327, 39.996491685215894 ], [ -75.083387153747381, 39.996486085472796 ], [ -75.083382668051769, 39.996482265378901 ], [ -75.083379081361329, 39.996479209527159 ], [ -75.083374301176434, 39.996475132102553 ], [ -75.083369522233227, 39.996471052904568 ], [ -75.083364748007853, 39.996466972914945 ], [ -75.083361168589207, 39.996463910924341 ], [ -75.083357591547326, 39.996460848087715 ], [ -75.083354014540859, 39.996457784350874 ], [ -75.083350441081606, 39.996454719795246 ], [ -75.083345677675524, 39.996450632847825 ], [ -75.083340917922939, 39.996446542380959 ], [ -75.083336161717511, 39.996442451095362 ], [ -75.08333259553001, 39.99643938040078 ], [ -75.083329031719259, 39.996436308860353 ], [ -75.083324283920561, 39.996432212363267 ], [ -75.083319538534113, 39.996428114119944 ], [ -75.083314796765876, 39.996424013257325 ], [ -75.083310058615439, 39.996419909775526 ], [ -75.083305324012471, 39.996415805474925 ], [ -75.08330059306266, 39.996411697654764 ], [ -75.083295865731046, 39.996407587215366 ], [ -75.083291141946518, 39.996403475957237 ], [ -75.083286421780372, 39.996399362079813 ], [ -75.08328170526724, 39.996395244682887 ], [ -75.083278171429697, 39.996392155816451 ], [ -75.083274638833544, 39.996389065176693 ], [ -75.083271108613971, 39.996385973690899 ], [ -75.083267580806421, 39.996382880459088 ], [ -75.083264055375224, 39.996379786381304 ], [ -75.08326053235632, 39.996376690557319 ], [ -75.083255838615401, 39.996372560172858 ], [ -75.083251148457236, 39.996368428069395 ], [ -75.083246463123174, 39.996364292473608 ], [ -75.083241781406755, 39.996360154258639 ], [ -75.083238273959296, 39.99635704978536 ], [ -75.083234767788554, 39.99635394263867 ], [ -75.083231264029976, 39.996350833745723 ], [ -75.083227763782887, 39.996347724934289 ], [ -75.083223100085277, 39.99634357542373 ], [ -75.083218439970665, 39.996339424194005 ], [ -75.083214949371154, 39.996336308398064 ], [ -75.08321146118395, 39.996333190855992 ], [ -75.083207975373028, 39.99633007246792 ], [ -75.083204490803794, 39.996326952306539 ], [ -75.083199851119261, 39.996322788035286 ], [ -75.083195216187875, 39.996318622072181 ], [ -75.083190584874615, 39.996314453489845 ], [ -75.083185959590949, 39.996310280542268 ], [ -75.083181339095816, 39.996306105002517 ], [ -75.083177877298084, 39.996302971853893 ], [ -75.083174417912019, 39.996299836959096 ], [ -75.083169810611537, 39.996295653616215 ], [ -75.083165208134901, 39.996291466781038 ], [ -75.083161759602561, 39.996288324028654 ], [ -75.083158314617208, 39.996285180457647 ], [ -75.083154872079248, 39.996282034240238 ], [ -75.083151433088233, 39.996278887204085 ], [ -75.083147996544653, 39.996275737521593 ], [ -75.083144563583318, 39.996272586120156 ], [ -75.083141133034104, 39.996269432972568 ], [ -75.083137706102463, 39.996266277205805 ], [ -75.08313428271822, 39.996263120620348 ], [ -75.083130861780944, 39.996259961388532 ], [ -75.083126307293981, 39.996255745932672 ], [ -75.083121756460443, 39.996251526957252 ], [ -75.083117211621413, 39.996247304516864 ], [ -75.083113807461146, 39.996244135763007 ], [ -75.083110405748258, 39.996240964362777 ], [ -75.083107008823418, 39.99623779037055 ], [ -75.083103614275345, 39.996234615532387 ], [ -75.083099093448567, 39.996230378331553 ], [ -75.083093709559705, 39.996226609437343 ], [ -75.083089409012729, 39.996222252110741 ], [ -75.083085676831175, 39.996219262248211 ], [ -75.083082449967264, 39.996215993993935 ], [ -75.083077434713275, 39.996212026426548 ], [ -75.083073879720189, 39.996208939764905 ], [ -75.083070928426778, 39.996205515727262 ], [ -75.083066703495234, 39.99620111240187 ], [ -75.08306217682069, 39.996196875063546 ], [ -75.083057926886383, 39.996192481969267 ], [ -75.083053682981756, 39.996188084509711 ], [ -75.083049446277329, 39.996183682712136 ], [ -75.083044895700908, 39.996179457432234 ], [ -75.083040632717072, 39.996175068539145 ], [ -75.083036375798201, 39.996170674380679 ], [ -75.083032127214423, 39.996166276811458 ], [ -75.083027883525432, 39.996161873949667 ], [ -75.083023647000957, 39.996157467650072 ], [ -75.083019415300271, 39.996153057858209 ], [ -75.083015190799827, 39.996148643728326 ], [ -75.083010972328751, 39.996144225233245 ], [ -75.083006759887382, 39.99613980237293 ], [ -75.083002552234447, 39.996135376920527 ], [ -75.082998351781754, 39.996130947130119 ], [ -75.082994156152694, 39.996126513847585 ], [ -75.08298996534748, 39.996122077072719 ], [ -75.08298578170691, 39.996117636860063 ], [ -75.082981601719837, 39.996113193128018 ], [ -75.082977426556369, 39.996108745903769 ], [ -75.082973257387351, 39.996104295214458 ], [ -75.082969093006596, 39.996099841933159 ], [ -75.08296493344973, 39.996095385159691 ], [ -75.082960777546234, 39.996090924866799 ], [ -75.082956627601703, 39.996086462009096 ], [ -75.082952481275001, 39.996081996532148 ], [ -75.082948339772088, 39.996077527563024 ], [ -75.082944201851959, 39.996073056875012 ], [ -75.082940068755406, 39.99606858269464 ], [ -75.082936970751049, 39.996065225524774 ], [ -75.082933876329108, 39.996061866635948 ], [ -75.082930783148427, 39.996058505973814 ], [ -75.082927393268562, 39.996054467144795 ], [ -75.08292323509977, 39.996050004995723 ], [ -75.082919716089236, 39.9960460325455 ], [ -75.082915962189432, 39.996042194297338 ], [ -75.082911553037135, 39.99603732175013 ], [ -75.082906620482277, 39.996032144202786 ], [ -75.082902991855477, 39.996027383501193 ], [ -75.082899264379577, 39.996023528746846 ], [ -75.082896155703693, 39.996020174931886 ], [ -75.082892521950129, 39.996015843003953 ], [ -75.082887735821529, 39.996010457115069 ], [ -75.08288355942129, 39.996004729485854 ], [ -75.082878443022807, 39.995999102553164 ], [ -75.08287511239709, 39.995994599263774 ], [ -75.082872044438574, 39.995991222967369 ], [ -75.082868209561497, 39.995987000796376 ], [ -75.082863356406676, 39.995981651192245 ], [ -75.082242668616558, 39.995331065803413 ], [ -75.081246614319781, 39.994180755922066 ], [ -75.080728229914712, 39.99360333946894 ], [ -75.078875590644756, 39.991539623660344 ], [ -75.07753866124456, 39.990368727214161 ], [ -75.077096918293492, 39.990014371752068 ], [ -75.075287104132741, 39.988619034144456 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "PORT_RICHMOND", "LISTNAME": "Port Richmond", "MAPNAME": "Port Richmond", "Shape_Leng": 17870.182287799998, "Shape_Area": 17061791.622200001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.112303453693841, 39.968572315915566 ], [ -75.112813452777132, 39.968359318332794 ], [ -75.113223965496061, 39.968187973426744 ], [ -75.113491328649829, 39.968582340331302 ], [ -75.113498576008411, 39.968579538893906 ], [ -75.115080973120769, 39.971030152643266 ], [ -75.115660292859928, 39.97174968923845 ], [ -75.117044789006599, 39.973469215993951 ], [ -75.118307698583166, 39.974539758236723 ], [ -75.116911084943496, 39.975245139784214 ], [ -75.115893357875905, 39.975763561982006 ], [ -75.114627882089607, 39.976431256719849 ], [ -75.113446985723655, 39.977054302923612 ], [ -75.111030714075739, 39.978323111618003 ], [ -75.109129998003738, 39.979159777681517 ], [ -75.107330351900686, 39.979660127811215 ], [ -75.104098827569302, 39.980759521849414 ], [ -75.102811506619986, 39.981497472055338 ], [ -75.101015630673558, 39.982431388776448 ], [ -75.100519132399228, 39.981895467143758 ], [ -75.099694334175325, 39.980973445620975 ], [ -75.098514053887612, 39.979636866314976 ], [ -75.097574390701396, 39.978651976864612 ], [ -75.09594956342012, 39.976739909159896 ], [ -75.094334639149025, 39.974683881099345 ], [ -75.094023999928567, 39.974306557815908 ], [ -75.096370476553432, 39.973982251811279 ], [ -75.097387474712463, 39.973706255519119 ], [ -75.102285466993649, 39.972378274132865 ], [ -75.102953465669586, 39.972151277021624 ], [ -75.106038460922335, 39.971105289208701 ], [ -75.107348459924566, 39.97061229471975 ], [ -75.107555459813909, 39.970534295694158 ], [ -75.108087459042096, 39.970333297989889 ], [ -75.111943453534806, 39.968722314142475 ], [ -75.112039453224895, 39.968683314795882 ], [ -75.112303453693841, 39.968572315915566 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "HUNTING_PARK", "LISTNAME": "Hunting Park", "MAPNAME": "Hunting Park", "Shape_Leng": 32920.799359500001, "Shape_Area": 39024501.316299997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.135174877351048, 40.015075299953118 ], [ -75.132322168530436, 40.014696733049824 ], [ -75.1298974263172, 40.014387375300451 ], [ -75.125976563098249, 40.013862316034668 ], [ -75.122336949733537, 40.013388925995962 ], [ -75.119430347424938, 40.013032021410211 ], [ -75.117320772787153, 40.012753042650189 ], [ -75.115861558674823, 40.012560046036668 ], [ -75.113002534359993, 40.012194996384949 ], [ -75.112236919050545, 40.012084626363503 ], [ -75.112481221047773, 40.011206693285388 ], [ -75.112658723598628, 40.010568796404328 ], [ -75.112694900519017, 40.010410189574543 ], [ -75.112952448248407, 40.009086001120409 ], [ -75.11359667883967, 40.006029663987405 ], [ -75.113824921785437, 40.004913492841673 ], [ -75.114077684921128, 40.003607803447558 ], [ -75.114098543254357, 40.003505680503608 ], [ -75.115684079401703, 40.003689486423418 ], [ -75.116802005849692, 40.003819070332192 ], [ -75.118442863952083, 40.004009249974288 ], [ -75.12004464582752, 40.004212305364042 ], [ -75.12232786939397, 40.004501707329652 ], [ -75.124006116905633, 40.004714396277436 ], [ -75.123969644210177, 40.004883900758962 ], [ -75.12784666049096, 40.005316058485434 ], [ -75.129969293565139, 40.005220470126879 ], [ -75.131929524136225, 40.005198717674737 ], [ -75.131946957671545, 40.005326816403183 ], [ -75.131652006599111, 40.006816952272224 ], [ -75.134058446491025, 40.007078293508705 ], [ -75.136828740762979, 40.007487647474449 ], [ -75.136850776895827, 40.007490903540031 ], [ -75.13884732001867, 40.007759921117746 ], [ -75.14056943498224, 40.0079735852973 ], [ -75.14335580273854, 40.008358633181167 ], [ -75.145931729864429, 40.008684307640458 ], [ -75.147654059965689, 40.008885620955184 ], [ -75.14765528196537, 40.008879692927792 ], [ -75.148508515676554, 40.008988128661734 ], [ -75.149961444231977, 40.009195549879031 ], [ -75.151249179295419, 40.009301747208895 ], [ -75.150917037122596, 40.010842866028767 ], [ -75.150635076314984, 40.012441767336654 ], [ -75.150070222692975, 40.014839330603536 ], [ -75.149769696414907, 40.016263217121143 ], [ -75.149613971886708, 40.016989674388448 ], [ -75.149370338684463, 40.018126197065563 ], [ -75.149055299017107, 40.019614146449982 ], [ -75.147227093570493, 40.019392167119513 ], [ -75.14713007910261, 40.019380372824131 ], [ -75.145372287675031, 40.019273453191872 ], [ -75.143399604621123, 40.019327068577418 ], [ -75.139964371948821, 40.020942032350248 ], [ -75.138355334192795, 40.02172125192174 ], [ -75.136684724387976, 40.022568704159148 ], [ -75.13580940716237, 40.022886181580851 ], [ -75.135807372538565, 40.022916037448447 ], [ -75.135801408051833, 40.022919333637297 ], [ -75.134254560593646, 40.023698267317656 ], [ -75.134238007689589, 40.023703313465631 ], [ -75.133292181724457, 40.0238416015696 ], [ -75.133258195872543, 40.023848249650854 ], [ -75.133325014306891, 40.023539349633985 ], [ -75.133522580626092, 40.022715295574848 ], [ -75.133679367388865, 40.021899705168529 ], [ -75.133922192976073, 40.020748773902362 ], [ -75.134177899652229, 40.019688422633912 ], [ -75.134195700094836, 40.019614602007564 ], [ -75.13450243685277, 40.018159948020255 ], [ -75.134821451856098, 40.01665738647042 ], [ -75.135174877351048, 40.015075299953118 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "JUNIATA_PARK", "LISTNAME": "Juniata Park", "MAPNAME": "Juniata Park", "Shape_Leng": 30347.1877843, "Shape_Area": 32441851.8233 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.104198897642362, 40.022888795811596 ], [ -75.103715234740022, 40.022392307139462 ], [ -75.103503374191504, 40.022220142997384 ], [ -75.103424296616851, 40.021873097285024 ], [ -75.103208905651087, 40.021435968647474 ], [ -75.103169784248976, 40.021190365563591 ], [ -75.10337457629538, 40.020832601576224 ], [ -75.103528165141896, 40.020564277355113 ], [ -75.103737124505898, 40.019485701807355 ], [ -75.104275294604648, 40.019316100984661 ], [ -75.104731053723839, 40.019376099955892 ], [ -75.10508005092548, 40.019494180621841 ], [ -75.105328324561995, 40.019502818321399 ], [ -75.10548627770558, 40.019355294336592 ], [ -75.105615507828674, 40.018915445828405 ], [ -75.105921004308925, 40.018667118032283 ], [ -75.106164901119783, 40.018554952033476 ], [ -75.107002518953237, 40.018304531379741 ], [ -75.107435570562771, 40.017904673387797 ], [ -75.107565610851893, 40.017320660613613 ], [ -75.107243463940378, 40.016716453495164 ], [ -75.107234701778395, 40.01670002063512 ], [ -75.106732026659344, 40.016429469561523 ], [ -75.105070559235855, 40.016306931584424 ], [ -75.103546235829413, 40.016130290187682 ], [ -75.102508035055507, 40.016017638463708 ], [ -75.100972478347686, 40.016031844941814 ], [ -75.100303229505016, 40.016087984940469 ], [ -75.099440437551465, 40.016310995900604 ], [ -75.098776388317646, 40.016343768023958 ], [ -75.098128802897818, 40.016162291410048 ], [ -75.097749450225891, 40.016040189860092 ], [ -75.097166990151706, 40.015987513838454 ], [ -75.095845114220737, 40.015715773268759 ], [ -75.0943988481513, 40.01478795576746 ], [ -75.094396724345359, 40.014784222309927 ], [ -75.093478580221799, 40.013170072381705 ], [ -75.093462874263238, 40.012773561782289 ], [ -75.094390803548194, 40.011402511893834 ], [ -75.09509047827963, 40.010278270678654 ], [ -75.095052953071587, 40.009641166198783 ], [ -75.094645116197256, 40.009315900586081 ], [ -75.09361313253207, 40.008761462648373 ], [ -75.09298592020501, 40.008325264071303 ], [ -75.092636531839887, 40.008001357273471 ], [ -75.092170962037414, 40.007523205192911 ], [ -75.092099898103442, 40.007166508560495 ], [ -75.092321359737028, 40.006848361835608 ], [ -75.092842009179734, 40.006268619716039 ], [ -75.092906352194163, 40.006115010344729 ], [ -75.092762567008378, 40.005679265188071 ], [ -75.092510149680052, 40.00546075654497 ], [ -75.092494135477139, 40.005446230523404 ], [ -75.09173368162898, 40.004756385604075 ], [ -75.090706519005693, 40.00436629786676 ], [ -75.090242532770901, 40.004215091207612 ], [ -75.09022929798634, 40.00421077762509 ], [ -75.09167486632613, 40.003150952949767 ], [ -75.093025400055964, 40.002221902258405 ], [ -75.094460031719024, 40.001652752597856 ], [ -75.094466834507713, 40.001651214239061 ], [ -75.094609010527392, 40.001596903968533 ], [ -75.096994544431141, 40.0013737211587 ], [ -75.099899814127539, 40.001776679636883 ], [ -75.102994996082003, 40.00219424148581 ], [ -75.10300618461477, 40.002195484336397 ], [ -75.103179299355332, 40.002098522109364 ], [ -75.10413276924109, 40.001564270079591 ], [ -75.106149033095633, 40.001800219279581 ], [ -75.110045880110832, 40.002316078660066 ], [ -75.109875607971588, 40.002997097393902 ], [ -75.109858469697741, 40.003065640099244 ], [ -75.109847391640983, 40.003116239424209 ], [ -75.114077684921071, 40.003607803447558 ], [ -75.113824921785536, 40.004913492841631 ], [ -75.11359667883967, 40.006029663987405 ], [ -75.112952448248478, 40.009086001120409 ], [ -75.112694900519017, 40.010410189574543 ], [ -75.112658723598685, 40.010568796404328 ], [ -75.11248122104783, 40.011206693285388 ], [ -75.112236919050602, 40.012084626363468 ], [ -75.112222149989634, 40.012137703609348 ], [ -75.111850281149472, 40.013671722834381 ], [ -75.11149637156754, 40.015170914660409 ], [ -75.111360827087097, 40.015859562689386 ], [ -75.111349439191272, 40.015867910285621 ], [ -75.111066684225861, 40.017222376956092 ], [ -75.110874649312947, 40.018216003905607 ], [ -75.110498416201395, 40.019849586886615 ], [ -75.112922055143528, 40.020152521698783 ], [ -75.114069149714453, 40.020298460220936 ], [ -75.11379141263825, 40.020623709553298 ], [ -75.11269936588468, 40.021697410784498 ], [ -75.11137503722847, 40.023031574318416 ], [ -75.111201527213751, 40.023207615904887 ], [ -75.111097002274889, 40.022810825143836 ], [ -75.110759197560654, 40.02250188090715 ], [ -75.11037020612487, 40.022282378927997 ], [ -75.109762498321004, 40.022202409236854 ], [ -75.109251147199842, 40.022111072218379 ], [ -75.108809325291062, 40.022269331751417 ], [ -75.108117566393759, 40.022707285182406 ], [ -75.107604561405182, 40.022904264856287 ], [ -75.107339015582596, 40.023254037625456 ], [ -75.107120286282054, 40.023393565272372 ], [ -75.106877199587643, 40.023361571245388 ], [ -75.106367502369622, 40.02298189652354 ], [ -75.105947307517866, 40.02290254237154 ], [ -75.105531486728637, 40.02294398766611 ], [ -75.105337936353976, 40.023110871436899 ], [ -75.105193919860639, 40.023476639729282 ], [ -75.104878826153055, 40.023627523790225 ], [ -75.104565396234293, 40.023490083923519 ], [ -75.104252799172102, 40.023208479377537 ], [ -75.104198897642362, 40.022888795811596 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "HARROWGATE", "LISTNAME": "Harrowgate", "MAPNAME": "Harrowgate", "Shape_Leng": 23231.246815800001, "Shape_Area": 25350470.957900003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.087475511948156, 40.001300649894354 ], [ -75.087479692573424, 40.000606530232574 ], [ -75.087108646079642, 39.999839783801107 ], [ -75.086380408798249, 39.998936631451443 ], [ -75.086343150991596, 39.998899592938301 ], [ -75.0863274233797, 39.998883958095526 ], [ -75.086492892587515, 39.9987966224028 ], [ -75.086948805310669, 39.998565071839131 ], [ -75.089308925271254, 39.997349448824458 ], [ -75.091929719602575, 39.995963920392519 ], [ -75.09436964091789, 39.994652326555453 ], [ -75.096881812851663, 39.993440070996733 ], [ -75.099139267734671, 39.992241424338587 ], [ -75.10146010866589, 39.991044197852311 ], [ -75.10376817409626, 39.98984663160735 ], [ -75.104934869827687, 39.989248123149224 ], [ -75.10632475309049, 39.988526424864979 ], [ -75.1070470935408, 39.989315364098331 ], [ -75.108312420027445, 39.990733751203329 ], [ -75.109339476343791, 39.991911970752156 ], [ -75.110258132591355, 39.992959491421153 ], [ -75.112211459501339, 39.995175495456031 ], [ -75.113016595361614, 39.995996053214121 ], [ -75.11344462590742, 39.996432272804562 ], [ -75.113463503370482, 39.996451739759763 ], [ -75.113467243069749, 39.996455595566275 ], [ -75.114334369152232, 39.996591052362312 ], [ -75.115440738283439, 39.996763871049311 ], [ -75.115202677831348, 39.997992545284234 ], [ -75.114874975385234, 39.999428337197457 ], [ -75.11454888755641, 40.000822330628267 ], [ -75.114282005418346, 40.002092179778941 ], [ -75.114199260420136, 40.002822397924298 ], [ -75.114229554415303, 40.002864248060973 ], [ -75.114098543254471, 40.003505680503622 ], [ -75.114077684921071, 40.003607803447558 ], [ -75.109847391640983, 40.003116239424209 ], [ -75.109858469697741, 40.003065640099244 ], [ -75.109875607971588, 40.002997097393902 ], [ -75.110045880110832, 40.002316078660066 ], [ -75.106149033095633, 40.001800219279581 ], [ -75.10413276924109, 40.001564270079591 ], [ -75.103179299355332, 40.002098522109364 ], [ -75.10300618461477, 40.002195484336397 ], [ -75.102994996082003, 40.00219424148581 ], [ -75.099899814127539, 40.001776679636883 ], [ -75.096994544431141, 40.0013737211587 ], [ -75.094609010527392, 40.001596903968533 ], [ -75.094466834507713, 40.001651214239061 ], [ -75.094460031719024, 40.001652752597856 ], [ -75.093025400055964, 40.002221902258405 ], [ -75.09167486632613, 40.003150952949767 ], [ -75.09022929798634, 40.00421077762509 ], [ -75.090205023921371, 40.00420018120694 ], [ -75.089241431583289, 40.003779543683237 ], [ -75.088414875300302, 40.00330009585408 ], [ -75.087988645840113, 40.002780794212995 ], [ -75.087545711058183, 40.001796173627625 ], [ -75.087475511948156, 40.001300649894354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "FAIRHILL", "LISTNAME": "Fairhill", "MAPNAME": "Fairhill", "Shape_Leng": 12327.765009700001, "Shape_Area": 7514288.076390001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.13537406974342, 39.997093465658409 ], [ -75.13549856930031, 39.996172247121351 ], [ -75.135579895844486, 39.994627739566141 ], [ -75.135811468374357, 39.993153886773754 ], [ -75.1361457344792, 39.991615543004755 ], [ -75.136166485569163, 39.991618268178186 ], [ -75.137360432670249, 39.991774992786318 ], [ -75.137893626981082, 39.991844979824037 ], [ -75.138366020739184, 39.991906983507768 ], [ -75.139265952482333, 39.99202509728606 ], [ -75.139760819455233, 39.992074561439495 ], [ -75.140255506076002, 39.992128795648902 ], [ -75.140886863836371, 39.992181360411685 ], [ -75.141530266970733, 39.992243747164068 ], [ -75.142164700468498, 39.992334953702127 ], [ -75.142174610998225, 39.992336351125807 ], [ -75.142185238011606, 39.992337851327079 ], [ -75.141834616655444, 39.993910773310546 ], [ -75.141522710692357, 39.995408620281282 ], [ -75.141230341640508, 39.99690691069322 ], [ -75.140899436474584, 39.99838927482638 ], [ -75.140573957774976, 39.999984631406036 ], [ -75.140054758735928, 40.001968835172974 ], [ -75.139873566329626, 40.002933433047296 ], [ -75.139881119906349, 40.002962627591856 ], [ -75.139462535222791, 40.003106073788523 ], [ -75.139070835380053, 40.003243570607935 ], [ -75.138338092993791, 40.003500777095084 ], [ -75.137681649218237, 40.003731196371511 ], [ -75.135600324894668, 40.004543522491986 ], [ -75.134735110195138, 40.004796038629983 ], [ -75.134167798452708, 40.004915893566817 ], [ -75.133950414426536, 40.003863658461164 ], [ -75.133751683517573, 40.00229871731878 ], [ -75.133930764390271, 40.001572393151015 ], [ -75.134068625668604, 40.000795329826296 ], [ -75.13440967843195, 39.999226091455419 ], [ -75.134617341836162, 39.998317817976215 ], [ -75.13537406974342, 39.997093465658409 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "UPPER_KENSINGTON", "LISTNAME": "Upper Kensington", "MAPNAME": "Upper Kensington", "Shape_Leng": 19841.099277599998, "Shape_Area": 22783026.131099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.12784666049096, 40.005316058485434 ], [ -75.123969644210177, 40.004883900758962 ], [ -75.124006116905633, 40.004714396277436 ], [ -75.12232786939397, 40.004501707329652 ], [ -75.12004464582752, 40.004212305364042 ], [ -75.118442863952083, 40.004009249974288 ], [ -75.116802005849692, 40.003819070332192 ], [ -75.115684079401703, 40.003689486423418 ], [ -75.114098543254357, 40.003505680503608 ], [ -75.114229554415203, 40.00286424806103 ], [ -75.114199260420136, 40.002822397924334 ], [ -75.114282005418346, 40.002092179778941 ], [ -75.11454888755641, 40.00082233062831 ], [ -75.114874975385234, 39.999428337197457 ], [ -75.115202677831348, 39.997992545284234 ], [ -75.11544073828334, 39.996763871049311 ], [ -75.114334369152218, 39.996591052362341 ], [ -75.11346724306965, 39.996455595566275 ], [ -75.11346350337044, 39.996451739759763 ], [ -75.113996177620706, 39.996147976771965 ], [ -75.114222212755323, 39.996023747167193 ], [ -75.114437713089742, 39.995905306692741 ], [ -75.114886527206821, 39.995652438487326 ], [ -75.115778088353352, 39.995169868232828 ], [ -75.118042252179251, 39.993928639247216 ], [ -75.118271430330125, 39.993806196822952 ], [ -75.119693622532367, 39.993018909224183 ], [ -75.120308366056534, 39.992674984194878 ], [ -75.121551046791396, 39.992002533416866 ], [ -75.122558200951602, 39.991430314775251 ], [ -75.123686154201494, 39.990838280600109 ], [ -75.124358514425481, 39.990448953164403 ], [ -75.124519587008436, 39.990370468407299 ], [ -75.124649658682003, 39.990299268132929 ], [ -75.124838512178044, 39.990195890650355 ], [ -75.124988205864639, 39.990113949036072 ], [ -75.125090793797, 39.990057792943169 ], [ -75.125490140157012, 39.989839188034644 ], [ -75.125988023817385, 39.990271852922504 ], [ -75.125749621417512, 39.990369079937928 ], [ -75.125795047132812, 39.990462714198884 ], [ -75.126189681369112, 39.990815389675561 ], [ -75.126549077077257, 39.99115440326414 ], [ -75.126828842212703, 39.9914060163293 ], [ -75.127108025373957, 39.991678722742215 ], [ -75.127548353129654, 39.99209133742437 ], [ -75.128454774040762, 39.992952461901808 ], [ -75.129512111964488, 39.993867449516728 ], [ -75.130636923775214, 39.994733540994432 ], [ -75.131937089353102, 39.995586812409933 ], [ -75.133823593831764, 39.996537477056101 ], [ -75.135374069743364, 39.997093465658409 ], [ -75.134617341836119, 39.998317817976215 ], [ -75.134409678431837, 39.999226091455398 ], [ -75.134068625668604, 40.000795329826325 ], [ -75.133930764390271, 40.001572393151058 ], [ -75.13375168351746, 40.00229871731878 ], [ -75.133950414426536, 40.003863658461164 ], [ -75.134167798452708, 40.00491589356686 ], [ -75.132746885556614, 40.005216072397836 ], [ -75.131976137436396, 40.005198199532543 ], [ -75.131929524136225, 40.005198717674737 ], [ -75.129969293565139, 40.005220470126879 ], [ -75.12784666049096, 40.005316058485434 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "MCGUIRE", "LISTNAME": "McGuire", "MAPNAME": "McGuire", "Shape_Leng": 8681.6764593900007, "Shape_Area": 3555354.6203399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.136145734479157, 39.991615543004812 ], [ -75.135811468374186, 39.993153886773776 ], [ -75.135579895844486, 39.994627739566191 ], [ -75.13549856930014, 39.996172247121393 ], [ -75.135374069743364, 39.997093465658409 ], [ -75.133823593831764, 39.996537477056101 ], [ -75.131937089353102, 39.995586812409933 ], [ -75.130636923775214, 39.994733540994432 ], [ -75.129512111964488, 39.993867449516728 ], [ -75.128454774040762, 39.992952461901808 ], [ -75.127548353129654, 39.99209133742437 ], [ -75.127108025373957, 39.991678722742215 ], [ -75.126828842212703, 39.9914060163293 ], [ -75.126549077077257, 39.99115440326414 ], [ -75.126189681369112, 39.990815389675561 ], [ -75.125795047132812, 39.990462714198884 ], [ -75.125749621417512, 39.990369079937928 ], [ -75.125988023817385, 39.990271852922504 ], [ -75.127046643267732, 39.990416269806403 ], [ -75.128997460463665, 39.990722471086656 ], [ -75.130914550883574, 39.990928708016696 ], [ -75.131450662024704, 39.990999108990806 ], [ -75.131938821557299, 39.991063211041791 ], [ -75.132448357837518, 39.991129563666483 ], [ -75.132921855612508, 39.991192290011888 ], [ -75.133380420752516, 39.991252498855616 ], [ -75.133823255616704, 39.991310641627365 ], [ -75.134361547653754, 39.991381314661837 ], [ -75.13490153900058, 39.9914522076783 ], [ -75.135498507185787, 39.991530578067518 ], [ -75.136145734479157, 39.991615543004812 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "STANTON", "LISTNAME": "Stanton", "MAPNAME": "Stanton", "Shape_Leng": 16115.7451693, "Shape_Area": 12654858.3202 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.155944472802716, 39.996027145706179 ], [ -75.154527369334545, 39.993942232064995 ], [ -75.156193048864608, 39.986270940199638 ], [ -75.156537993789271, 39.98468207416974 ], [ -75.158244739783711, 39.984936470640733 ], [ -75.161381663150635, 39.985341904488386 ], [ -75.164516621022727, 39.985762020188496 ], [ -75.167317495266488, 39.98612402397471 ], [ -75.169573888228371, 39.986408823297154 ], [ -75.171990408624765, 39.986710538118636 ], [ -75.17436034984037, 39.98702676259397 ], [ -75.175409275357666, 39.987158484286191 ], [ -75.174990198114656, 39.987518786688568 ], [ -75.174786085324172, 39.987694270688699 ], [ -75.174198482225492, 39.988151013248952 ], [ -75.173810663026813, 39.988452458203476 ], [ -75.173652956840584, 39.98864961789463 ], [ -75.171661525681685, 39.989663133416954 ], [ -75.170344989072177, 39.989560565528102 ], [ -75.170099979060993, 39.989719217610883 ], [ -75.169334498363185, 39.990214884124924 ], [ -75.168679927070471, 39.990560259493151 ], [ -75.167916557473674, 39.990950064908589 ], [ -75.166816995574848, 39.991483871506432 ], [ -75.165043141753358, 39.992380698604919 ], [ -75.164006472203539, 39.992907328041902 ], [ -75.163284425858492, 39.993284924224263 ], [ -75.163276235045473, 39.993277270214364 ], [ -75.162848108513543, 39.993482625156332 ], [ -75.161081492307346, 39.994133764318555 ], [ -75.159917223288716, 39.994594143748209 ], [ -75.159805111702553, 39.994634990218763 ], [ -75.159795333228473, 39.994633707235984 ], [ -75.159292057660664, 39.994819526711964 ], [ -75.157559588341343, 39.99546572283694 ], [ -75.155944472802716, 39.996027145706179 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "BREWERYTOWN", "LISTNAME": "Brewerytown", "MAPNAME": "Brewerytown", "Shape_Leng": 14790.6737359, "Shape_Area": 11256539.3166 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.17436034984037, 39.98702676259397 ], [ -75.174514081042616, 39.986324509228041 ], [ -75.174515116341396, 39.986319787743511 ], [ -75.174692581759444, 39.985509097787329 ], [ -75.174794098964753, 39.98506955391538 ], [ -75.175025140970163, 39.984022998384901 ], [ -75.175046069379377, 39.98395846642763 ], [ -75.175311748163296, 39.982714657365932 ], [ -75.175355556471658, 39.982461974418989 ], [ -75.175367109808136, 39.98245702760309 ], [ -75.175983395719598, 39.979574604689084 ], [ -75.176138490419774, 39.978849172969149 ], [ -75.176882336632303, 39.975510008860418 ], [ -75.177121812341753, 39.974329716815802 ], [ -75.177850956972549, 39.974250420890343 ], [ -75.177855225298885, 39.973832518394296 ], [ -75.177862154339408, 39.973834939767087 ], [ -75.178856802490316, 39.973966756301699 ], [ -75.181854973581835, 39.974358305866673 ], [ -75.183466118112278, 39.974568365379255 ], [ -75.185099075540847, 39.974776966930307 ], [ -75.186683683225993, 39.974982683600913 ], [ -75.187265742825403, 39.975056983809907 ], [ -75.187387510222976, 39.975360502818873 ], [ -75.188149543226885, 39.976616493967697 ], [ -75.188749571206401, 39.976916493182273 ], [ -75.188944580645384, 39.977061492189698 ], [ -75.189692781061069, 39.977138552569912 ], [ -75.189749618901345, 39.977316491906592 ], [ -75.189849621959354, 39.977916487656188 ], [ -75.189760465063216, 39.978250138830873 ], [ -75.189227614518416, 39.978841985099017 ], [ -75.1873168604169, 39.979583474888358 ], [ -75.185496859826898, 39.980807428544125 ], [ -75.184205508368933, 39.981668228415309 ], [ -75.18227233364675, 39.982976512992209 ], [ -75.181794741717724, 39.983292824517982 ], [ -75.181536203443613, 39.983464052810227 ], [ -75.180311481707889, 39.984268369198361 ], [ -75.17924354822172, 39.9849864090911 ], [ -75.178798690917503, 39.985278625558394 ], [ -75.17772354621475, 39.985985590880581 ], [ -75.176087791649934, 39.986801669723441 ], [ -75.175409275357666, 39.987158484286191 ], [ -75.17436034984037, 39.98702676259397 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "SHARSWOOD", "LISTNAME": "Sharswood", "MAPNAME": "Sharswood", "Shape_Leng": 9641.8910124899994, "Shape_Area": 5371791.19264 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.167218454863331, 39.973400161317244 ], [ -75.168873934782809, 39.973199699491516 ], [ -75.170432055004895, 39.973018603450186 ], [ -75.17100323471881, 39.972952433126757 ], [ -75.172124847818296, 39.972822819188316 ], [ -75.176541170611742, 39.972313228093526 ], [ -75.176598089422498, 39.972281237661342 ], [ -75.17702876977151, 39.9723344794361 ], [ -75.177538631110608, 39.972397508506262 ], [ -75.177886538839246, 39.972440515371709 ], [ -75.177856104086501, 39.973786150515529 ], [ -75.177855225298885, 39.973832518394296 ], [ -75.177850956972549, 39.974250420890343 ], [ -75.177121812341753, 39.974329716815802 ], [ -75.176882336632303, 39.975510008860418 ], [ -75.176138490419774, 39.978849172969149 ], [ -75.175983395719598, 39.979574604689084 ], [ -75.174392977982677, 39.979382729435137 ], [ -75.172799248355361, 39.979163223576919 ], [ -75.170286820117553, 39.978847793107889 ], [ -75.168547777996537, 39.975747972956164 ], [ -75.167730259374821, 39.974322263364662 ], [ -75.167218454863331, 39.973400161317244 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "NORTH_CENTRAL", "LISTNAME": "North Central", "MAPNAME": "North Central", "Shape_Leng": 19020.100919699998, "Shape_Area": 19847852.328400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.156537993789271, 39.98468207416974 ], [ -75.157514500496518, 39.980183742797017 ], [ -75.1584453942735, 39.975840493911015 ], [ -75.158449436499481, 39.975821632358773 ], [ -75.158691217136351, 39.974542182599613 ], [ -75.158712629038689, 39.974428875191201 ], [ -75.158955216261148, 39.973156632451051 ], [ -75.159143287352492, 39.972329877004114 ], [ -75.159342252522038, 39.971456893867895 ], [ -75.15934368567963, 39.971450605608965 ], [ -75.160285832102616, 39.971579230350031 ], [ -75.161122069623246, 39.971685937085873 ], [ -75.16270226752583, 39.971881406920012 ], [ -75.166335958629247, 39.972357751723827 ], [ -75.166537983867258, 39.972383053019037 ], [ -75.167218454863331, 39.973400161317244 ], [ -75.167730259374821, 39.974322263364662 ], [ -75.168547777996537, 39.975747972956164 ], [ -75.170286820117553, 39.978847793107889 ], [ -75.172799248355361, 39.979163223576919 ], [ -75.174392977982677, 39.979382729435137 ], [ -75.175983395719598, 39.979574604689084 ], [ -75.175367109808136, 39.98245702760309 ], [ -75.175355556471658, 39.982461974418989 ], [ -75.175311748163296, 39.982714657365932 ], [ -75.175046069379377, 39.98395846642763 ], [ -75.175025140970163, 39.984022998384901 ], [ -75.174794098964753, 39.98506955391538 ], [ -75.174692581759444, 39.985509097787329 ], [ -75.174515116341396, 39.986319787743511 ], [ -75.174514081042616, 39.986324509228041 ], [ -75.17436034984037, 39.98702676259397 ], [ -75.171990408624765, 39.986710538118636 ], [ -75.169573888228371, 39.986408823297154 ], [ -75.167317495266488, 39.98612402397471 ], [ -75.164516621022727, 39.985762020188496 ], [ -75.161381663150635, 39.985341904488386 ], [ -75.158244739783711, 39.984936470640733 ], [ -75.156537993789271, 39.98468207416974 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "YORKTOWN", "LISTNAME": "Yorktown", "MAPNAME": "Yorktown", "Shape_Leng": 11213.9637532, "Shape_Area": 7722353.0012800004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.157514500496518, 39.980183742797017 ], [ -75.15229577335559, 39.979537227870708 ], [ -75.151465106706311, 39.979427847498236 ], [ -75.150699261948205, 39.979326996152935 ], [ -75.150346501413168, 39.97928054195885 ], [ -75.149835254604355, 39.979213213002915 ], [ -75.149111002707031, 39.979117829184744 ], [ -75.149091302915352, 39.979115234626789 ], [ -75.149426711412332, 39.977576749283863 ], [ -75.149734122378959, 39.976184607212637 ], [ -75.150039292638439, 39.974759684297254 ], [ -75.150315229726857, 39.973385189713724 ], [ -75.150601390611072, 39.972118474419148 ], [ -75.150973038684285, 39.970519360996164 ], [ -75.152572893816171, 39.970573121904827 ], [ -75.159342252522038, 39.971456893867895 ], [ -75.159143287352492, 39.972329877004114 ], [ -75.158955216261148, 39.973156632451051 ], [ -75.158712629038689, 39.974428875191201 ], [ -75.158691217136351, 39.974542182599613 ], [ -75.158449436499481, 39.975821632358773 ], [ -75.1584453942735, 39.975840493911015 ], [ -75.157514500496518, 39.980183742797017 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "LUDLOW", "LISTNAME": "Ludlow", "MAPNAME": "Ludlow", "Shape_Leng": 8574.1696870600008, "Shape_Area": 3679175.8277400001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.145041485240725, 39.978581782272641 ], [ -75.145324617762839, 39.977076653496681 ], [ -75.145326616977727, 39.977066025411688 ], [ -75.145509371256608, 39.976205965377822 ], [ -75.145606046087437, 39.975637781596582 ], [ -75.145853713479369, 39.974183874413036 ], [ -75.146082917139893, 39.972919332984979 ], [ -75.14610363768665, 39.972805016167868 ], [ -75.146292503032583, 39.97156194117462 ], [ -75.146545532330634, 39.970383126593823 ], [ -75.150430935831267, 39.970501138922913 ], [ -75.150973038684285, 39.970519360996164 ], [ -75.150601390611072, 39.972118474419148 ], [ -75.150315229726857, 39.973385189713724 ], [ -75.150039292638439, 39.974759684297254 ], [ -75.149734122378959, 39.976184607212637 ], [ -75.149426711412332, 39.977576749283863 ], [ -75.149091302915352, 39.979115234626789 ], [ -75.148545428726123, 39.979043339705981 ], [ -75.148151084437757, 39.978991400194886 ], [ -75.14736426680966, 39.978887764037758 ], [ -75.146617167761022, 39.978789353895479 ], [ -75.146249801008281, 39.978740961694236 ], [ -75.145832416262834, 39.978685978368759 ], [ -75.145041485240725, 39.978581782272641 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "HARTRANFT", "LISTNAME": "Hartranft", "MAPNAME": "Hartranft", "Shape_Leng": 23082.015936, "Shape_Area": 26159658.705500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.144967669585427, 39.979005226045786 ], [ -75.145041485240725, 39.978581782272641 ], [ -75.145832416262834, 39.978685978368759 ], [ -75.146249801008281, 39.978740961694236 ], [ -75.146617167761022, 39.978789353895479 ], [ -75.14736426680966, 39.978887764037758 ], [ -75.148151084437757, 39.978991400194886 ], [ -75.148545428726123, 39.979043339705981 ], [ -75.149091302915352, 39.979115234626789 ], [ -75.149111002707031, 39.979117829184744 ], [ -75.149835254604355, 39.979213213002915 ], [ -75.150346501413168, 39.97928054195885 ], [ -75.150699261948205, 39.979326996152935 ], [ -75.151465106706311, 39.979427847498236 ], [ -75.15229577335559, 39.979537227870708 ], [ -75.157514500496518, 39.980183742797017 ], [ -75.156537993789271, 39.98468207416974 ], [ -75.156193048864608, 39.986270940199638 ], [ -75.154527369334545, 39.993942232064995 ], [ -75.155944472802716, 39.996027145706179 ], [ -75.155502689955853, 39.99618070573932 ], [ -75.153993334325165, 39.996783735417537 ], [ -75.153896629700569, 39.996817879710044 ], [ -75.153416605881205, 39.996977441678723 ], [ -75.151492660206387, 39.997696034538357 ], [ -75.148788422614629, 39.998712282259049 ], [ -75.146197078185992, 39.999678468224054 ], [ -75.143337029350448, 40.000743618014198 ], [ -75.141473632467537, 40.001437144359201 ], [ -75.140054758735872, 40.00196883517296 ], [ -75.140573957774976, 39.999984631406072 ], [ -75.140899436474584, 39.99838927482638 ], [ -75.141230341640508, 39.996906910693248 ], [ -75.141522710692243, 39.995408620281339 ], [ -75.141834616655373, 39.993910773310574 ], [ -75.14218523801155, 39.992337851327079 ], [ -75.142174610998211, 39.992336351125843 ], [ -75.142520181524816, 39.990756964123619 ], [ -75.142846216218416, 39.989259612714726 ], [ -75.143168055868117, 39.987769128395257 ], [ -75.143499606224538, 39.986278142251123 ], [ -75.143501157835772, 39.986271011689333 ], [ -75.143843542627593, 39.984685367459846 ], [ -75.144050168794948, 39.983724144248278 ], [ -75.144059461922581, 39.983722857795918 ], [ -75.144047424461675, 39.983616367817035 ], [ -75.144243558190297, 39.983068243084411 ], [ -75.144509804795277, 39.981570172904348 ], [ -75.14479213909469, 39.980067098375635 ], [ -75.144946081217427, 39.979177578360279 ], [ -75.144967669585427, 39.979005226045786 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WEST_KENSINGTON", "LISTNAME": "Kensington, West", "MAPNAME": "West Kensington", "Shape_Leng": 20074.240946599999, "Shape_Area": 19544179.787799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.134002575512724, 39.976333846444227 ], [ -75.134332315030989, 39.974995524500706 ], [ -75.137061222503505, 39.976035080846295 ], [ -75.138717526857434, 39.976251996045228 ], [ -75.140666848184651, 39.97650001014182 ], [ -75.143528636207179, 39.976871776281598 ], [ -75.14529017780913, 39.977072760472758 ], [ -75.145324617762839, 39.977076653496681 ], [ -75.145041485240725, 39.978581782272641 ], [ -75.144967669585427, 39.979005226045786 ], [ -75.144946081217427, 39.979177578360279 ], [ -75.14479213909469, 39.980067098375635 ], [ -75.144509804795277, 39.981570172904348 ], [ -75.144243558190297, 39.983068243084411 ], [ -75.144047424461675, 39.983616367817035 ], [ -75.144059461922581, 39.983722857795918 ], [ -75.144050168794948, 39.983724144248278 ], [ -75.143843542627593, 39.984685367459846 ], [ -75.143501157835772, 39.986271011689333 ], [ -75.143499606224538, 39.986278142251123 ], [ -75.143168055868117, 39.987769128395257 ], [ -75.142846216218416, 39.989259612714726 ], [ -75.142520181524816, 39.990756964123619 ], [ -75.142174610998211, 39.992336351125843 ], [ -75.142164700468328, 39.992334953702162 ], [ -75.14153026697079, 39.99224374716411 ], [ -75.140886863836428, 39.992181360411685 ], [ -75.140255506076059, 39.992128795648902 ], [ -75.139760819455077, 39.992074561439537 ], [ -75.139265952482177, 39.99202509728611 ], [ -75.138366020739014, 39.991906983507761 ], [ -75.137893626981025, 39.99184497982408 ], [ -75.137360432670135, 39.991774992786368 ], [ -75.136166485569163, 39.991618268178186 ], [ -75.136145734479157, 39.991615543004812 ], [ -75.135498507185787, 39.991530578067518 ], [ -75.13490153900058, 39.9914522076783 ], [ -75.134361547653754, 39.991381314661837 ], [ -75.133823255616704, 39.991310641627365 ], [ -75.133380420752516, 39.991252498855616 ], [ -75.132921855612508, 39.991192290011888 ], [ -75.132448357837518, 39.991129563666483 ], [ -75.131938821557299, 39.991063211041791 ], [ -75.131450662024704, 39.990999108990806 ], [ -75.130914550883574, 39.990928708016696 ], [ -75.128997460463665, 39.990722471086656 ], [ -75.127046643267732, 39.990416269806403 ], [ -75.125988023817385, 39.990271852922504 ], [ -75.125490140157012, 39.989839188034644 ], [ -75.125997400343309, 39.989578001690589 ], [ -75.126454038297211, 39.989330527319986 ], [ -75.126948632046719, 39.98906481345152 ], [ -75.127439060574332, 39.988818494189509 ], [ -75.127989283481654, 39.988486793072937 ], [ -75.128535336503816, 39.988174486013776 ], [ -75.129739099667873, 39.987552414837396 ], [ -75.130179934755233, 39.987260563944233 ], [ -75.130220183222519, 39.987239074341396 ], [ -75.130793171463125, 39.986930416424208 ], [ -75.13135341498311, 39.98662385264295 ], [ -75.131513034588707, 39.986532866842389 ], [ -75.131946858129112, 39.986316320002651 ], [ -75.132269063277263, 39.984759969711554 ], [ -75.132630722897375, 39.983149263499811 ], [ -75.13294458494623, 39.981612363797566 ], [ -75.132948134158596, 39.981593602568793 ], [ -75.133226727113041, 39.980120831890886 ], [ -75.133196109659593, 39.980104004461325 ], [ -75.133508757453427, 39.978644708922467 ], [ -75.13383338870959, 39.977150402866428 ], [ -75.134002575512724, 39.976333846444227 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "FISHTOWN", "LISTNAME": "Fishtown - Lower Kensington", "MAPNAME": "Fishtown - Lower Kensington", "Shape_Leng": 25973.395800499999, "Shape_Area": 33605828.427199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.127176010667739, 39.960864968448917 ], [ -75.130478488072569, 39.966303494601355 ], [ -75.134419316633, 39.967022354765611 ], [ -75.136733300024559, 39.967248039158143 ], [ -75.136720026911107, 39.967290464154637 ], [ -75.136225945781504, 39.968888895388204 ], [ -75.135306925541173, 39.971861865820827 ], [ -75.134559657646491, 39.974264580217763 ], [ -75.134553414280191, 39.974263609859875 ], [ -75.134332315030989, 39.974995524500706 ], [ -75.134002575512724, 39.976333846444227 ], [ -75.13383338870959, 39.977150402866428 ], [ -75.133508757453427, 39.978644708922467 ], [ -75.133196109659593, 39.980104004461325 ], [ -75.133226727113041, 39.980120831890886 ], [ -75.133222827849593, 39.980141447555589 ], [ -75.133189022252239, 39.980137084240596 ], [ -75.13044782891059, 39.978591494680224 ], [ -75.128548073269599, 39.980520294509944 ], [ -75.127578975424242, 39.981385659162335 ], [ -75.124392298352959, 39.982677097139174 ], [ -75.121537558547843, 39.98406459579266 ], [ -75.120250448394927, 39.984757987795064 ], [ -75.119689243445137, 39.984114684029812 ], [ -75.119188757432624, 39.98355142712191 ], [ -75.117407543968156, 39.981470230022282 ], [ -75.117395155527078, 39.981456515098145 ], [ -75.116889127799126, 39.980896282740851 ], [ -75.116189204946693, 39.980104585622698 ], [ -75.115866923334096, 39.979748715455827 ], [ -75.115544645169393, 39.979392842583941 ], [ -75.115195785392316, 39.978968913755139 ], [ -75.11481773329507, 39.978544312440079 ], [ -75.114608334888203, 39.978292199100849 ], [ -75.114355577374582, 39.97802784906915 ], [ -75.114062076818655, 39.977683875714973 ], [ -75.113446985723655, 39.977054302923612 ], [ -75.114627882089607, 39.976431256719849 ], [ -75.115893357875905, 39.975763561982006 ], [ -75.116911084943496, 39.975245139784214 ], [ -75.118307698583166, 39.974539758236723 ], [ -75.117044789006599, 39.973469215993951 ], [ -75.115660292859928, 39.97174968923845 ], [ -75.115080973120769, 39.971030152643266 ], [ -75.113498576008411, 39.968579538893906 ], [ -75.113491328649829, 39.968582340331302 ], [ -75.113223965496061, 39.968187973426744 ], [ -75.113511291149123, 39.968068044437139 ], [ -75.114284450391494, 39.96774532373157 ], [ -75.118204446163517, 39.965942341360481 ], [ -75.118901445499915, 39.965553344282398 ], [ -75.118956445577325, 39.965536344561571 ], [ -75.119489444017773, 39.965373346302158 ], [ -75.123302441227594, 39.963060363935611 ], [ -75.123560441418206, 39.962903365670925 ], [ -75.123819440434474, 39.962745366152426 ], [ -75.123908441131491, 39.962702366720428 ], [ -75.125419438979847, 39.96196137369207 ], [ -75.125699438592861, 39.961824374107181 ], [ -75.127176010667739, 39.960864968448917 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "OLD_KENSINGTON", "LISTNAME": "Kensington, Old", "MAPNAME": "Old Kensington", "Shape_Leng": 10913.733421000001, "Shape_Area": 7476740.479629999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.134332315030989, 39.974995524500706 ], [ -75.134553414280191, 39.974263609859875 ], [ -75.134559657646491, 39.974264580217763 ], [ -75.135306925541173, 39.971861865820827 ], [ -75.136225945781504, 39.968888895388204 ], [ -75.13678989742516, 39.96899219838005 ], [ -75.139578004657054, 39.969517419892746 ], [ -75.141516557822627, 39.969760691613139 ], [ -75.144063639171478, 39.9700733061416 ], [ -75.14501640686089, 39.970193814505819 ], [ -75.146545532330634, 39.970383126593823 ], [ -75.146292503032583, 39.97156194117462 ], [ -75.14610363768665, 39.972805016167868 ], [ -75.146082917139893, 39.972919332984979 ], [ -75.145853713479369, 39.974183874413036 ], [ -75.145606046087437, 39.975637781596582 ], [ -75.145509371256608, 39.976205965377822 ], [ -75.145326616977727, 39.977066025411688 ], [ -75.145324617762839, 39.977076653496681 ], [ -75.14529017780913, 39.977072760472758 ], [ -75.143528636207179, 39.976871776281598 ], [ -75.140666848184651, 39.97650001014182 ], [ -75.138717526857434, 39.976251996045228 ], [ -75.137061222503505, 39.976035080846295 ], [ -75.134332315030989, 39.974995524500706 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "NORTHERN_LIBERTIES", "LISTNAME": "Northern Liberties", "MAPNAME": "Northern Liberties", "Shape_Leng": 20685.0153986, "Shape_Area": 20313755.973000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.127176010667739, 39.960864968448917 ], [ -75.129588436255787, 39.959297392746677 ], [ -75.129683436239446, 39.959235392815245 ], [ -75.129751291531562, 39.959188489331005 ], [ -75.130284488994917, 39.958819926342755 ], [ -75.130402435503342, 39.958738396701811 ], [ -75.130589435548131, 39.958609397479044 ], [ -75.131393800936607, 39.957735188766982 ], [ -75.137169470897831, 39.960212307915583 ], [ -75.138863839017858, 39.96043007834497 ], [ -75.138944747787917, 39.960439502055529 ], [ -75.138982660802839, 39.960329836758085 ], [ -75.138986511315295, 39.960318700381499 ], [ -75.138987806550389, 39.960312479479896 ], [ -75.139198104488756, 39.959302226171673 ], [ -75.139653379628655, 39.957654433982832 ], [ -75.139928605974646, 39.956904461876796 ], [ -75.140378078351105, 39.955533225340361 ], [ -75.140568896579495, 39.955542694076193 ], [ -75.141219525916043, 39.955459044109872 ], [ -75.141393518097274, 39.955478432868539 ], [ -75.141554431321211, 39.955727625615893 ], [ -75.142439504283828, 39.956312289236195 ], [ -75.143194412763449, 39.956544787580818 ], [ -75.144006283392386, 39.956729904570203 ], [ -75.144618575946552, 39.956915927746131 ], [ -75.145453151626825, 39.957071921799987 ], [ -75.146518781419516, 39.957268031543244 ], [ -75.147446511747503, 39.957438753809086 ], [ -75.147961084932845, 39.957485243608652 ], [ -75.148616775997354, 39.957539816749282 ], [ -75.148908227577579, 39.957548180166924 ], [ -75.148210569208601, 39.961279050399106 ], [ -75.147864076432498, 39.963501656936309 ], [ -75.147676623257993, 39.964512671495925 ], [ -75.147421834622762, 39.965913462500474 ], [ -75.147186219786292, 39.966998695534166 ], [ -75.147161154978022, 39.967114142015589 ], [ -75.146762658236881, 39.969313335614117 ], [ -75.146545532330634, 39.970383126593823 ], [ -75.14501640686089, 39.970193814505819 ], [ -75.144063639171478, 39.9700733061416 ], [ -75.141516557822627, 39.969760691613139 ], [ -75.139578004657054, 39.969517419892746 ], [ -75.13678989742516, 39.96899219838005 ], [ -75.136225945781504, 39.968888895388204 ], [ -75.136720026911107, 39.967290464154637 ], [ -75.136733300024559, 39.967248039158143 ], [ -75.134419316633, 39.967022354765611 ], [ -75.130478488072569, 39.966303494601355 ], [ -75.127176010667739, 39.960864968448917 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "LOGAN", "LISTNAME": "Logan", "MAPNAME": "Logan", "Shape_Leng": 29512.474658, "Shape_Area": 39038966.386200003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.144766886858307, 40.039095051974606 ], [ -75.141799144377458, 40.038452252100917 ], [ -75.140186741106305, 40.038107764335663 ], [ -75.137897981338128, 40.037584889942131 ], [ -75.136473943757821, 40.037244326123265 ], [ -75.138137181449409, 40.035916236102118 ], [ -75.139323975910898, 40.034913522147178 ], [ -75.140005357094111, 40.034256553338643 ], [ -75.13899180351946, 40.032888598538158 ], [ -75.137400024340081, 40.032694787662876 ], [ -75.137733766685159, 40.031126307344685 ], [ -75.138385528919216, 40.028041523631146 ], [ -75.138662179929142, 40.026534786293318 ], [ -75.139355225127105, 40.023440429643884 ], [ -75.139964371948821, 40.020942032350248 ], [ -75.143399604621123, 40.019327068577418 ], [ -75.145372287675031, 40.019273453191872 ], [ -75.14713007910261, 40.019380372824131 ], [ -75.147227093570493, 40.019392167119513 ], [ -75.149055299017107, 40.019614146449982 ], [ -75.150667798722608, 40.019813131458825 ], [ -75.152223686485897, 40.020030947722269 ], [ -75.153804855069026, 40.020230424542383 ], [ -75.156394431305657, 40.020616374288736 ], [ -75.157042064570149, 40.020599519017871 ], [ -75.159291801127353, 40.020448814869667 ], [ -75.160701835474711, 40.020197276594196 ], [ -75.160796484560151, 40.020168791057692 ], [ -75.160671510982922, 40.020499700030051 ], [ -75.160286646556202, 40.021383975812853 ], [ -75.159549350959367, 40.022301832769621 ], [ -75.159043777618663, 40.022809585855747 ], [ -75.159600940441152, 40.023960413660319 ], [ -75.159618475906754, 40.023929383706154 ], [ -75.159947867784268, 40.025015692877261 ], [ -75.159963776957881, 40.025568927296227 ], [ -75.160083236276776, 40.026001336018318 ], [ -75.160598285860146, 40.026756242358765 ], [ -75.161060941361214, 40.027300913489931 ], [ -75.161447897150651, 40.027815632026162 ], [ -75.162078395053697, 40.028294096975891 ], [ -75.162051235122448, 40.028316817487443 ], [ -75.160600320762981, 40.029465958236138 ], [ -75.159572966892313, 40.030092378021891 ], [ -75.159111128755015, 40.030283821737527 ], [ -75.159110350239771, 40.030297123859299 ], [ -75.15812246997092, 40.030827753872479 ], [ -75.157133169242243, 40.03106483101903 ], [ -75.15651037407855, 40.031123973350503 ], [ -75.154847558915648, 40.031515539241028 ], [ -75.154815829073698, 40.031520071474006 ], [ -75.155745703017942, 40.032422663361913 ], [ -75.155940224321739, 40.032987751911321 ], [ -75.155619611288898, 40.034430914768272 ], [ -75.15533657243671, 40.035704901708904 ], [ -75.156218644511895, 40.036659317461101 ], [ -75.15833320712828, 40.036688041020838 ], [ -75.158330608607343, 40.036737087630001 ], [ -75.158476588601744, 40.037543313075055 ], [ -75.158503099271087, 40.038532134084271 ], [ -75.158468915108756, 40.039426940527044 ], [ -75.158451050813028, 40.040735933615622 ], [ -75.158407644565287, 40.041451415806158 ], [ -75.15841134301327, 40.041494363178991 ], [ -75.158362808895575, 40.041457547314515 ], [ -75.157169209366643, 40.040771769415812 ], [ -75.154488758163367, 40.039506770021916 ], [ -75.152149784528021, 40.039204688280449 ], [ -75.150156986363683, 40.039034994426721 ], [ -75.148509552865079, 40.039018455071982 ], [ -75.146670774000299, 40.039059853833244 ], [ -75.144789994389285, 40.039099745168308 ], [ -75.144766886858307, 40.039095051974606 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "SOCIETY_HILL", "LISTNAME": "Society Hill", "MAPNAME": "Society Hill", "Shape_Leng": 10711.7713783, "Shape_Area": 6861824.1572099989 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.142805517713782, 39.946656720100961 ], [ -75.142807880000902, 39.946645494830229 ], [ -75.142878875792917, 39.946308189060346 ], [ -75.143086842521683, 39.945320109262099 ], [ -75.143371004811073, 39.944202034555857 ], [ -75.143511023823052, 39.943430145882381 ], [ -75.143625233796186, 39.942853983891887 ], [ -75.143848665097735, 39.941888959359908 ], [ -75.143930581188712, 39.941533986304428 ], [ -75.144059382222835, 39.940974521697548 ], [ -75.145014646893458, 39.941084104128699 ], [ -75.145598352603301, 39.941151060190606 ], [ -75.145818708790245, 39.941176336170997 ], [ -75.146711165020236, 39.941283705945153 ], [ -75.147583946546277, 39.941384298007847 ], [ -75.148107669763462, 39.941454153587486 ], [ -75.149165402694521, 39.941583521837941 ], [ -75.149584339588685, 39.941633065741399 ], [ -75.150443077893229, 39.941739067739718 ], [ -75.150731662126788, 39.941774198002037 ], [ -75.151173932605317, 39.941828120345988 ], [ -75.151570963796104, 39.941876170315801 ], [ -75.152321702650795, 39.941967746510478 ], [ -75.153890906635993, 39.942171941293381 ], [ -75.155450597551123, 39.942371514849576 ], [ -75.155494589561982, 39.942377129587726 ], [ -75.154258092920458, 39.948094511450527 ], [ -75.142805517713782, 39.946656720100961 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "OLD_CITY", "LISTNAME": "Old City", "MAPNAME": "Old City", "Shape_Leng": 14323.3716974, "Shape_Area": 12554436.225700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.140378078351105, 39.955533225340361 ], [ -75.140742138731198, 39.954105863429589 ], [ -75.140928747271929, 39.953640602596167 ], [ -75.141681669649643, 39.951609884457163 ], [ -75.141673394585226, 39.951602971063707 ], [ -75.141783429211216, 39.951421757887871 ], [ -75.142482246106951, 39.948192559187504 ], [ -75.142578874675991, 39.947735330244079 ], [ -75.142632999742546, 39.947476343359973 ], [ -75.142676459034902, 39.947270030007566 ], [ -75.142805517713782, 39.946656720100961 ], [ -75.154258092920458, 39.948094511450527 ], [ -75.153600192659468, 39.951136204200765 ], [ -75.155156148329183, 39.951327555703052 ], [ -75.154714322940833, 39.953351017148215 ], [ -75.153913287546374, 39.957028575477302 ], [ -75.153844708326076, 39.957020356758427 ], [ -75.152353968892839, 39.956966634214744 ], [ -75.152341034359566, 39.956966341305368 ], [ -75.152310763317388, 39.95696565579582 ], [ -75.1521334864115, 39.956961641072148 ], [ -75.151833850224094, 39.956989818679205 ], [ -75.151248015361205, 39.956976549821817 ], [ -75.151184065468442, 39.956958424978673 ], [ -75.151101691307005, 39.957141817832252 ], [ -75.15097596887864, 39.957290607013348 ], [ -75.15044988575282, 39.957412639544152 ], [ -75.149293221777839, 39.957557635615828 ], [ -75.149029048569133, 39.957551645981134 ], [ -75.14894018422396, 39.957549096707183 ], [ -75.148616775997468, 39.957539816749254 ], [ -75.147961084932845, 39.957485243608652 ], [ -75.147446511747617, 39.957438753809043 ], [ -75.146518781419516, 39.957268031543244 ], [ -75.145453151626938, 39.957071921799987 ], [ -75.144618575946609, 39.956915927746138 ], [ -75.144006283392315, 39.956729904570203 ], [ -75.143194412763549, 39.956544787580775 ], [ -75.142439504283942, 39.956312289236195 ], [ -75.141554431321211, 39.95572762561585 ], [ -75.141393518097374, 39.955478432868503 ], [ -75.141219525916043, 39.955459044109837 ], [ -75.140568896579595, 39.955542694076193 ], [ -75.140378078351105, 39.955533225340361 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "CHINATOWN", "LISTNAME": "Chinatown", "MAPNAME": "Chinatown", "Shape_Leng": 4936.5246168499998, "Shape_Area": 1360164.8712800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.153913287546374, 39.957028575477302 ], [ -75.154714322940833, 39.953351017148215 ], [ -75.157860673580089, 39.95375080164726 ], [ -75.157466426674617, 39.955573760383402 ], [ -75.158234650401539, 39.955668425116983 ], [ -75.157837118468407, 39.957507274140774 ], [ -75.157676330272636, 39.957487819684545 ], [ -75.157342524204722, 39.957443436618902 ], [ -75.157055882569509, 39.957409612707437 ], [ -75.155838957324804, 39.957260416225331 ], [ -75.155470918727318, 39.957215231867359 ], [ -75.153952106226967, 39.957033227467718 ], [ -75.153913287546374, 39.957028575477302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "CENTER_CITY", "LISTNAME": "Center City East", "MAPNAME": "Center City East", "Shape_Leng": 10358.090097599999, "Shape_Area": 4098334.0718299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.154714322940833, 39.953351017148215 ], [ -75.155156148329183, 39.951327555703052 ], [ -75.162297555044077, 39.952218751430856 ], [ -75.162412403441763, 39.952202255290857 ], [ -75.16243479463192, 39.95219386920634 ], [ -75.162619017461793, 39.952115629886343 ], [ -75.162715856602745, 39.951662814636961 ], [ -75.162775996814958, 39.951528734312284 ], [ -75.16301587917161, 39.951535143241202 ], [ -75.163058726244614, 39.95153963528346 ], [ -75.163824770820753, 39.951614610896975 ], [ -75.164021134269262, 39.951630678358477 ], [ -75.164595952474031, 39.951707502086954 ], [ -75.164605118803578, 39.951708959306217 ], [ -75.164892809381399, 39.951762200780514 ], [ -75.165052787679031, 39.951813215761184 ], [ -75.165178088614397, 39.951886190642142 ], [ -75.16524181248603, 39.952003187967804 ], [ -75.165295667369477, 39.952287287407948 ], [ -75.165224281913368, 39.952579203807097 ], [ -75.165022285075366, 39.953586090966112 ], [ -75.163468984911432, 39.953406585850104 ], [ -75.163350282760504, 39.953925373755069 ], [ -75.163221030619354, 39.954451252501656 ], [ -75.163029567680937, 39.955335381464693 ], [ -75.162839963020772, 39.956216421984877 ], [ -75.162429039135915, 39.958077103964406 ], [ -75.16242459275982, 39.958095413191451 ], [ -75.16168008685915, 39.957994087154873 ], [ -75.161187482862431, 39.957930758169525 ], [ -75.160740451627944, 39.957869925284797 ], [ -75.160226922092022, 39.95780210578166 ], [ -75.158643043099701, 39.957602484854547 ], [ -75.15817346535286, 39.957545531294869 ], [ -75.157869705944464, 39.957511296535152 ], [ -75.157837118468407, 39.957507274140774 ], [ -75.158234650401539, 39.955668425116983 ], [ -75.157466426674617, 39.955573760383402 ], [ -75.157860673580089, 39.95375080164726 ], [ -75.154714322940833, 39.953351017148215 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WASHINGTON_SQUARE", "LISTNAME": "Washington Square West", "MAPNAME": "Washington Square West", "Shape_Leng": 12119.2682525, "Shape_Area": 9148298.9301699996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.162297555043963, 39.952218751430905 ], [ -75.155156148329027, 39.951327555703074 ], [ -75.153600192659312, 39.951136204200814 ], [ -75.154258092920401, 39.948094511450584 ], [ -75.155494589561883, 39.942377129587726 ], [ -75.156239685991579, 39.94247053540272 ], [ -75.15661179911875, 39.942518980018207 ], [ -75.157024866828564, 39.94257348246547 ], [ -75.157522973252085, 39.942636795805171 ], [ -75.158017677470895, 39.942701833003454 ], [ -75.158636774201085, 39.942779553014887 ], [ -75.159113857040424, 39.942840331837139 ], [ -75.159783193270286, 39.942927762726541 ], [ -75.160212472987496, 39.942981322275855 ], [ -75.161399413184185, 39.943127716846213 ], [ -75.161784674116575, 39.943182239315881 ], [ -75.162713211871306, 39.943300779273365 ], [ -75.163335577064487, 39.943381090094753 ], [ -75.164127970925776, 39.943481627932456 ], [ -75.164364139908926, 39.94351433892087 ], [ -75.165571464331478, 39.943667088079081 ], [ -75.165463482949832, 39.944078711107593 ], [ -75.165337764212708, 39.944667080848198 ], [ -75.165272319237999, 39.944943988586573 ], [ -75.165165934630721, 39.945566146746778 ], [ -75.16502224505318, 39.946239994964287 ], [ -75.164934602831181, 39.946639777199216 ], [ -75.164744227418396, 39.947439448271666 ], [ -75.164579967514825, 39.948212533218147 ], [ -75.164471624329039, 39.948708657104646 ], [ -75.164331190856487, 39.949336331755511 ], [ -75.164235119823161, 39.949770319798283 ], [ -75.164149311730981, 39.95015178208422 ], [ -75.163997470613637, 39.950836548797895 ], [ -75.163824770820753, 39.95161461089701 ], [ -75.163058726244515, 39.95153963528346 ], [ -75.163015879171496, 39.951535143241237 ], [ -75.162775996814901, 39.951528734312319 ], [ -75.162715856602745, 39.951662814636997 ], [ -75.162619017461864, 39.952115629886343 ], [ -75.16243479463175, 39.952193869206383 ], [ -75.162412403441749, 39.952202255290899 ], [ -75.162297555043963, 39.952218751430905 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "FAIRMOUNT", "LISTNAME": "Fairmount", "MAPNAME": "Fairmount", "Shape_Leng": 13473.0527819, "Shape_Area": 7889607.7889400003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.177855225298984, 39.973832518394261 ], [ -75.177856104086615, 39.973786150515529 ], [ -75.177886538839303, 39.972440515371709 ], [ -75.177538631110565, 39.972397508506262 ], [ -75.177028769771653, 39.972334479436114 ], [ -75.176598089422541, 39.972281237661306 ], [ -75.176541170611856, 39.97231322809354 ], [ -75.172124847818409, 39.972822819188316 ], [ -75.17100323471881, 39.972952433126757 ], [ -75.170299159311767, 39.972874843232091 ], [ -75.170440705796111, 39.972170814349418 ], [ -75.170550266412235, 39.971572681147933 ], [ -75.170558534494219, 39.971529499535592 ], [ -75.170679843687424, 39.970895862916386 ], [ -75.170995344948764, 39.969230352473119 ], [ -75.171163538524155, 39.968285976116512 ], [ -75.171343097579097, 39.967277751674118 ], [ -75.171341966965528, 39.967273696036756 ], [ -75.17210726645439, 39.967287142132463 ], [ -75.173750248758466, 39.967306784740657 ], [ -75.179683072293429, 39.96741891250246 ], [ -75.179857111699349, 39.967424508125923 ], [ -75.18014917075466, 39.967716551523154 ], [ -75.181597836248869, 39.969183927697962 ], [ -75.182141016071711, 39.969673254178161 ], [ -75.182828152324589, 39.970127925230457 ], [ -75.183135114030819, 39.970401455664998 ], [ -75.183548330788597, 39.970752828744466 ], [ -75.184220936000813, 39.971307963524886 ], [ -75.185283457239265, 39.972239760700752 ], [ -75.185456697159367, 39.972392104716974 ], [ -75.185549425844457, 39.972516520650885 ], [ -75.185539644597441, 39.972757690045093 ], [ -75.185410212694535, 39.973383700270119 ], [ -75.186158108531004, 39.973475087628316 ], [ -75.186548053006874, 39.973523311442619 ], [ -75.187032494195122, 39.974551507752089 ], [ -75.187249504349666, 39.975016504682863 ], [ -75.187265742825403, 39.975056983809857 ], [ -75.186683683226036, 39.974982683600871 ], [ -75.185099075540847, 39.974776966930307 ], [ -75.183466118112392, 39.97456836537922 ], [ -75.181854973581963, 39.974358305866673 ], [ -75.178856802490373, 39.973966756301664 ], [ -75.177862154339508, 39.973834939767059 ], [ -75.177855225298984, 39.973832518394261 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "FRANCISVILLE", "LISTNAME": "Francisville", "MAPNAME": "Francisville", "Shape_Leng": 10512.743701699999, "Shape_Area": 5893974.4177799998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.15934368567963, 39.971450605608965 ], [ -75.159346746081283, 39.971437177509394 ], [ -75.159631246523347, 39.970184719440475 ], [ -75.159904556607344, 39.968996140647512 ], [ -75.16000744920207, 39.968570433711548 ], [ -75.160101485230186, 39.968166320519977 ], [ -75.160150105289688, 39.967903576627691 ], [ -75.160207228490009, 39.96761074066103 ], [ -75.160323317375116, 39.967049219609386 ], [ -75.160393354532957, 39.967066995361037 ], [ -75.170175974837036, 39.967253201237803 ], [ -75.171341966965528, 39.967273696036756 ], [ -75.171343097579097, 39.967277751674118 ], [ -75.171163538524155, 39.968285976116512 ], [ -75.170995344948764, 39.969230352473119 ], [ -75.170679843687424, 39.970895862916386 ], [ -75.170558534494219, 39.971529499535592 ], [ -75.170550266412235, 39.971572681147933 ], [ -75.170440705796111, 39.972170814349418 ], [ -75.170299159311767, 39.972874843232091 ], [ -75.17100323471881, 39.972952433126757 ], [ -75.170432055005008, 39.973018603450186 ], [ -75.168873934782752, 39.973199699491474 ], [ -75.167218454863331, 39.973400161317244 ], [ -75.1665379838673, 39.972383053018987 ], [ -75.166335958629347, 39.972357751723827 ], [ -75.162702267525887, 39.971881406919969 ], [ -75.161122069623246, 39.971685937085873 ], [ -75.16028583210273, 39.971579230350031 ], [ -75.15934368567963, 39.971450605608965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "SPRING_GARDEN", "LISTNAME": "Spring Garden", "MAPNAME": "Spring Garden", "Shape_Leng": 13574.806234199999, "Shape_Area": 6775875.8228000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.16033250032423, 39.967004804139158 ], [ -75.160412749882624, 39.966616630263729 ], [ -75.160482117360672, 39.966282837441447 ], [ -75.160600033163874, 39.965710716440356 ], [ -75.160718276044307, 39.965135338357811 ], [ -75.160879913103898, 39.964427832654401 ], [ -75.160975009946142, 39.963999101028307 ], [ -75.161030588517548, 39.963759271737494 ], [ -75.161109040760735, 39.963411170117737 ], [ -75.161172994305034, 39.963127395376276 ], [ -75.161232021798739, 39.962864531017487 ], [ -75.161309084460598, 39.962523526766596 ], [ -75.161372660098877, 39.96223281731649 ], [ -75.161617970618735, 39.962398298814229 ], [ -75.164656742352932, 39.962802561532897 ], [ -75.167856160175589, 39.963210359000662 ], [ -75.170999930645394, 39.963572638863035 ], [ -75.174439336271021, 39.964012151980732 ], [ -75.175900673729316, 39.964183964839414 ], [ -75.17627805468193, 39.964245843729074 ], [ -75.176784153278263, 39.964755361613513 ], [ -75.177526346656762, 39.965416016050021 ], [ -75.178149073488939, 39.96591656285068 ], [ -75.178791205311754, 39.966557186643321 ], [ -75.179049117750793, 39.966716557241874 ], [ -75.179849156052157, 39.967416553289937 ], [ -75.179857111699349, 39.967424508125923 ], [ -75.179683072293429, 39.96741891250246 ], [ -75.173750248758466, 39.967306784740657 ], [ -75.17210726645439, 39.967287142132463 ], [ -75.171341966965528, 39.967273696036756 ], [ -75.170175974837036, 39.967253201237803 ], [ -75.160393354532957, 39.967066995361037 ], [ -75.160323317375116, 39.967049219609386 ], [ -75.16033250032423, 39.967004804139158 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "LOGAN_SQUARE", "LISTNAME": "Logan Square", "MAPNAME": "Logan Square", "Shape_Leng": 18613.9089914, "Shape_Area": 18608228.292800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.177260300545271, 39.964406897102762 ], [ -75.17634602552323, 39.964256988690856 ], [ -75.176278054681788, 39.96424584372911 ], [ -75.175900673729316, 39.964183964839414 ], [ -75.174439336270893, 39.964012151980782 ], [ -75.170999930645394, 39.963572638863035 ], [ -75.167856160175589, 39.963210359000662 ], [ -75.164656742352875, 39.962802561532939 ], [ -75.161617970618735, 39.962398298814229 ], [ -75.161372660098877, 39.962232817316533 ], [ -75.161377345361942, 39.962211387891323 ], [ -75.161387104231366, 39.962167771040164 ], [ -75.161471545817875, 39.961790344815782 ], [ -75.161564912714482, 39.961388320410954 ], [ -75.161648814085524, 39.960991217259675 ], [ -75.161902156532577, 39.960898136949375 ], [ -75.161991497680162, 39.960361832465317 ], [ -75.162136463012459, 39.959574681664286 ], [ -75.162206759832969, 39.959093130065718 ], [ -75.162264728440704, 39.958831831712459 ], [ -75.162324466229407, 39.958561606351978 ], [ -75.16242459275972, 39.958095413191494 ], [ -75.162429039135858, 39.958077103964406 ], [ -75.162839963020673, 39.956216421984934 ], [ -75.163029567680937, 39.955335381464693 ], [ -75.163221030619354, 39.954451252501656 ], [ -75.163350282760462, 39.953925373755105 ], [ -75.163468984911489, 39.953406585850146 ], [ -75.165022285075239, 39.953586090966098 ], [ -75.165224281913353, 39.952579203807133 ], [ -75.173175827311994, 39.953574148032786 ], [ -75.175085957290534, 39.953803063972138 ], [ -75.177821870606635, 39.9541610854168 ], [ -75.179435779199267, 39.954378851498547 ], [ -75.180041513239431, 39.954454458955695 ], [ -75.179745993018713, 39.955430983066151 ], [ -75.179649164625459, 39.956016639218475 ], [ -75.179449153720824, 39.956316637227395 ], [ -75.179423617365558, 39.956571984130669 ], [ -75.179349146754333, 39.957316629616749 ], [ -75.179349145469899, 39.958216621930262 ], [ -75.180038714394598, 39.960088209796417 ], [ -75.180049177762214, 39.960116607957104 ], [ -75.181749259268003, 39.962116593786163 ], [ -75.183556009324676, 39.964232442169674 ], [ -75.183294366591696, 39.964334041089735 ], [ -75.182344572566834, 39.96445330478759 ], [ -75.181874825328606, 39.964376666910127 ], [ -75.181268363628732, 39.964222575094816 ], [ -75.180382228522021, 39.964078748620778 ], [ -75.17988633319591, 39.964125501096404 ], [ -75.178949117228086, 39.964116576931829 ], [ -75.177768326757771, 39.964458254132303 ], [ -75.177260300545271, 39.964406897102762 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "RITTENHOUSE", "LISTNAME": "Rittenhouse", "MAPNAME": "Rittenhouse", "Shape_Leng": 16365.2709581, "Shape_Area": 14620958.306099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.165463482949832, 39.944078711107593 ], [ -75.165571464331478, 39.943667088079081 ], [ -75.167180159597493, 39.943851213744061 ], [ -75.168753217643257, 39.944046912539541 ], [ -75.170331529658199, 39.944241616623863 ], [ -75.171890863552903, 39.944433957544959 ], [ -75.173471130536015, 39.944641748292604 ], [ -75.175029296250244, 39.944834243381727 ], [ -75.176984616916798, 39.945082906464798 ], [ -75.178552495638087, 39.945283418980893 ], [ -75.179415432862967, 39.945416651876663 ], [ -75.17972376759333, 39.945453013494877 ], [ -75.179508018662077, 39.946429332872 ], [ -75.179233109852547, 39.947695350328942 ], [ -75.178993591267826, 39.948752859623418 ], [ -75.180020106872021, 39.948875026609123 ], [ -75.182261382332797, 39.949165339588788 ], [ -75.183328241382853, 39.949343092732825 ], [ -75.182549321972445, 39.950316682881422 ], [ -75.181556029981166, 39.951486531825722 ], [ -75.18083803774735, 39.952972788496602 ], [ -75.180041513239502, 39.954454458955645 ], [ -75.179435779199096, 39.954378851498511 ], [ -75.177821870606579, 39.9541610854168 ], [ -75.175085957290477, 39.953803063972138 ], [ -75.173175827311994, 39.953574148032786 ], [ -75.165224281913197, 39.952579203807133 ], [ -75.165295667369477, 39.952287287407948 ], [ -75.165241812485974, 39.952003187967804 ], [ -75.165178088614297, 39.951886190642178 ], [ -75.165052787679087, 39.951813215761184 ], [ -75.164892809381399, 39.95176220078055 ], [ -75.164605118803422, 39.951708959306238 ], [ -75.164595952474031, 39.951707502086954 ], [ -75.16402113426922, 39.951630678358477 ], [ -75.163824770820753, 39.95161461089701 ], [ -75.163997470613637, 39.950836548797895 ], [ -75.164149311730981, 39.95015178208422 ], [ -75.164235119823161, 39.949770319798283 ], [ -75.164331190856487, 39.949336331755511 ], [ -75.164471624329039, 39.948708657104646 ], [ -75.164579967514825, 39.948212533218147 ], [ -75.164744227418396, 39.947439448271666 ], [ -75.164934602831181, 39.946639777199216 ], [ -75.16502224505318, 39.946239994964287 ], [ -75.165165934630721, 39.945566146746778 ], [ -75.165272319237999, 39.944943988586573 ], [ -75.165337764212708, 39.944667080848198 ], [ -75.165463482949832, 39.944078711107593 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "FITLER_SQUARE", "LISTNAME": "Fitler Square", "MAPNAME": "Fitler Square", "Shape_Leng": 6822.5982409600001, "Shape_Area": 2838658.6102499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.17972376759333, 39.945453013494877 ], [ -75.179808548371085, 39.945115386847142 ], [ -75.18061491864141, 39.944630960121948 ], [ -75.182779498567257, 39.944908600985002 ], [ -75.185006210645341, 39.945181283499558 ], [ -75.185701637952178, 39.945278848445582 ], [ -75.187801085592625, 39.946569110872744 ], [ -75.187056323287365, 39.947081322624719 ], [ -75.185649485976157, 39.948016699086665 ], [ -75.184549427025161, 39.948616695798833 ], [ -75.183349364979279, 39.949316690143334 ], [ -75.183328241382853, 39.949343092732825 ], [ -75.182261382332797, 39.949165339588788 ], [ -75.180020106872021, 39.948875026609123 ], [ -75.178993591267826, 39.948752859623418 ], [ -75.179233109852547, 39.947695350328942 ], [ -75.179508018662077, 39.946429332872 ], [ -75.17972376759333, 39.945453013494877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "GRADUATE_HOSPITAL", "LISTNAME": "Graduate Hospital", "MAPNAME": "Graduate Hospital", "Shape_Leng": 18603.011745899999, "Shape_Area": 14126514.565199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.17972376759333, 39.945453013494877 ], [ -75.179415432862967, 39.945416651876663 ], [ -75.178552495638087, 39.945283418980893 ], [ -75.176984616916798, 39.945082906464798 ], [ -75.175029296250244, 39.944834243381727 ], [ -75.173471130536015, 39.944641748292604 ], [ -75.171890863552903, 39.944433957544959 ], [ -75.170331529658199, 39.944241616623863 ], [ -75.168753217643257, 39.944046912539541 ], [ -75.167180159597493, 39.943851213744061 ], [ -75.165571464331478, 39.943667088079081 ], [ -75.165679613698316, 39.943203429810488 ], [ -75.165778250469955, 39.94277575985187 ], [ -75.165861890708655, 39.942413109657252 ], [ -75.166004905924652, 39.941793008977555 ], [ -75.166236969229089, 39.940786781165308 ], [ -75.166322690049483, 39.94041508997681 ], [ -75.166416097943483, 39.940010055113781 ], [ -75.166624383345891, 39.939060691029098 ], [ -75.166870083814658, 39.937891023798755 ], [ -75.168445251099484, 39.938087722468552 ], [ -75.168951501002255, 39.938147030734001 ], [ -75.170039597458739, 39.938272013887421 ], [ -75.170526598093105, 39.938329614364839 ], [ -75.170839026066503, 39.938365827820213 ], [ -75.171028693143995, 39.938386561995607 ], [ -75.171625790814758, 39.938457018691551 ], [ -75.172233199959152, 39.93852270612053 ], [ -75.172675157614819, 39.938572648968837 ], [ -75.173173691783333, 39.938632281322882 ], [ -75.173772351097227, 39.938704041279038 ], [ -75.174196926352778, 39.938754176991033 ], [ -75.174789931008135, 39.938823702524672 ], [ -75.176373964198191, 39.939001426883458 ], [ -75.178259378719375, 39.939240416337135 ], [ -75.179814038657867, 39.939474776164417 ], [ -75.181493776358167, 39.939690118878779 ], [ -75.183155368371303, 39.939898788445426 ], [ -75.184942526881343, 39.940099941155935 ], [ -75.187577629305025, 39.940382188772332 ], [ -75.188049078887559, 39.940101645736313 ], [ -75.188890500781667, 39.940608423240377 ], [ -75.189716362344726, 39.941105816134055 ], [ -75.191187049986041, 39.94192650272678 ], [ -75.191723602201435, 39.942139679188955 ], [ -75.192769837601347, 39.942628288458451 ], [ -75.191508714200111, 39.943166567680166 ], [ -75.188749651150346, 39.945916714435306 ], [ -75.187801085592625, 39.946569110872744 ], [ -75.185701637952178, 39.945278848445582 ], [ -75.185006210645341, 39.945181283499558 ], [ -75.182779498567257, 39.944908600985002 ], [ -75.18061491864141, 39.944630960121948 ], [ -75.179808548371085, 39.945115386847142 ], [ -75.17972376759333, 39.945453013494877 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "POINT_BREEZE", "LISTNAME": "Point Breeze", "MAPNAME": "Point Breeze", "Shape_Leng": 17529.2837139, "Shape_Area": 16937721.026900001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.16826094718472, 39.930455432236968 ], [ -75.174763263649069, 39.931310562539934 ], [ -75.175288799216332, 39.928869851854529 ], [ -75.175882808391322, 39.928964337000821 ], [ -75.176862354967241, 39.929076485030151 ], [ -75.178458697355865, 39.929292621149322 ], [ -75.180358280598981, 39.929542580924682 ], [ -75.181942774344591, 39.929762911213736 ], [ -75.183599529729506, 39.929930737459607 ], [ -75.183844423320863, 39.929958758797241 ], [ -75.185230511190639, 39.930161079658824 ], [ -75.185778470487179, 39.930227432046294 ], [ -75.186244857093669, 39.930282941614699 ], [ -75.187024463693078, 39.930390411797944 ], [ -75.186769327309378, 39.931593047064901 ], [ -75.186500657867569, 39.932816227823245 ], [ -75.186244289022184, 39.934030878486794 ], [ -75.185978332400339, 39.93525740500187 ], [ -75.185498278292371, 39.937599858962258 ], [ -75.184942526881343, 39.940099941155935 ], [ -75.183155368371303, 39.939898788445426 ], [ -75.181493776358167, 39.939690118878779 ], [ -75.179814038657867, 39.939474776164417 ], [ -75.178259378719375, 39.939240416337135 ], [ -75.176373964198191, 39.939001426883458 ], [ -75.174789931008135, 39.938823702524672 ], [ -75.174196926352778, 39.938754176991033 ], [ -75.173772351097227, 39.938704041279038 ], [ -75.173173691783333, 39.938632281322882 ], [ -75.172675157614819, 39.938572648968837 ], [ -75.172233199959152, 39.93852270612053 ], [ -75.171625790814758, 39.938457018691551 ], [ -75.171028693143995, 39.938386561995607 ], [ -75.170839026066503, 39.938365827820213 ], [ -75.170526598093105, 39.938329614364839 ], [ -75.170039597458739, 39.938272013887421 ], [ -75.168951501002255, 39.938147030734001 ], [ -75.168445251099484, 39.938087722468552 ], [ -75.166870083814658, 39.937891023798755 ], [ -75.167014423335289, 39.937191705201855 ], [ -75.167114034464063, 39.936734067027409 ], [ -75.16733494966914, 39.935656719120153 ], [ -75.167593514858709, 39.93440547355803 ], [ -75.167648842271717, 39.934116941003396 ], [ -75.167721514639283, 39.932918243983032 ], [ -75.167967819714434, 39.931680132483862 ], [ -75.16826094718472, 39.930455432236968 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "HAWTHORNE", "LISTNAME": "Hawthorne", "MAPNAME": "Hawthorne", "Shape_Leng": 8321.2699110800004, "Shape_Area": 4250950.6573099997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.158636774201085, 39.942779553014887 ], [ -75.158828611889263, 39.941933417859993 ], [ -75.159031002319807, 39.9409613417522 ], [ -75.159415742915328, 39.939183795182061 ], [ -75.159682083885158, 39.937996527179109 ], [ -75.159947365166317, 39.936772479674197 ], [ -75.1613976365919, 39.937160230182769 ], [ -75.163036558638225, 39.937409086245722 ], [ -75.164608103821024, 39.937607176366214 ], [ -75.166870083814658, 39.937891023798755 ], [ -75.166624383345891, 39.939060691029098 ], [ -75.166416097943483, 39.940010055113781 ], [ -75.166322690049483, 39.94041508997681 ], [ -75.166236969229089, 39.940786781165308 ], [ -75.166004905924652, 39.941793008977555 ], [ -75.165861890708655, 39.942413109657252 ], [ -75.165778250469955, 39.94277575985187 ], [ -75.165679613698316, 39.943203429810488 ], [ -75.165571464331478, 39.943667088079081 ], [ -75.164364139908926, 39.94351433892087 ], [ -75.164127970925776, 39.943481627932456 ], [ -75.163335577064487, 39.943381090094753 ], [ -75.162713211871306, 39.943300779273365 ], [ -75.161784674116575, 39.943182239315881 ], [ -75.161399413184185, 39.943127716846213 ], [ -75.160212472987496, 39.942981322275855 ], [ -75.159783193270286, 39.942927762726541 ], [ -75.159113857040424, 39.942840331837139 ], [ -75.158636774201085, 39.942779553014887 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "BELLA_VISTA", "LISTNAME": "Bella Vista", "MAPNAME": "Bella Vista", "Shape_Leng": 8360.0536955900006, "Shape_Area": 4253834.71172 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.155494589561883, 39.942377129587726 ], [ -75.155450597551066, 39.942371514849626 ], [ -75.15389090663588, 39.94217194129341 ], [ -75.152321702650795, 39.941967746510478 ], [ -75.15241673750846, 39.941541325576878 ], [ -75.152513631711841, 39.941102151349739 ], [ -75.152676091779071, 39.940294485319122 ], [ -75.152738570632309, 39.939982673319122 ], [ -75.152804120453496, 39.939664243492501 ], [ -75.152951137396911, 39.939121221174794 ], [ -75.153061561127927, 39.938673083335644 ], [ -75.153265782943365, 39.937717422432272 ], [ -75.153413544682266, 39.937027694880264 ], [ -75.153597669489841, 39.936322255933113 ], [ -75.153716119970596, 39.935829775599373 ], [ -75.153784512783048, 39.935468841180594 ], [ -75.153846401166817, 39.935124623817508 ], [ -75.153861174380708, 39.935128609194273 ], [ -75.155388969284033, 39.935549645796257 ], [ -75.156252644813492, 39.935784368223366 ], [ -75.159320256005898, 39.93660480648122 ], [ -75.159947365166317, 39.936772479674197 ], [ -75.159682083885158, 39.937996527179109 ], [ -75.159415742915328, 39.939183795182061 ], [ -75.159031002319807, 39.9409613417522 ], [ -75.158828611889263, 39.941933417859993 ], [ -75.158636774201085, 39.942779553014887 ], [ -75.158017677470895, 39.942701833003454 ], [ -75.157522973252085, 39.942636795805171 ], [ -75.157024866828564, 39.94257348246547 ], [ -75.15661179911875, 39.942518980018207 ], [ -75.156239685991579, 39.94247053540272 ], [ -75.155494589561883, 39.942377129587726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "QUEEN_VILLAGE", "LISTNAME": "Queen Village", "MAPNAME": "Queen Village", "Shape_Leng": 10414.195744000001, "Shape_Area": 6631987.938289999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.144059382222721, 39.940974521697548 ], [ -75.144271296863622, 39.940057064615296 ], [ -75.144388880547169, 39.939545509783692 ], [ -75.144474008810633, 39.939135736421001 ], [ -75.144546482151767, 39.938809203642265 ], [ -75.144590836211719, 39.938609357800011 ], [ -75.144655530672736, 39.938317868205658 ], [ -75.144228874940481, 39.938326854367105 ], [ -75.14376439559247, 39.938256364461886 ], [ -75.144808129358452, 39.935403113056651 ], [ -75.145297993750432, 39.933456305287201 ], [ -75.145714651220132, 39.933487211140893 ], [ -75.145724659038919, 39.933443667797924 ], [ -75.147315754909812, 39.933653194634743 ], [ -75.149262266102937, 39.93390701205027 ], [ -75.150804120461856, 39.934293129696037 ], [ -75.151668899737388, 39.934533513063514 ], [ -75.153104768108122, 39.93492456888675 ], [ -75.153846401166817, 39.935124623817508 ], [ -75.153784512783048, 39.935468841180594 ], [ -75.153716119970596, 39.935829775599373 ], [ -75.153597669489841, 39.936322255933113 ], [ -75.153413544682266, 39.937027694880264 ], [ -75.153265782943365, 39.937717422432272 ], [ -75.153061561127927, 39.938673083335644 ], [ -75.152951137396911, 39.939121221174794 ], [ -75.152804120453496, 39.939664243492501 ], [ -75.152738570632309, 39.939982673319122 ], [ -75.152676091779071, 39.940294485319122 ], [ -75.152513631711841, 39.941102151349739 ], [ -75.15241673750846, 39.941541325576878 ], [ -75.152321702650795, 39.941967746510478 ], [ -75.151570963796047, 39.941876170315801 ], [ -75.151173932605303, 39.941828120346052 ], [ -75.150731662126844, 39.941774198002072 ], [ -75.150443077893058, 39.941739067739718 ], [ -75.149584339588571, 39.941633065741399 ], [ -75.149165402694464, 39.941583521837977 ], [ -75.148107669763363, 39.941454153587486 ], [ -75.147583946546277, 39.941384298007847 ], [ -75.146711165020122, 39.941283705945132 ], [ -75.145818708790088, 39.941176336170997 ], [ -75.145598352603187, 39.941151060190585 ], [ -75.145014646893301, 39.94108410412872 ], [ -75.144059382222721, 39.940974521697548 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "DICKINSON_NARROWS", "LISTNAME": "Dickinson Narrows", "MAPNAME": "Dickinson Narrows", "Shape_Leng": 10062.154774099999, "Shape_Area": 4927491.9789100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.153846401166817, 39.935124623817508 ], [ -75.153104768108122, 39.93492456888675 ], [ -75.151668899737388, 39.934533513063514 ], [ -75.150804120461856, 39.934293129696037 ], [ -75.151426487659293, 39.931509462287607 ], [ -75.151956071670995, 39.929114273361414 ], [ -75.152589836161653, 39.926329873074501 ], [ -75.152938442599847, 39.924682308296283 ], [ -75.154575886966143, 39.924880994773424 ], [ -75.156089162721869, 39.925085575923738 ], [ -75.157673540508441, 39.925274575620911 ], [ -75.157115293766836, 39.927755083226025 ], [ -75.15647060920729, 39.930629173825984 ], [ -75.155760626414022, 39.933853077494845 ], [ -75.155388969284033, 39.935549645796257 ], [ -75.153861174380708, 39.935128609194273 ], [ -75.153846401166817, 39.935124623817508 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "PASSYUNK_SQUARE", "LISTNAME": "Passyunk Square", "MAPNAME": "Passyunk Square", "Shape_Leng": 11751.5037197, "Shape_Area": 8709395.7534999996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.156842167052389, 39.928972746481087 ], [ -75.16826094718472, 39.930455432236968 ], [ -75.167967819714434, 39.931680132483862 ], [ -75.167721514639283, 39.932918243983032 ], [ -75.167648842271717, 39.934116941003396 ], [ -75.167593514858709, 39.93440547355803 ], [ -75.16733494966914, 39.935656719120153 ], [ -75.167114034464063, 39.936734067027409 ], [ -75.167014423335289, 39.937191705201855 ], [ -75.166870083814658, 39.937891023798755 ], [ -75.164608103821024, 39.937607176366214 ], [ -75.163036558638225, 39.937409086245722 ], [ -75.1613976365919, 39.937160230182769 ], [ -75.159947365166317, 39.936772479674197 ], [ -75.159320256005898, 39.93660480648122 ], [ -75.156252644813492, 39.935784368223366 ], [ -75.155388969284033, 39.935549645796257 ], [ -75.155760626414022, 39.933853077494845 ], [ -75.15647060920729, 39.930629173825984 ], [ -75.156842167052389, 39.928972746481087 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "GREENWICH", "LISTNAME": "Greenwich", "MAPNAME": "Greenwich", "Shape_Leng": 6232.8704381099997, "Shape_Area": 1970548.7845000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.157673540508441, 39.925274575620911 ], [ -75.156089162721869, 39.925085575923738 ], [ -75.154575886966143, 39.924880994773424 ], [ -75.152938442599847, 39.924682308296283 ], [ -75.153373935795742, 39.922727592181083 ], [ -75.153454364961533, 39.922293496896025 ], [ -75.155053012302801, 39.92249394271942 ], [ -75.15662611190794, 39.922691161733283 ], [ -75.158192066647629, 39.922894476645723 ], [ -75.161300794193266, 39.923298512668481 ], [ -75.161136389636965, 39.924089105971461 ], [ -75.160865612369477, 39.925296596332679 ], [ -75.160773807147635, 39.925702748963538 ], [ -75.160755163462809, 39.925700537634967 ], [ -75.159183438835299, 39.925489722544192 ], [ -75.157673540508441, 39.925274575620911 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "LOWER_MOYAMENSING", "LISTNAME": "Lower Moyamensing", "MAPNAME": "Lower Moyamensing", "Shape_Leng": 12975.343445799999, "Shape_Area": 10345496.8838 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.161300794193423, 39.923298512668481 ], [ -75.158192066647672, 39.92289447664573 ], [ -75.15662611190794, 39.922691161733283 ], [ -75.156892471835633, 39.921459888713898 ], [ -75.157161699679392, 39.920214317017397 ], [ -75.157711874374769, 39.917716348988165 ], [ -75.157980571279509, 39.91647563123508 ], [ -75.158267101674952, 39.915152618237954 ], [ -75.158282779853124, 39.91515433501111 ], [ -75.158631793665208, 39.915192545606232 ], [ -75.158848375546881, 39.915216256910007 ], [ -75.15921841433412, 39.915256767269398 ], [ -75.159362574903781, 39.915272549146735 ], [ -75.159880767178819, 39.915329277063691 ], [ -75.160445967977921, 39.915393156224617 ], [ -75.160507452618234, 39.91540091069718 ], [ -75.160872516869034, 39.915446948176623 ], [ -75.16148446087702, 39.915524115417725 ], [ -75.161944771769143, 39.915582159785792 ], [ -75.16241549533045, 39.915641515826408 ], [ -75.162562952959632, 39.91566010895199 ], [ -75.162801790096751, 39.915690223870314 ], [ -75.162946638264785, 39.915708487304983 ], [ -75.163519806195225, 39.915780754535604 ], [ -75.163849194850783, 39.915822283409064 ], [ -75.163962943919401, 39.915836624680793 ], [ -75.164545455782218, 39.91591006520067 ], [ -75.165090636608511, 39.915978795676999 ], [ -75.165229500324244, 39.91599630227217 ], [ -75.165564030104619, 39.916038474586998 ], [ -75.166093637402582, 39.916105237260773 ], [ -75.166293529983903, 39.916130435046121 ], [ -75.166649709724439, 39.916175332904025 ], [ -75.166933211461995, 39.916211068687694 ], [ -75.167152551213661, 39.916238715991689 ], [ -75.167547839945072, 39.916288189882437 ], [ -75.167690503279218, 39.916306674667283 ], [ -75.168223897922687, 39.916371389033841 ], [ -75.168415200052323, 39.916393529815807 ], [ -75.168727390539502, 39.916435875449636 ], [ -75.169295934765572, 39.916508175232444 ], [ -75.170170959536705, 39.916609258439806 ], [ -75.170670220544054, 39.916671931805489 ], [ -75.171264774834711, 39.916738542181946 ], [ -75.171132009255743, 39.917332360372797 ], [ -75.170953067523897, 39.918132698771181 ], [ -75.170687346945229, 39.919321123164188 ], [ -75.170415248101662, 39.920635438174287 ], [ -75.170155118219043, 39.921865024116464 ], [ -75.169858496934637, 39.923118443788461 ], [ -75.169570549607954, 39.924363095741938 ], [ -75.168475095160531, 39.924229376260193 ], [ -75.166012580294435, 39.923906113753226 ], [ -75.161309275024095, 39.923299615075102 ], [ -75.161300794193423, 39.923298512668481 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WHITMAN", "LISTNAME": "Whitman", "MAPNAME": "Whitman", "Shape_Leng": 10895.2137948, "Shape_Area": 7475589.535029999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.15345436496159, 39.922293496895975 ], [ -75.151073432062191, 39.921982083837783 ], [ -75.149916449857358, 39.921821944305414 ], [ -75.148043263975921, 39.92154043404993 ], [ -75.14822155774668, 39.920337159754041 ], [ -75.148056589723126, 39.918910531206478 ], [ -75.147740646076272, 39.916776183922472 ], [ -75.147991853333963, 39.915172828597505 ], [ -75.14812110682432, 39.914691622074294 ], [ -75.148360547149153, 39.91380018716896 ], [ -75.150067272659143, 39.914047424113399 ], [ -75.151657847225664, 39.914274733973379 ], [ -75.152406968874331, 39.914385835218624 ], [ -75.152570710983596, 39.914413198764976 ], [ -75.153228153301797, 39.914498600794616 ], [ -75.155003510871822, 39.91475167271112 ], [ -75.155851936920044, 39.914870945710355 ], [ -75.156716120001647, 39.914973559412374 ], [ -75.15751636262948, 39.915070422788979 ], [ -75.157753796700661, 39.915096418761465 ], [ -75.158122963758103, 39.915136837286859 ], [ -75.158267101674952, 39.915152618237954 ], [ -75.157980571279509, 39.91647563123508 ], [ -75.157711874374769, 39.917716348988165 ], [ -75.157161699679392, 39.920214317017397 ], [ -75.156892471835633, 39.921459888713898 ], [ -75.15662611190794, 39.922691161733283 ], [ -75.155053012302915, 39.922493942719434 ], [ -75.15345436496159, 39.922293496895975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "INDUSTRIAL", "LISTNAME": "Industrial", "MAPNAME": "Industrial", "Shape_Leng": 53290.782917800003, "Shape_Area": 119437430.82 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.194285287083957, 39.925885034232934 ], [ -75.195356379944627, 39.920827594330014 ], [ -75.195079782088101, 39.920877479806158 ], [ -75.194545422738813, 39.92098129517121 ], [ -75.193966224533526, 39.921086489824695 ], [ -75.191316308955578, 39.921604023509822 ], [ -75.190949832681298, 39.921616884709948 ], [ -75.190546200585089, 39.921605681937045 ], [ -75.190153617357041, 39.9216806805102 ], [ -75.189556863823569, 39.921794679415839 ], [ -75.189260807710681, 39.921851234447303 ], [ -75.188933741212395, 39.921912064194352 ], [ -75.190109806408259, 39.914535812606765 ], [ -75.190423141111026, 39.91306196022461 ], [ -75.190736277376061, 39.911588976797105 ], [ -75.190908901911612, 39.910845843375185 ], [ -75.191189783533275, 39.909636643173798 ], [ -75.191607773703552, 39.907837102149529 ], [ -75.192132212996171, 39.906501655444153 ], [ -75.193123479319397, 39.902635516643862 ], [ -75.193419753979029, 39.900837071447945 ], [ -75.193319148170289, 39.899712172463488 ], [ -75.192705368555281, 39.898553811293951 ], [ -75.191601204350363, 39.897516578031727 ], [ -75.19002652836646, 39.896803088097855 ], [ -75.191940006004657, 39.89609235103373 ], [ -75.193971825244944, 39.894992985386502 ], [ -75.195861354127572, 39.893647065125144 ], [ -75.197172143986393, 39.892683030804683 ], [ -75.197174118898076, 39.892684233487834 ], [ -75.198950373272964, 39.89311706273606 ], [ -75.205950768179846, 39.894817032788715 ], [ -75.208250897092668, 39.895517022119883 ], [ -75.2119601122902, 39.897659726338496 ], [ -75.212724670910958, 39.897313265046371 ], [ -75.213768838241222, 39.89684008431086 ], [ -75.214550334274222, 39.896478356368995 ], [ -75.223651799156329, 39.892316997820465 ], [ -75.223951816308656, 39.892216997560716 ], [ -75.224564310230107, 39.891985009970618 ], [ -75.226513657769729, 39.892706703413545 ], [ -75.228714220535508, 39.893086381479861 ], [ -75.231052218391866, 39.893216971989922 ], [ -75.230457204050438, 39.893799825255705 ], [ -75.229480766835664, 39.894562791813421 ], [ -75.228285088332072, 39.895870930522264 ], [ -75.225926733848738, 39.8986424203068 ], [ -75.22484129969088, 39.902442101278055 ], [ -75.226251966771073, 39.904086929644876 ], [ -75.22799723520788, 39.907136739372596 ], [ -75.229262079840467, 39.90901846405405 ], [ -75.230098596443568, 39.910679434638979 ], [ -75.230290543162837, 39.910885374195196 ], [ -75.230357234640309, 39.911061543191991 ], [ -75.229884906330966, 39.911415187614516 ], [ -75.229174742178714, 39.911900525015561 ], [ -75.228391381983329, 39.91247026908399 ], [ -75.227718719631824, 39.912939466029712 ], [ -75.227074547322232, 39.913514227130875 ], [ -75.226273262623408, 39.914595506918459 ], [ -75.217690771948767, 39.927316746139667 ], [ -75.217654596301912, 39.927302325893486 ], [ -75.216736318392165, 39.926945630297062 ], [ -75.214919147003855, 39.926217895644932 ], [ -75.213188032904853, 39.925640507701935 ], [ -75.212599622337777, 39.925343690605601 ], [ -75.211550918984003, 39.928416815451172 ], [ -75.209033532531919, 39.93178638104888 ], [ -75.207454736874269, 39.933504594548701 ], [ -75.206467221120718, 39.933309659203687 ], [ -75.196717159534145, 39.928486467033927 ], [ -75.194285287083957, 39.925885034232934 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "AIRPORT", "LISTNAME": "Airport", "MAPNAME": "Airport", "Shape_Leng": 49698.191521100001, "Shape_Area": 97738683.725500003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.257585117709652, 39.876262638443229 ], [ -75.251736504926697, 39.877365915984768 ], [ -75.249956684199631, 39.878061660899711 ], [ -75.248169273945564, 39.878962882954198 ], [ -75.245405792537838, 39.880596417926775 ], [ -75.244058312105636, 39.882038253439845 ], [ -75.242975826546996, 39.884243269085736 ], [ -75.241926732350109, 39.886449823050029 ], [ -75.240975558449577, 39.887724187976474 ], [ -75.239743353255449, 39.889038854553995 ], [ -75.238195554195045, 39.890197424591562 ], [ -75.236375146036835, 39.891167811002653 ], [ -75.231052218391866, 39.893216971989922 ], [ -75.228714220535508, 39.893086381479861 ], [ -75.226513657769729, 39.892706703413545 ], [ -75.224564310230107, 39.891985009970618 ], [ -75.223951816308656, 39.892216997560716 ], [ -75.223651799156329, 39.892316997820465 ], [ -75.214550334274222, 39.896478356368995 ], [ -75.213768838241222, 39.89684008431086 ], [ -75.212724670910958, 39.897313265046371 ], [ -75.2119601122902, 39.897659726338496 ], [ -75.208250897092668, 39.895517022119883 ], [ -75.205950768179846, 39.894817032788715 ], [ -75.198950373272964, 39.89311706273606 ], [ -75.197174118898076, 39.892684233487834 ], [ -75.196341779080257, 39.892177353545272 ], [ -75.195750193325139, 39.891817080375596 ], [ -75.193957613472648, 39.878240782003921 ], [ -75.19416944973942, 39.878108720082025 ], [ -75.194708449525137, 39.877742721511353 ], [ -75.195016448481127, 39.877522721759256 ], [ -75.195234447767049, 39.877366722304792 ], [ -75.195359447482616, 39.877277722875476 ], [ -75.195487447988569, 39.877168723012581 ], [ -75.195906446804813, 39.876812724488367 ], [ -75.196402446961955, 39.876419725310953 ], [ -75.196759446453001, 39.87609972663185 ], [ -75.197121445510462, 39.875819727617085 ], [ -75.197422444670224, 39.875516728256528 ], [ -75.197634445368081, 39.875295729283145 ], [ -75.197826445052726, 39.875128729485944 ], [ -75.198104444245814, 39.874862730405852 ], [ -75.198550443735172, 39.874442732008234 ], [ -75.199047443538575, 39.873991733129195 ], [ -75.199466442644948, 39.873553734568958 ], [ -75.199855441753954, 39.873223735255159 ], [ -75.204085432376289, 39.871205743205607 ], [ -75.210300298778051, 39.867666980105462 ], [ -75.211461416870335, 39.867005757496599 ], [ -75.216037393377576, 39.871116755930856 ], [ -75.216020392436832, 39.871359755402231 ], [ -75.216013392579413, 39.871469755073164 ], [ -75.215785385666365, 39.875053749410533 ], [ -75.215725384185859, 39.876019747945335 ], [ -75.215721909187252, 39.876067694402217 ], [ -75.21572038338546, 39.876088747665939 ], [ -75.215898383784221, 39.876060747633808 ], [ -75.216044383383377, 39.876025747953932 ], [ -75.216201382532191, 39.875992748281114 ], [ -75.216346382146114, 39.875958748744765 ], [ -75.216368382369154, 39.875953748127031 ], [ -75.216700380912556, 39.875877749028724 ], [ -75.216842380691915, 39.875844749335208 ], [ -75.217011379961349, 39.875808749544788 ], [ -75.217513378023341, 39.875746749563781 ], [ -75.217699378234727, 39.875721750017988 ], [ -75.217856377336858, 39.875702750545003 ], [ -75.218032376842373, 39.875684750968269 ], [ -75.218318376615557, 39.875679751275172 ], [ -75.218822374281501, 39.875673751763507 ], [ -75.218883374694613, 39.875674751506466 ], [ -75.218919373601807, 39.875670751605746 ], [ -75.219239372780592, 39.875592752058886 ], [ -75.21944337309111, 39.875544752828361 ], [ -75.219618372664598, 39.875503752368672 ], [ -75.21964637243741, 39.87549275232336 ], [ -75.21968342861409, 39.875482646036261 ], [ -75.219701372496971, 39.875477752528532 ], [ -75.21973337216032, 39.875474752466438 ], [ -75.219768372114061, 39.875480752957316 ], [ -75.220257407453076, 39.875521396653717 ], [ -75.220863368418307, 39.875571754216494 ], [ -75.221039367830244, 39.875587753739822 ], [ -75.221227366376567, 39.875603754718391 ], [ -75.221273366523434, 39.875607754029879 ], [ -75.222079364001019, 39.875675755302161 ], [ -75.222630347772878, 39.87572584558847 ], [ -75.222695361544012, 39.875731755770346 ], [ -75.222867361093563, 39.875751755677825 ], [ -75.223063360073695, 39.875775756150041 ], [ -75.223150359777449, 39.875785755834791 ], [ -75.223761357857882, 39.875859756650343 ], [ -75.224651354753973, 39.876024757766132 ], [ -75.224855354105642, 39.876061757173602 ], [ -75.225026353204342, 39.876094757486875 ], [ -75.225343980683292, 39.87615429270069 ], [ -75.225949349508625, 39.876267758341911 ], [ -75.226842346482798, 39.876403759258352 ], [ -75.226888346721424, 39.876405759690506 ], [ -75.227117346094488, 39.876437759885413 ], [ -75.228468340678774, 39.876632760864993 ], [ -75.228722340096226, 39.876668760595223 ], [ -75.228903339132316, 39.876693760705237 ], [ -75.229983335195797, 39.876848761770802 ], [ -75.23047333325006, 39.87689076304698 ], [ -75.230642333829749, 39.876902762775956 ], [ -75.230844332805674, 39.876920763074601 ], [ -75.230994332542863, 39.876934762812411 ], [ -75.231053332365875, 39.876939762948396 ], [ -75.231868328517535, 39.877011764254668 ], [ -75.23192732886848, 39.877017764054976 ], [ -75.232308327414017, 39.877057764767208 ], [ -75.232547327139798, 39.877083764986942 ], [ -75.232655326841424, 39.877094764774768 ], [ -75.232812325480609, 39.877112764933273 ], [ -75.232989325396332, 39.877129765347156 ], [ -75.233269324023723, 39.877155765456386 ], [ -75.233954321935826, 39.877178766399005 ], [ -75.234016321547472, 39.877180766585852 ], [ -75.234120321806316, 39.877182766324133 ], [ -75.234300320403221, 39.877137766392359 ], [ -75.23447832036328, 39.877095766768129 ], [ -75.234650320302634, 39.87705476680874 ], [ -75.234682319997717, 39.877046767455447 ], [ -75.235022319052277, 39.876965767269162 ], [ -75.235535317814467, 39.876752768268268 ], [ -75.235551442529712, 39.876742018255555 ], [ -75.235793317288866, 39.87658076879498 ], [ -75.235926317082203, 39.87648976914992 ], [ -75.235964317159727, 39.876462769380559 ], [ -75.23597578302973, 39.876454988582964 ], [ -75.236010986620144, 39.876431100745286 ], [ -75.236048316882872, 39.876405769311525 ], [ -75.236368316274948, 39.876188769994776 ], [ -75.236638316121869, 39.875737770510653 ], [ -75.23671131600581, 39.875615771523165 ], [ -75.236772315613266, 39.875476771505568 ], [ -75.236783316339114, 39.875447771019637 ], [ -75.23682278970854, 39.875359158158538 ], [ -75.23693031580703, 39.875117772323541 ], [ -75.237498314652825, 39.875081772352623 ], [ -75.237538751411492, 39.875037740868102 ], [ -75.237588313755452, 39.874983772381938 ], [ -75.237534313972148, 39.874912772965743 ], [ -75.237498314640646, 39.87486877279558 ], [ -75.237457315308788, 39.874805772725068 ], [ -75.237509408788696, 39.874788888842197 ], [ -75.238008792475497, 39.874627031091698 ], [ -75.238108313406144, 39.874594774201547 ], [ -75.238244312961385, 39.874447774317957 ], [ -75.238323313347323, 39.874363774713373 ], [ -75.238374312917145, 39.874302774523294 ], [ -75.238686312111739, 39.873960775426326 ], [ -75.238756668365056, 39.873932309857807 ], [ -75.238921528426289, 39.873865606747209 ], [ -75.238990311650184, 39.873837776003548 ], [ -75.239169310949364, 39.873610775753406 ], [ -75.239258311506859, 39.873491776642872 ], [ -75.239346311344036, 39.8733737763676 ], [ -75.239402311379607, 39.873300776870607 ], [ -75.239481083836154, 39.873270244609174 ], [ -75.240075633917712, 39.873039791211802 ], [ -75.240096308849445, 39.873031777477969 ], [ -75.240103310022334, 39.872859778000674 ], [ -75.240099310157603, 39.872732778226478 ], [ -75.240098309821448, 39.872630778255704 ], [ -75.240099310468537, 39.87259877796297 ], [ -75.2402895843518, 39.872487398913144 ], [ -75.240468309029254, 39.872382779033828 ], [ -75.240896308315854, 39.872401778809326 ], [ -75.240935308056265, 39.872406779229827 ], [ -75.241086307044895, 39.872439778942521 ], [ -75.24121430624723, 39.872467779791926 ], [ -75.241369305679214, 39.872502779529235 ], [ -75.241417306197519, 39.872512780048936 ], [ -75.241553305620357, 39.872541780082784 ], [ -75.241744305159656, 39.872586780113217 ], [ -75.242013610119443, 39.872696329144503 ], [ -75.242216302845449, 39.872778780020568 ], [ -75.242288303014647, 39.872809780521045 ], [ -75.242566301884409, 39.872956779960603 ], [ -75.242693290124322, 39.87302328976353 ], [ -75.242727301095499, 39.873040780779377 ], [ -75.246732284203176, 39.875069782892588 ], [ -75.246774284012147, 39.875104782280154 ], [ -75.246822282859156, 39.875143782468776 ], [ -75.248096277481309, 39.876209783065072 ], [ -75.248402275304414, 39.876465782827445 ], [ -75.248429276104304, 39.876486783369252 ], [ -75.249642271606547, 39.876312784058015 ], [ -75.250300270890563, 39.87621878454307 ], [ -75.251749328025653, 39.87601100957896 ], [ -75.25225527316573, 39.875938778991376 ], [ -75.252723273152071, 39.87596677799764 ], [ -75.25301527434948, 39.875984776845897 ], [ -75.253215273828431, 39.875997776601039 ], [ -75.253454273968288, 39.876012776181824 ], [ -75.25351327377183, 39.876016775222595 ], [ -75.253663274841102, 39.876024775627563 ], [ -75.253735274768474, 39.87602877481801 ], [ -75.253984274564885, 39.87604377396152 ], [ -75.254289274791347, 39.876062773456376 ], [ -75.254650274817394, 39.876084772741144 ], [ -75.25508227524746, 39.87611077179097 ], [ -75.255433275497538, 39.876131770645003 ], [ -75.256125275895542, 39.876173768244982 ], [ -75.257144276717383, 39.876235765509172 ], [ -75.257408277160053, 39.87625176462376 ], [ -75.257585117709652, 39.876262638443229 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "CLEARVIEW", "LISTNAME": "Clearview", "MAPNAME": "Clearview", "Shape_Leng": 14683.459450099999, "Shape_Area": 7095165.5212599998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.245354337841349, 39.915884169817296 ], [ -75.244965437424099, 39.915417600418927 ], [ -75.244874954012914, 39.915469478282631 ], [ -75.244683563780825, 39.91510711920386 ], [ -75.243873102564024, 39.914094683636755 ], [ -75.24326612155906, 39.913070722111719 ], [ -75.2430782083987, 39.912753710936542 ], [ -75.24235746644014, 39.910493255642706 ], [ -75.242290438997742, 39.910287342429882 ], [ -75.242491972640323, 39.910183293859241 ], [ -75.243071209188685, 39.909590004289292 ], [ -75.244250682105502, 39.90827763618401 ], [ -75.245387767255139, 39.907002203034608 ], [ -75.246567149372041, 39.905689810937538 ], [ -75.247694102461679, 39.904464631460236 ], [ -75.248891166862393, 39.903114731006681 ], [ -75.250449701174375, 39.90396929105971 ], [ -75.250980450725308, 39.904245966743311 ], [ -75.251187139483065, 39.904347395805097 ], [ -75.251286829155603, 39.904404069427812 ], [ -75.252969224687163, 39.905310749321444 ], [ -75.253490225006942, 39.905586748310512 ], [ -75.253453909977097, 39.905624349631836 ], [ -75.252558221664614, 39.90655174970923 ], [ -75.252498221965112, 39.906615749210616 ], [ -75.252478221543683, 39.906634749696714 ], [ -75.252396221792708, 39.906637749509699 ], [ -75.252328221234308, 39.906645750190989 ], [ -75.252154221153745, 39.906666750297198 ], [ -75.251993221305852, 39.906689750671184 ], [ -75.251757220785677, 39.90674575158809 ], [ -75.251631219693891, 39.906815751079414 ], [ -75.251499220110944, 39.906902752052183 ], [ -75.251305219191224, 39.907032752032848 ], [ -75.251057218256463, 39.907179752242605 ], [ -75.250870218404899, 39.90728675316182 ], [ -75.250714217590229, 39.907367752992279 ], [ -75.250444216946093, 39.907540754287865 ], [ -75.250317217076159, 39.907627753939479 ], [ -75.250269216996401, 39.907709754458303 ], [ -75.250222216325739, 39.90780975421643 ], [ -75.250203215701447, 39.907916754262942 ], [ -75.250181215682829, 39.908062754067295 ], [ -75.250186744301502, 39.908145690068089 ], [ -75.25019621539073, 39.908287753945125 ], [ -75.250194215017899, 39.908324753663415 ], [ -75.250191214789879, 39.908449753868865 ], [ -75.250166215275428, 39.908566753861734 ], [ -75.2501182140808, 39.908721753479625 ], [ -75.2500482144508, 39.908882753362214 ], [ -75.250006213480646, 39.909037753126306 ], [ -75.249939214389471, 39.909147753568362 ], [ -75.249899214091201, 39.909269752914099 ], [ -75.249927213349409, 39.909353752951539 ], [ -75.250000213581572, 39.909431753499284 ], [ -75.250043212855317, 39.909460753302085 ], [ -75.250156213540649, 39.909501752435254 ], [ -75.250287213917161, 39.909531752648974 ], [ -75.250474213673542, 39.909533751668789 ], [ -75.250654214259825, 39.909569751663433 ], [ -75.250883214377851, 39.909634750990719 ], [ -75.251105214788367, 39.909709750559422 ], [ -75.251227214513165, 39.909777750106038 ], [ -75.251231726780247, 39.909782915612297 ], [ -75.251292645979902, 39.909852665323022 ], [ -75.251296214040394, 39.909856749784183 ], [ -75.251286214390461, 39.909984749103735 ], [ -75.251266213802936, 39.910032749580239 ], [ -75.251235214439902, 39.910111749497297 ], [ -75.251121213730258, 39.91024974925763 ], [ -75.250999213538293, 39.910377750166717 ], [ -75.25086921290027, 39.910533749649858 ], [ -75.250857127698012, 39.910543914304014 ], [ -75.250718211721747, 39.910660750568574 ], [ -75.250613211375111, 39.910771750549337 ], [ -75.250535211123207, 39.910888750363753 ], [ -75.250510244530716, 39.910917204501139 ], [ -75.250399211487689, 39.91104375093245 ], [ -75.25035121145406, 39.911078750456582 ], [ -75.250192210463368, 39.911197751226283 ], [ -75.249924210343679, 39.91129475131833 ], [ -75.249866036260201, 39.911319589728237 ], [ -75.249746211128837, 39.911370751145952 ], [ -75.2495162110975, 39.911478750418716 ], [ -75.249330211654112, 39.911554749911758 ], [ -75.249159211363533, 39.911641749457573 ], [ -75.24897821210061, 39.911750749053169 ], [ -75.248852212694075, 39.91185574873284 ], [ -75.2487602124598, 39.911984748276382 ], [ -75.248753697652688, 39.91200838238705 ], [ -75.248717211761146, 39.91214074829319 ], [ -75.248683211627224, 39.912303748064375 ], [ -75.24859621150263, 39.912505747672803 ], [ -75.248556212438302, 39.912605748064387 ], [ -75.248508211441859, 39.912723747731768 ], [ -75.248430212129179, 39.912841746913422 ], [ -75.248375211411314, 39.912935747259041 ], [ -75.248293212509765, 39.913013746973142 ], [ -75.248210211726004, 39.913078746891202 ], [ -75.248108080110754, 39.913136359180555 ], [ -75.248054212344883, 39.913166746198726 ], [ -75.247852188119793, 39.913274492409911 ], [ -75.247829212921999, 39.91328674538655 ], [ -75.247598213716543, 39.913389744825302 ], [ -75.24739821367865, 39.913503744982954 ], [ -75.247198213756192, 39.913579744591551 ], [ -75.247189214261624, 39.913589744639303 ], [ -75.247114213978961, 39.913679744382748 ], [ -75.247066214862272, 39.913779743545142 ], [ -75.247061213888387, 39.913908743741061 ], [ -75.247115214316366, 39.9140447434607 ], [ -75.247220213617084, 39.914165744093999 ], [ -75.247321212389068, 39.91428774388659 ], [ -75.247590211884813, 39.914363744548311 ], [ -75.247567211108034, 39.914489744379431 ], [ -75.247581211345718, 39.914564743961492 ], [ -75.247592210909986, 39.914612743807716 ], [ -75.247629210881271, 39.914637743946344 ], [ -75.247704210699609, 39.914723744395666 ], [ -75.247713211087486, 39.91483874425758 ], [ -75.247652210045331, 39.914956743691405 ], [ -75.247553210749203, 39.9150797430935 ], [ -75.247483210422729, 39.915214743233882 ], [ -75.24734521082631, 39.915400742606032 ], [ -75.247185211003995, 39.915633741990298 ], [ -75.247134210908172, 39.915728741861649 ], [ -75.247054210976103, 39.915852741299403 ], [ -75.246985210661251, 39.915931741153692 ], [ -75.246917210427227, 39.91600674167946 ], [ -75.246840210687253, 39.916088740992826 ], [ -75.24677921144, 39.916166740533725 ], [ -75.246750210399938, 39.916233741143898 ], [ -75.246754260101369, 39.916269455675042 ], [ -75.246761210776768, 39.916330740618534 ], [ -75.246785210394648, 39.916449740520086 ], [ -75.246832210169856, 39.916560740841348 ], [ -75.246880210009593, 39.916721740974864 ], [ -75.246928669080361, 39.916847903460898 ], [ -75.246938209329599, 39.916872740354378 ], [ -75.246972208872322, 39.916940740768105 ], [ -75.24698847857205, 39.916958262565295 ], [ -75.246998209380266, 39.916968740907983 ], [ -75.247037208333808, 39.91699274060803 ], [ -75.247100208747852, 39.91702874020838 ], [ -75.247153207790291, 39.917063740275275 ], [ -75.247185207631631, 39.917095741098755 ], [ -75.247198208496386, 39.917136740717069 ], [ -75.247208208329127, 39.917183740294469 ], [ -75.247190208169357, 39.91721274038759 ], [ -75.247170208132445, 39.917237740566165 ], [ -75.247237207789354, 39.917403740443604 ], [ -75.247246284790975, 39.917433950618445 ], [ -75.247301206689585, 39.9176167407592 ], [ -75.247305206873932, 39.917634740690701 ], [ -75.247345206425166, 39.917786740737377 ], [ -75.247355205837877, 39.917994740241312 ], [ -75.247345544065652, 39.91841695464273 ], [ -75.247292128212536, 39.918455061943369 ], [ -75.246830445789811, 39.918784032272505 ], [ -75.246425720406634, 39.917169476666949 ], [ -75.245849840598737, 39.916478616793519 ], [ -75.245354337841349, 39.915884169817296 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "PENROSE", "LISTNAME": "Penrose", "MAPNAME": "Penrose", "Shape_Leng": 11694.213634399999, "Shape_Area": 8079790.7908399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.23035723464038, 39.911061543191991 ], [ -75.231817695605201, 39.909967624197478 ], [ -75.232931552091486, 39.908882898230161 ], [ -75.234050592869892, 39.907657105335176 ], [ -75.235654724164647, 39.906058770319994 ], [ -75.237691661491397, 39.904792574167601 ], [ -75.2399656150277, 39.904197044500393 ], [ -75.241132422991399, 39.907192296518637 ], [ -75.241888011853405, 39.909051026587996 ], [ -75.242290438997742, 39.910287342429847 ], [ -75.242357466440197, 39.910493255642642 ], [ -75.243078208398757, 39.912753710936542 ], [ -75.243266121559117, 39.913070722111719 ], [ -75.243212935421923, 39.9130971601395 ], [ -75.243077829576535, 39.913178970261782 ], [ -75.24079007874677, 39.913431425618782 ], [ -75.239607316769749, 39.913546701323703 ], [ -75.237617277457304, 39.914955133408824 ], [ -75.236208147636887, 39.913754555053551 ], [ -75.233685338682108, 39.914081855094906 ], [ -75.233380496809829, 39.913853145789695 ], [ -75.232769545471399, 39.913267294125276 ], [ -75.23218419761136, 39.912785696893913 ], [ -75.231612249502447, 39.912284371640837 ], [ -75.231049026277077, 39.911786299356734 ], [ -75.230422923613332, 39.911235064606274 ], [ -75.23035723464038, 39.911061543191991 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "PASCHALL", "LISTNAME": "Paschall", "MAPNAME": "Paschall", "Shape_Leng": 22650.029678, "Shape_Area": 19662014.003800001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.225294392302018, 39.92916978299543 ], [ -75.228847359620843, 39.926720224028415 ], [ -75.22999515339832, 39.925928826949516 ], [ -75.234112682897432, 39.922971937418666 ], [ -75.236656119480628, 39.921253338180847 ], [ -75.239690612732161, 39.919121129540883 ], [ -75.23966577971791, 39.91880402805937 ], [ -75.24108113337833, 39.917865398454147 ], [ -75.242479364664959, 39.916909302071645 ], [ -75.243041592272434, 39.916520587371522 ], [ -75.244874954012914, 39.915469478282631 ], [ -75.244965437424099, 39.915417600418927 ], [ -75.245354337841349, 39.915884169817296 ], [ -75.245849840598737, 39.916478616793519 ], [ -75.246425720406634, 39.917169476666949 ], [ -75.246830445789811, 39.918784032272505 ], [ -75.247292128212536, 39.918455061943369 ], [ -75.247345544065652, 39.91841695464273 ], [ -75.247345205686528, 39.918431739732924 ], [ -75.247339204848615, 39.918542739722405 ], [ -75.24737520474514, 39.918689739331079 ], [ -75.24742120423366, 39.918826739053046 ], [ -75.247549203185528, 39.919021739614344 ], [ -75.247599203047727, 39.919077739151867 ], [ -75.247454203778361, 39.919080738840989 ], [ -75.247448203410457, 39.91916073933475 ], [ -75.247482203543669, 39.919243739278052 ], [ -75.247494203350286, 39.919271739120006 ], [ -75.247581203424289, 39.91940073909592 ], [ -75.247620202559588, 39.919518738990163 ], [ -75.247621202561803, 39.91966973902661 ], [ -75.247593201590249, 39.919903738802134 ], [ -75.247588077184545, 39.919933023599299 ], [ -75.247579202233283, 39.919983738604316 ], [ -75.247525201557252, 39.920104737987039 ], [ -75.247485201830571, 39.920207738407527 ], [ -75.247474202124124, 39.920329737612121 ], [ -75.247463201340906, 39.920455738095242 ], [ -75.247460201706119, 39.920521737811093 ], [ -75.247458645475234, 39.920573099992531 ], [ -75.247458201370605, 39.92058773771501 ], [ -75.247466200657314, 39.920719737257912 ], [ -75.247466200382235, 39.920973737518054 ], [ -75.247465502242392, 39.921002522467433 ], [ -75.247457200382513, 39.92134473688656 ], [ -75.247482199884843, 39.921500736883132 ], [ -75.247505199394965, 39.921611736455915 ], [ -75.247631199523894, 39.921564737379519 ], [ -75.247702198420058, 39.921562737023905 ], [ -75.247757198435863, 39.921709737572009 ], [ -75.247688198542164, 39.921793736657875 ], [ -75.247545198567806, 39.921910736692674 ], [ -75.247450198140626, 39.922063736398691 ], [ -75.247336199002007, 39.922167736281146 ], [ -75.247319199130317, 39.922179735823207 ], [ -75.247354198233481, 39.922438735602576 ], [ -75.247242198498654, 39.922522735595045 ], [ -75.247147198237045, 39.922601734859249 ], [ -75.247013198459314, 39.922702734528322 ], [ -75.246718199495902, 39.922937733814337 ], [ -75.246598199261456, 39.923039733338008 ], [ -75.246437199044493, 39.923182732713798 ], [ -75.246339199434686, 39.92328373294125 ], [ -75.2462551991878, 39.923402732465853 ], [ -75.246217199134733, 39.923532732053289 ], [ -75.246188199563264, 39.923684732174699 ], [ -75.24615519915713, 39.923959732094701 ], [ -75.246116198903579, 39.924052731316785 ], [ -75.246085199079175, 39.924160731059075 ], [ -75.246052198969892, 39.924233731338468 ], [ -75.246039198519995, 39.924261731361064 ], [ -75.246026198737496, 39.924292730798257 ], [ -75.245991199292831, 39.924370731151626 ], [ -75.2459411987534, 39.924450731146955 ], [ -75.245926198850952, 39.924475730437351 ], [ -75.245863199309952, 39.924582730343495 ], [ -75.245792198332509, 39.924698730263614 ], [ -75.245746199023287, 39.924783729778667 ], [ -75.245723198408641, 39.924824729808392 ], [ -75.245634198175097, 39.924939730151245 ], [ -75.245578199230962, 39.925011729727366 ], [ -75.245550199100293, 39.925046729841348 ], [ -75.245435199279299, 39.925165729273665 ], [ -75.245261198557714, 39.925416728881849 ], [ -75.245195198691462, 39.925550727813174 ], [ -75.245125198389587, 39.925662728096313 ], [ -75.245048198578132, 39.925768727988839 ], [ -75.245024504770285, 39.925798445845501 ], [ -75.244989198990197, 39.925842727724266 ], [ -75.24486619948344, 39.925896727292816 ], [ -75.244760199421748, 39.925955726551841 ], [ -75.244623199207084, 39.926004726697954 ], [ -75.244517200489099, 39.926062726569207 ], [ -75.244398200704481, 39.926135725775026 ], [ -75.244334200710256, 39.926251725593332 ], [ -75.244299200035087, 39.926354725290487 ], [ -75.244317058842313, 39.926433179315048 ], [ -75.244327200003355, 39.926477725233653 ], [ -75.24441019930687, 39.926573725966854 ], [ -75.244497198791152, 39.926643725818188 ], [ -75.244505199290245, 39.926650725652522 ], [ -75.244574198668829, 39.926755725789874 ], [ -75.244594198742419, 39.926859725525077 ], [ -75.244577198099847, 39.927004725517889 ], [ -75.244577197381901, 39.927178725084218 ], [ -75.244548197153321, 39.927276724819421 ], [ -75.24449619810278, 39.927407724495076 ], [ -75.244479197545473, 39.927435725256672 ], [ -75.244424197644221, 39.92752872486394 ], [ -75.244339197525207, 39.92765772394295 ], [ -75.244267197063294, 39.927797724345623 ], [ -75.244254819656533, 39.927813991574681 ], [ -75.244197197664221, 39.927889723934513 ], [ -75.24411819789043, 39.928010723441226 ], [ -75.244053197257642, 39.928150723530912 ], [ -75.243999197229172, 39.928365722932014 ], [ -75.243983197514183, 39.92847772247832 ], [ -75.243963196713182, 39.928646722344716 ], [ -75.24396519689347, 39.928806721903818 ], [ -75.24396819631896, 39.929178721531891 ], [ -75.24396419516448, 39.929429721684699 ], [ -75.24396519552586, 39.929469721471136 ], [ -75.243965195893196, 39.929500721916739 ], [ -75.243964195667118, 39.929533721420007 ], [ -75.24396519463285, 39.929605721714651 ], [ -75.243971109367337, 39.929654348685453 ], [ -75.243974195037737, 39.929679721387991 ], [ -75.243979194970819, 39.929714721581661 ], [ -75.244007194237327, 39.929794721714231 ], [ -75.2440971946357, 39.929858721893204 ], [ -75.244187194106772, 39.929902721754971 ], [ -75.244276193626234, 39.929965721437469 ], [ -75.244353192836698, 39.930042721529752 ], [ -75.24440319294024, 39.930161721509847 ], [ -75.244425192084975, 39.930288721311172 ], [ -75.244412381068813, 39.930319913934696 ], [ -75.244379192498556, 39.930400721307777 ], [ -75.244335603243854, 39.930436162603385 ], [ -75.242893611944382, 39.930532078630428 ], [ -75.242112610096882, 39.93037032151647 ], [ -75.242099539434506, 39.930406206000889 ], [ -75.241982843552293, 39.93038556897509 ], [ -75.242007650180653, 39.930349941188766 ], [ -75.239417206851613, 39.929886346070596 ], [ -75.239230762951564, 39.929846095254739 ], [ -75.239116739249155, 39.929753172116776 ], [ -75.238738792648377, 39.929491704646061 ], [ -75.235553820172314, 39.928919670211506 ], [ -75.235491111447487, 39.928961247299959 ], [ -75.233858338046005, 39.930043789694658 ], [ -75.232332712600538, 39.931137740912675 ], [ -75.231338028645339, 39.931835390196184 ], [ -75.230311308552771, 39.93255548473855 ], [ -75.229808704496264, 39.932907979161357 ], [ -75.229358908290763, 39.933223432745152 ], [ -75.228659453936118, 39.933711586586867 ], [ -75.227263500599179, 39.934672404912625 ], [ -75.227238853277697, 39.934653953582377 ], [ -75.225874520649, 39.933496326156927 ], [ -75.224662754729977, 39.932427146117355 ], [ -75.223294937990687, 39.931312197784564 ], [ -75.222800121387124, 39.930898408760342 ], [ -75.222607874674921, 39.930738639574848 ], [ -75.223573788150787, 39.930349049330381 ], [ -75.225294392302018, 39.92916978299543 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "BARTRAM_VILLAGE", "LISTNAME": "Bartram Village", "MAPNAME": "Bartram Village", "Shape_Leng": 20667.980476000001, "Shape_Area": 14839895.3214 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.204517065956153, 39.937182658065346 ], [ -75.204504499364518, 39.93711214594915 ], [ -75.204522461895635, 39.936632619136383 ], [ -75.204522601999898, 39.936222929900062 ], [ -75.20467029565782, 39.935933570512027 ], [ -75.204684751159448, 39.935547610690321 ], [ -75.204802932870678, 39.935234184469536 ], [ -75.205126944866223, 39.93470292079347 ], [ -75.206333151468655, 39.933758122731589 ], [ -75.206467221120718, 39.933309659203687 ], [ -75.207454736874269, 39.933504594548701 ], [ -75.209033532531919, 39.93178638104888 ], [ -75.211550918984003, 39.928416815451172 ], [ -75.212599622337777, 39.925343690605601 ], [ -75.213188032904853, 39.925640507701935 ], [ -75.214919147003855, 39.926217895644932 ], [ -75.216736318392165, 39.926945630297062 ], [ -75.217654596301912, 39.927302325893486 ], [ -75.219389008084335, 39.927993674962664 ], [ -75.220904054632456, 39.925734903678823 ], [ -75.222366594713463, 39.926417344813402 ], [ -75.223222985510006, 39.927179294703677 ], [ -75.224640775753258, 39.928526390028466 ], [ -75.225294392302018, 39.92916978299543 ], [ -75.223573788150787, 39.930349049330381 ], [ -75.222607874674921, 39.930738639574848 ], [ -75.222581927641556, 39.930749104903754 ], [ -75.221064258836833, 39.931852432668812 ], [ -75.215863839912842, 39.933088904779702 ], [ -75.215857805342196, 39.933070293716952 ], [ -75.213884462224954, 39.935910967341243 ], [ -75.214999003673725, 39.935120699981191 ], [ -75.21583144886111, 39.935862332329783 ], [ -75.214296589450782, 39.936923440198036 ], [ -75.212123144623988, 39.938428786117619 ], [ -75.209569867156375, 39.940180339469656 ], [ -75.208119227310789, 39.94128676524214 ], [ -75.207961203203737, 39.941289820182881 ], [ -75.207104986619839, 39.941306366057354 ], [ -75.206009967331127, 39.941327518717145 ], [ -75.205250525187566, 39.941316740936351 ], [ -75.205250528434206, 39.940516746144652 ], [ -75.204650497161595, 39.940416746656339 ], [ -75.204554313863881, 39.938213014018473 ], [ -75.204517065956153, 39.937182658065346 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "KINGSESSING", "LISTNAME": "Kingsessing", "MAPNAME": "Kingsessing", "Shape_Leng": 30544.776444899999, "Shape_Area": 28773636.549 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.215244284128858, 39.943081767398681 ], [ -75.216505304401068, 39.942200286932191 ], [ -75.220272458573319, 39.93956890435021 ], [ -75.223922909814078, 39.937000684619747 ], [ -75.227238853277697, 39.934653953582377 ], [ -75.227263500599179, 39.934672404912625 ], [ -75.228659453936118, 39.933711586586867 ], [ -75.229358908290763, 39.933223432745152 ], [ -75.229808704496264, 39.932907979161357 ], [ -75.230311308552771, 39.93255548473855 ], [ -75.231338028645339, 39.931835390196184 ], [ -75.232332712600538, 39.931137740912675 ], [ -75.233858338046005, 39.930043789694658 ], [ -75.235491111447487, 39.928961247299959 ], [ -75.235553820172314, 39.928919670211506 ], [ -75.238738792648377, 39.929491704646061 ], [ -75.239116739249155, 39.929753172116776 ], [ -75.239230762951564, 39.929846095254739 ], [ -75.239417206851613, 39.929886346070596 ], [ -75.242007650180653, 39.930349941188766 ], [ -75.241982843552293, 39.93038556897509 ], [ -75.242099539434506, 39.930406206000889 ], [ -75.242112610096882, 39.93037032151647 ], [ -75.242893611944382, 39.930532078630428 ], [ -75.244335603243854, 39.930436162603385 ], [ -75.244272192460258, 39.930487721070392 ], [ -75.244129192911117, 39.930564720497578 ], [ -75.243947193471257, 39.930654720183966 ], [ -75.243811194093595, 39.930731719947829 ], [ -75.243692193335932, 39.930822719502757 ], [ -75.243641194064594, 39.930898719832705 ], [ -75.243633194151016, 39.930909719081853 ], [ -75.243632580170996, 39.930913610562271 ], [ -75.243606193111205, 39.931080719277318 ], [ -75.243562194005406, 39.931198719169046 ], [ -75.243524193026488, 39.931341718442582 ], [ -75.243486192631607, 39.931469718900942 ], [ -75.243449193620336, 39.931578718588248 ], [ -75.243436192455761, 39.931687718455578 ], [ -75.243423192676715, 39.931780717630396 ], [ -75.243421192878884, 39.931838717642016 ], [ -75.243367192434192, 39.931909717533728 ], [ -75.243304193094446, 39.931976717599255 ], [ -75.243211192964154, 39.932033717607325 ], [ -75.243131193050289, 39.932086717527753 ], [ -75.243077193516726, 39.93217671653909 ], [ -75.242967192651903, 39.932300716398068 ], [ -75.242879192586386, 39.932442716071961 ], [ -75.242761193280572, 39.932613715939631 ], [ -75.242667193020068, 39.932780715659902 ], [ -75.242575193679883, 39.93288071531115 ], [ -75.24250119301972, 39.932965715008045 ], [ -75.242400193480094, 39.933089714780913 ], [ -75.242340193144258, 39.933188713817735 ], [ -75.242294193736754, 39.933289713770982 ], [ -75.242227192712463, 39.93337971371686 ], [ -75.242184193841908, 39.933427713488783 ], [ -75.242073193561339, 39.933492713531379 ], [ -75.241950193357212, 39.93353671287047 ], [ -75.241907193851759, 39.933545713062749 ], [ -75.241845194608317, 39.933471712685687 ], [ -75.24177219410636, 39.933483712864863 ], [ -75.241734194541522, 39.933580712392725 ], [ -75.241676194445361, 39.933583712639965 ], [ -75.241519194674012, 39.933589711776492 ], [ -75.241361194698712, 39.933609711870254 ], [ -75.241156196155288, 39.933630711652548 ], [ -75.240942196735588, 39.933650710446599 ], [ -75.240734197158687, 39.933647710740516 ], [ -75.240691196594184, 39.93363971052252 ], [ -75.240576760165354, 39.933619550487634 ], [ -75.240498197882062, 39.933605710208425 ], [ -75.240445198092942, 39.933589710098722 ], [ -75.240294197799471, 39.933542709093651 ], [ -75.240258010286254, 39.933531281777121 ], [ -75.240237199019816, 39.933524709457728 ], [ -75.240159199222234, 39.93349370922477 ], [ -75.239997199163867, 39.933433709005378 ], [ -75.239918199431827, 39.933403708443571 ], [ -75.239645200185379, 39.933316707914734 ], [ -75.239466201389874, 39.933222707925808 ], [ -75.239342201432834, 39.93312670787796 ], [ -75.239182202164585, 39.933002707666958 ], [ -75.238945203010019, 39.932821707337787 ], [ -75.238758203645673, 39.932704707033466 ], [ -75.238611204220845, 39.932638706517707 ], [ -75.238442205759313, 39.93259870689009 ], [ -75.238266206269813, 39.932553706315389 ], [ -75.238102206044786, 39.932509706225467 ], [ -75.237948207189532, 39.932473705973969 ], [ -75.237732207843067, 39.932498704983608 ], [ -75.237615207792146, 39.932527705264363 ], [ -75.237506208448679, 39.932583705116109 ], [ -75.237405208527662, 39.932649704582566 ], [ -75.237311208116893, 39.932751704282232 ], [ -75.237205207942196, 39.932861703978276 ], [ -75.237103208494972, 39.932997702940369 ], [ -75.236985207994124, 39.933169702668458 ], [ -75.236911208194883, 39.933306702503209 ], [ -75.236850208192266, 39.933437701862381 ], [ -75.236830207528769, 39.933642701891195 ], [ -75.23682920767078, 39.933666702282189 ], [ -75.236831207508502, 39.933769701800976 ], [ -75.236831207043181, 39.933810701525601 ], [ -75.236837206675489, 39.933976701513409 ], [ -75.236828207651314, 39.934038701715167 ], [ -75.236820206516612, 39.934104701674777 ], [ -75.236761206384998, 39.934256701053208 ], [ -75.236711206375475, 39.934418700475071 ], [ -75.236696207217335, 39.934469700474857 ], [ -75.236656206732462, 39.934621700860937 ], [ -75.236588206630145, 39.934803699730715 ], [ -75.236490205895507, 39.935154699101602 ], [ -75.236402206167128, 39.935319699247366 ], [ -75.236372060341878, 39.935334590534893 ], [ -75.236236206087284, 39.935401698254758 ], [ -75.236058206739941, 39.935514698482891 ], [ -75.235887207181591, 39.935617697701083 ], [ -75.235665207325042, 39.93571069738357 ], [ -75.235621207729253, 39.935733696413905 ], [ -75.235456208064861, 39.935824696478591 ], [ -75.23526120735842, 39.935961695527645 ], [ -75.234977208557808, 39.936223695286913 ], [ -75.234935353126119, 39.936302437869571 ], [ -75.234918207557556, 39.936334694960458 ], [ -75.234919208217079, 39.936452694033555 ], [ -75.2349132081807, 39.936593694228307 ], [ -75.234843207279525, 39.936681694403205 ], [ -75.234771207506569, 39.936754693286986 ], [ -75.234740207944071, 39.936885693732577 ], [ -75.234785207290031, 39.937042693315483 ], [ -75.234778206792384, 39.937187693605516 ], [ -75.234798206512721, 39.937338692948146 ], [ -75.234866206286426, 39.937457692939716 ], [ -75.234917205310538, 39.937552693258212 ], [ -75.234965205401096, 39.937751692647808 ], [ -75.234978862103588, 39.938017996362539 ], [ -75.234979205359608, 39.938024692873547 ], [ -75.235000204218167, 39.938128692975305 ], [ -75.235069204650046, 39.938205692383661 ], [ -75.23515920352402, 39.938272692579744 ], [ -75.235291202889201, 39.938322692910759 ], [ -75.235486203134187, 39.938360693802061 ], [ -75.235641443856338, 39.938378832388373 ], [ -75.235777202221058, 39.938394693900001 ], [ -75.23594220167702, 39.938412694634444 ], [ -75.236142200518955, 39.938430694688513 ], [ -75.236165268598029, 39.938433907835218 ], [ -75.236343200182958, 39.938458694838381 ], [ -75.236496199591159, 39.938462695188576 ], [ -75.236680199203462, 39.938447696119091 ], [ -75.236876198827261, 39.938433696738016 ], [ -75.237142198401173, 39.938383697257635 ], [ -75.237445197438177, 39.93832469777734 ], [ -75.237513022289647, 39.938305987960277 ], [ -75.237619197531131, 39.938276698177738 ], [ -75.237767196224311, 39.938251698724123 ], [ -75.23796219638001, 39.938227698906296 ], [ -75.238038804837601, 39.938229172431697 ], [ -75.238170195274819, 39.938231699835043 ], [ -75.238324194676849, 39.938225699708759 ], [ -75.238496194599108, 39.938205700216216 ], [ -75.238734194019614, 39.938182701134032 ], [ -75.238869194096566, 39.938157701243675 ], [ -75.239004193942947, 39.938141701214469 ], [ -75.239181193155218, 39.938150701418131 ], [ -75.239334192759713, 39.938158702012949 ], [ -75.239426192254498, 39.938156702162622 ], [ -75.239471753221835, 39.938119483937314 ], [ -75.239568192531934, 39.938040703018501 ], [ -75.239582192112522, 39.938044702648696 ], [ -75.239660191976924, 39.938070702658074 ], [ -75.239759191296073, 39.938110703297873 ], [ -75.2398321910607, 39.938145703682366 ], [ -75.23985519085312, 39.93815970308296 ], [ -75.239924191288907, 39.938167703203781 ], [ -75.240040191056053, 39.9382017038672 ], [ -75.240143190384515, 39.938239704111936 ], [ -75.24020818976625, 39.938284704071791 ], [ -75.24025619011114, 39.938337704005463 ], [ -75.240407188515405, 39.938458704252561 ], [ -75.240589188161536, 39.938636704619981 ], [ -75.240709187747896, 39.938728704326472 ], [ -75.240761187520917, 39.938795704675584 ], [ -75.240760302326407, 39.938817839822143 ], [ -75.240758187684122, 39.938870704362081 ], [ -75.240736186882458, 39.938968704210616 ], [ -75.240695187491355, 39.939076703837245 ], [ -75.24062418700349, 39.9391927037396 ], [ -75.240541186715177, 39.9392847034662 ], [ -75.240535271459251, 39.939289226757438 ], [ -75.240503581264917, 39.939313460185517 ], [ -75.240422187548447, 39.939375702753139 ], [ -75.240340187736649, 39.93946370310568 ], [ -75.240238187742307, 39.93956970273544 ], [ -75.240141187423617, 39.939708702451313 ], [ -75.240014187470649, 39.9398417017292 ], [ -75.239938187398337, 39.939978701191663 ], [ -75.239901187833212, 39.940036701006051 ], [ -75.239877187337456, 39.9400737011646 ], [ -75.239834187728704, 39.940122701159041 ], [ -75.239794187813715, 39.940166700511483 ], [ -75.239634187363905, 39.940303700086751 ], [ -75.239600093943736, 39.94034436164371 ], [ -75.239525188354904, 39.94043369975202 ], [ -75.239480985942478, 39.940500765238035 ], [ -75.239409188280263, 39.940609699439179 ], [ -75.23939618802406, 39.940745699085461 ], [ -75.239429186722219, 39.940891699416923 ], [ -75.239459186815211, 39.941028698944322 ], [ -75.23949218615715, 39.941161698834321 ], [ -75.239559185765685, 39.941299699265016 ], [ -75.239629186177481, 39.941422698927553 ], [ -75.239733185263347, 39.941594699005869 ], [ -75.239843185170542, 39.941728699389806 ], [ -75.239983183567517, 39.941891699645296 ], [ -75.240072182966955, 39.941996699417459 ], [ -75.240086524157036, 39.942014100606961 ], [ -75.240147182822142, 39.942087699452799 ], [ -75.240249182796234, 39.942141699964857 ], [ -75.240365182098728, 39.942172699836881 ], [ -75.240517181923593, 39.942189700229925 ], [ -75.240563231340431, 39.942195669600132 ], [ -75.24069634236713, 39.942212924989136 ], [ -75.2407871807671, 39.9422247008401 ], [ -75.240951180218005, 39.942246701510513 ], [ -75.241177179992363, 39.942265701937522 ], [ -75.241398179812933, 39.942274702354432 ], [ -75.241444179867145, 39.942275702214943 ], [ -75.24157817904586, 39.942252702530126 ], [ -75.241821178774543, 39.942235703136596 ], [ -75.24202717806601, 39.94223170362649 ], [ -75.24228117764406, 39.942232704168475 ], [ -75.242597175635751, 39.942248705161063 ], [ -75.242951175210464, 39.942254706068169 ], [ -75.243024174992257, 39.942212705497546 ], [ -75.243111174695528, 39.942233706442671 ], [ -75.243202174374844, 39.942277706080915 ], [ -75.243339173570703, 39.942327706139743 ], [ -75.243362173460667, 39.942356706313156 ], [ -75.2435401737891, 39.942307707453729 ], [ -75.243422174160074, 39.942406706399289 ], [ -75.24352917374641, 39.942443706965193 ], [ -75.243758953761954, 39.942469483769884 ], [ -75.243841172456257, 39.942478707320319 ], [ -75.244066172185811, 39.942502707705863 ], [ -75.244408170402181, 39.942552708486943 ], [ -75.244657170049081, 39.942590709063687 ], [ -75.245010169397403, 39.942598709859674 ], [ -75.245224168511584, 39.942617710448353 ], [ -75.245406167851144, 39.94261171117509 ], [ -75.245466985921979, 39.942611313924559 ], [ -75.245559167842345, 39.942610711358242 ], [ -75.245738166474894, 39.94260571190587 ], [ -75.245883166869049, 39.942598712072751 ], [ -75.246049165812678, 39.942607712615903 ], [ -75.24618816638106, 39.942614712553677 ], [ -75.246346164846969, 39.942646713301315 ], [ -75.246467164887605, 39.942668713379987 ], [ -75.246564164170366, 39.942703713317506 ], [ -75.246659164011575, 39.942766713781282 ], [ -75.246741163851894, 39.942857713432304 ], [ -75.246820164019852, 39.942971713824768 ], [ -75.246870163051881, 39.943132713898962 ], [ -75.246962162238731, 39.943266714278394 ], [ -75.246976162427657, 39.943293713489503 ], [ -75.246981983966435, 39.943305492158302 ], [ -75.246634643787644, 39.943489796155198 ], [ -75.245854230414579, 39.943768331192707 ], [ -75.245197712590056, 39.944002641516121 ], [ -75.244417623150767, 39.944281046155616 ], [ -75.243362783721096, 39.94466769954969 ], [ -75.241742088157352, 39.945232553220357 ], [ -75.240103322843524, 39.94586252284094 ], [ -75.239332280365744, 39.946035500751179 ], [ -75.238721354162465, 39.946146113286417 ], [ -75.237941333590655, 39.9462961533401 ], [ -75.237212059384291, 39.946451046288004 ], [ -75.236136698777159, 39.946736237811976 ], [ -75.235078799043109, 39.946995999633877 ], [ -75.234389299592038, 39.947186554283213 ], [ -75.233668925981931, 39.947322635430268 ], [ -75.23125630605918, 39.947922396006618 ], [ -75.229544173261786, 39.94785139997191 ], [ -75.229430607134148, 39.947846689643562 ], [ -75.228386482503623, 39.947803379322174 ], [ -75.22761617243728, 39.947797226247246 ], [ -75.227416930410499, 39.947814680910639 ], [ -75.227379535451036, 39.947772342340045 ], [ -75.225439096483683, 39.946066782332437 ], [ -75.224728742143952, 39.945466332168678 ], [ -75.221956240220507, 39.944862213720938 ], [ -75.219091612846924, 39.944182891780287 ], [ -75.219065116821582, 39.944190280918811 ], [ -75.217585648829072, 39.943868626664432 ], [ -75.217081088092556, 39.94376312919379 ], [ -75.215735899906164, 39.94345534893538 ], [ -75.215244284128858, 39.943081767398681 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "COBBS_CREEK", "LISTNAME": "Cobbs Creek", "MAPNAME": "Cobbs Creek", "Shape_Leng": 25355.994460400001, "Shape_Area": 37552297.373499997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.225994177243606, 39.954588482771548 ], [ -75.226537187911021, 39.952003339771252 ], [ -75.227416930410499, 39.947814680910639 ], [ -75.22761617243728, 39.947797226247246 ], [ -75.228386482503623, 39.947803379322174 ], [ -75.229430607134148, 39.947846689643562 ], [ -75.229544173261786, 39.94785139997191 ], [ -75.23125630605918, 39.947922396006618 ], [ -75.233668925981931, 39.947322635430268 ], [ -75.234389299592038, 39.947186554283213 ], [ -75.235078799043109, 39.946995999633877 ], [ -75.236136698777159, 39.946736237811976 ], [ -75.237212059384291, 39.946451046288004 ], [ -75.237941333590655, 39.9462961533401 ], [ -75.238721354162465, 39.946146113286417 ], [ -75.239332280365744, 39.946035500751179 ], [ -75.240103322843524, 39.94586252284094 ], [ -75.241742088157352, 39.945232553220357 ], [ -75.243362783721096, 39.94466769954969 ], [ -75.244417623150767, 39.944281046155616 ], [ -75.245197712590056, 39.944002641516121 ], [ -75.245854230414579, 39.943768331192707 ], [ -75.246634643787644, 39.943489796155198 ], [ -75.246981983966435, 39.943305492158302 ], [ -75.247019161674032, 39.943380713685364 ], [ -75.247026162296521, 39.943415714100112 ], [ -75.247039162541284, 39.94347971410523 ], [ -75.247046162126466, 39.94353171349492 ], [ -75.247049162138765, 39.943559714195558 ], [ -75.247074161522505, 39.943617714172163 ], [ -75.247104161245773, 39.943682714045579 ], [ -75.247189160364996, 39.943868713518619 ], [ -75.247206161289952, 39.943905713408455 ], [ -75.247219475868945, 39.94392072795717 ], [ -75.247300160299019, 39.944011713774394 ], [ -75.247375160022443, 39.944139714335293 ], [ -75.24739515981291, 39.944209713554656 ], [ -75.247419159949686, 39.944291713862015 ], [ -75.247464159075889, 39.944351714258389 ], [ -75.247506158520778, 39.944406713555487 ], [ -75.247633158692381, 39.944524714091543 ], [ -75.247645158763788, 39.944512714326756 ], [ -75.247765157450416, 39.944638714113154 ], [ -75.24790515765045, 39.944778714533911 ], [ -75.248098156476914, 39.944924714629558 ], [ -75.248174156675077, 39.945011715229832 ], [ -75.248220155976014, 39.945101714886938 ], [ -75.248238156129489, 39.945229714843222 ], [ -75.248325155446594, 39.945343714677726 ], [ -75.248419155014801, 39.945455714657108 ], [ -75.248468154511897, 39.945486715194633 ], [ -75.248505154043414, 39.945511715577261 ], [ -75.248567154779025, 39.945552715014458 ], [ -75.248711153987784, 39.945669715511421 ], [ -75.248900153365369, 39.945829715734888 ], [ -75.249082151655998, 39.945988716036972 ], [ -75.249247151846404, 39.946153716314981 ], [ -75.249429150099843, 39.946313717030598 ], [ -75.249495150490617, 39.946357716942828 ], [ -75.249556150585974, 39.946391716731874 ], [ -75.249616149969128, 39.94641171670694 ], [ -75.249712149861878, 39.946452716972139 ], [ -75.249812148967038, 39.946534717400745 ], [ -75.24991914883546, 39.946627717359867 ], [ -75.249968148087149, 39.946708717673218 ], [ -75.249997764025309, 39.946754447867072 ], [ -75.250036148574978, 39.946813717163103 ], [ -75.250077402401715, 39.946895194406885 ], [ -75.250116148524711, 39.946971717403549 ], [ -75.250154148135181, 39.947113717095057 ], [ -75.250196147534339, 39.947230716756032 ], [ -75.250203147356956, 39.947245716700571 ], [ -75.250215148331165, 39.947318716941474 ], [ -75.250228147571008, 39.947387716011413 ], [ -75.250233147494541, 39.947410716416165 ], [ -75.250269147890876, 39.947576716318359 ], [ -75.250306146779309, 39.947719715861197 ], [ -75.250336147076325, 39.947847715481394 ], [ -75.250363147480655, 39.947979715896032 ], [ -75.250413147027658, 39.948093715578928 ], [ -75.25047114672428, 39.948179714679078 ], [ -75.250518042263877, 39.948220960207664 ], [ -75.250554147210508, 39.94825271475333 ], [ -75.250719147148516, 39.948378714349595 ], [ -75.250656147332421, 39.948446714490238 ], [ -75.250990147252708, 39.948738713193976 ], [ -75.251123146921074, 39.948867712768411 ], [ -75.251249147219539, 39.948973712427509 ], [ -75.251374147415703, 39.949066712300947 ], [ -75.251440146942528, 39.949140711823055 ], [ -75.251494147879839, 39.949252711427562 ], [ -75.251510147448585, 39.949456711485624 ], [ -75.2514661469054, 39.949656710889876 ], [ -75.251366145736355, 39.949857711587363 ], [ -75.251299440731344, 39.949949600430578 ], [ -75.251268145029528, 39.949992711424244 ], [ -75.25120714460553, 39.950150711157931 ], [ -75.251163144897561, 39.950290711774606 ], [ -75.251125144554351, 39.950440711592648 ], [ -75.251126392602941, 39.950506472292851 ], [ -75.25112814424007, 39.950598711439248 ], [ -75.251125869947657, 39.950628273835072 ], [ -75.251120143584146, 39.950702711424462 ], [ -75.251155143582466, 39.950781711208471 ], [ -75.25125414348679, 39.950969710117903 ], [ -75.251266831067284, 39.95098436084151 ], [ -75.251338143392957, 39.951066710238045 ], [ -75.251416143520245, 39.951149709790094 ], [ -75.251482144110696, 39.951191709712056 ], [ -75.251532143548488, 39.951219709337323 ], [ -75.251578144240241, 39.951283709200155 ], [ -75.251604144326279, 39.951385708817803 ], [ -75.251607144114701, 39.951467709244604 ], [ -75.25160714421601, 39.951501708993753 ], [ -75.251624143659171, 39.951626708579951 ], [ -75.251644143883809, 39.951748709241599 ], [ -75.251645143120399, 39.95184770832067 ], [ -75.251641142639983, 39.951955708431733 ], [ -75.251610143406978, 39.952046708183339 ], [ -75.251575142256314, 39.95212870819001 ], [ -75.251509142271061, 39.952241708318326 ], [ -75.251408141578352, 39.952378708973889 ], [ -75.251279141636346, 39.952542708783206 ], [ -75.251184140889279, 39.952665708809405 ], [ -75.251150140239972, 39.952751709264966 ], [ -75.251150140122604, 39.952850709119986 ], [ -75.251177140320863, 39.952944709102212 ], [ -75.251204140015915, 39.953032708473515 ], [ -75.251180140223028, 39.95309070865553 ], [ -75.251147140114526, 39.953162708801521 ], [ -75.251133332514272, 39.953181588341216 ], [ -75.251098139790514, 39.95322970863824 ], [ -75.251045139001462, 39.95329670871844 ], [ -75.250919138644974, 39.953392709132494 ], [ -75.250814138470943, 39.953476708874248 ], [ -75.250787138898986, 39.953498709460852 ], [ -75.250646137452904, 39.953615709251594 ], [ -75.250485137607029, 39.95373870987541 ], [ -75.250350136313585, 39.953862710089282 ], [ -75.25013413529085, 39.954067710257853 ], [ -75.250045135374307, 39.954152710276503 ], [ -75.250001135779499, 39.954233710109712 ], [ -75.249951134707501, 39.954331710345741 ], [ -75.249885134885247, 39.954379710081767 ], [ -75.249835135255992, 39.954432709435665 ], [ -75.249797135371949, 39.954497709321963 ], [ -75.249765135573071, 39.954571709326203 ], [ -75.249754286627123, 39.954607873758 ], [ -75.249744135679407, 39.954641709026731 ], [ -75.249758134741782, 39.954707708956946 ], [ -75.249764135025472, 39.954762709142088 ], [ -75.249748134326879, 39.95482770919552 ], [ -75.249692134625448, 39.954976708858972 ], [ -75.249611134102949, 39.955181708781154 ], [ -75.249594134078208, 39.955240708063513 ], [ -75.249554135144251, 39.955291707968875 ], [ -75.24949213443675, 39.955353707767287 ], [ -75.249455327071217, 39.955368533079849 ], [ -75.249420134683277, 39.95538270793304 ], [ -75.249355135033383, 39.955406707893964 ], [ -75.24927813530276, 39.955416707009505 ], [ -75.24923213501306, 39.955430707453687 ], [ -75.249197135507643, 39.955466707528842 ], [ -75.249161135319383, 39.955515706889322 ], [ -75.249141135680944, 39.955571707092943 ], [ -75.24912013478216, 39.95565770646111 ], [ -75.249132134972143, 39.955757706813415 ], [ -75.249172134717583, 39.955851707032068 ], [ -75.249215134548777, 39.955935706776089 ], [ -75.249241082179836, 39.955998557915834 ], [ -75.249260134177518, 39.956044706627672 ], [ -75.249272134387155, 39.956124706777551 ], [ -75.249232134174576, 39.956217706218524 ], [ -75.249137212935437, 39.956303997837047 ], [ -75.24911113355698, 39.956327706444775 ], [ -75.249043133715716, 39.956373706092307 ], [ -75.248985134533228, 39.956428705698066 ], [ -75.248954134373093, 39.956517705367965 ], [ -75.248924133722198, 39.956629705681273 ], [ -75.248944133758712, 39.95674770566918 ], [ -75.248960695226089, 39.956792145009146 ], [ -75.249000536295611, 39.956899053009174 ], [ -75.249004133526441, 39.956908705361286 ], [ -75.249062133353206, 39.956959705458551 ], [ -75.249191132588322, 39.957013705796413 ], [ -75.249258946490514, 39.957044530335828 ], [ -75.249312131574499, 39.957068705571231 ], [ -75.24939813234765, 39.957121706131758 ], [ -75.249437132055434, 39.957149705820747 ], [ -75.249497131355284, 39.957190705935574 ], [ -75.249530131725876, 39.957214705964596 ], [ -75.249625130705468, 39.957310706728343 ], [ -75.249683130205796, 39.95735470669532 ], [ -75.249776130367934, 39.957426706431583 ], [ -75.250035129646335, 39.957655707349453 ], [ -75.250175129517572, 39.95779270690327 ], [ -75.250240129368592, 39.957873706581076 ], [ -75.250357129496862, 39.958015706253718 ], [ -75.250460129258968, 39.958120705290696 ], [ -75.250485354970067, 39.958150090997343 ], [ -75.250557129647447, 39.958233704973821 ], [ -75.250664129268301, 39.958329704462159 ], [ -75.250733129515979, 39.958427704355515 ], [ -75.250791130040511, 39.958530704770055 ], [ -75.250837129337455, 39.958639703829789 ], [ -75.25087312991586, 39.958729703958063 ], [ -75.250879129783186, 39.958809703776012 ], [ -75.250889129632441, 39.958943704138861 ], [ -75.250881129054434, 39.959025703750648 ], [ -75.250848128940618, 39.959100704165216 ], [ -75.250750128115882, 39.959156704153479 ], [ -75.250603128313628, 39.959240704467014 ], [ -75.250452127582165, 39.959319704345475 ], [ -75.25028912665465, 39.959398704790438 ], [ -75.250078126524727, 39.959483704987498 ], [ -75.249824126089578, 39.959574704596122 ], [ -75.249650126601452, 39.959640704701485 ], [ -75.24963270767627, 39.959648195183235 ], [ -75.249550126634546, 39.959683704292701 ], [ -75.249441126621264, 39.959753704004427 ], [ -75.249316127641492, 39.959840703422344 ], [ -75.249211127540349, 39.959922703011578 ], [ -75.249120127681351, 39.959991702802483 ], [ -75.248970127778037, 39.960072702227059 ], [ -75.248835128506983, 39.960130701885419 ], [ -75.24868712880243, 39.960200701125196 ], [ -75.248544128237839, 39.960270701070748 ], [ -75.248457128270374, 39.960334700587048 ], [ -75.248381128639068, 39.96042670034047 ], [ -75.248333128866392, 39.960517699682867 ], [ -75.248280129071617, 39.960622699478506 ], [ -75.248196127965642, 39.96072669970976 ], [ -75.248056128638524, 39.960887698798182 ], [ -75.247973128890891, 39.96099869888991 ], [ -75.247920129036757, 39.961086698646895 ], [ -75.247890128548121, 39.961182698066921 ], [ -75.24787012799726, 39.961342697611428 ], [ -75.247870128408167, 39.961431698364919 ], [ -75.247865127955194, 39.961494698279388 ], [ -75.247839128098633, 39.961614697237032 ], [ -75.247821128192385, 39.961691697918134 ], [ -75.247805128041222, 39.9617666969664 ], [ -75.247772127289579, 39.961838697010513 ], [ -75.247739127963214, 39.96190569748093 ], [ -75.247705127823053, 39.961978696531865 ], [ -75.247700127926308, 39.962057697145518 ], [ -75.247724127404894, 39.96216869648589 ], [ -75.247760127527926, 39.962226696421489 ], [ -75.247774126809347, 39.962304696886648 ], [ -75.247750127157545, 39.962453696393794 ], [ -75.24771312600727, 39.962663695882156 ], [ -75.247686126549794, 39.962818696317228 ], [ -75.247640769505409, 39.962949833626958 ], [ -75.247339078918955, 39.962769603732518 ], [ -75.246718737640634, 39.962709675280507 ], [ -75.245952033162908, 39.962601989396077 ], [ -75.245372381210714, 39.962529707089445 ], [ -75.244668741671816, 39.962441958831704 ], [ -75.243986508570046, 39.962356876765647 ], [ -75.24336708890435, 39.962279624118935 ], [ -75.242699049163122, 39.962196303163878 ], [ -75.241962381432003, 39.962104418659422 ], [ -75.241358375489256, 39.962029076901622 ], [ -75.240699020118171, 39.961946827893939 ], [ -75.239941896371292, 39.961852377240781 ], [ -75.239390506435143, 39.961783589431825 ], [ -75.238736578122115, 39.961713808544367 ], [ -75.236745676826658, 39.961457643973183 ], [ -75.234833158596601, 39.96121153064901 ], [ -75.234067088005162, 39.961112938928643 ], [ -75.23352666886862, 39.961057061019211 ], [ -75.232820440882151, 39.960967876258529 ], [ -75.231412174264619, 39.960790021641365 ], [ -75.230792616327065, 39.960711770371027 ], [ -75.230234010978521, 39.960641213800379 ], [ -75.22977276337916, 39.960582953024002 ], [ -75.229252176796734, 39.960518346323333 ], [ -75.228620376207999, 39.960446943784135 ], [ -75.227964945196348, 39.960364261234929 ], [ -75.227451293040801, 39.960302116109638 ], [ -75.226835495177141, 39.960221771688133 ], [ -75.226189767997639, 39.960140302361509 ], [ -75.224863340653997, 39.959972940154508 ], [ -75.225994177243606, 39.954588482771548 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WALNUT_HILL", "LISTNAME": "Walnut Hill", "MAPNAME": "Walnut Hill", "Shape_Leng": 10705.1426541, "Shape_Area": 6693679.4906000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.2248539034358, 39.959971749432682 ], [ -75.223884012825707, 39.959849362520259 ], [ -75.223115067197, 39.95974387444631 ], [ -75.222876203193152, 39.95975476660243 ], [ -75.222367626975739, 39.959696677442828 ], [ -75.221920682543796, 39.959639330686599 ], [ -75.220920079504594, 39.959513200802213 ], [ -75.219977756370469, 39.959399158569788 ], [ -75.218977703064979, 39.959268818764336 ], [ -75.218967040546929, 39.959267429329834 ], [ -75.216996613426431, 39.959018366188204 ], [ -75.213968554406378, 39.95863704412038 ], [ -75.213020245951753, 39.958517095090265 ], [ -75.213678502535672, 39.955476871844169 ], [ -75.214150020583347, 39.953120687854074 ], [ -75.215121379596098, 39.953241923266738 ], [ -75.218123500717212, 39.953618166656028 ], [ -75.222061530223513, 39.954107018242382 ], [ -75.22599417724355, 39.954588482771548 ], [ -75.224863340654153, 39.959972940154472 ], [ -75.2248539034358, 39.959971749432682 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "CEDAR_PARK", "LISTNAME": "Cedar Park", "MAPNAME": "Cedar Park", "Shape_Leng": 12495.3704755, "Shape_Area": 9085793.0160600003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.226537187911021, 39.952003339771252 ], [ -75.222588181314265, 39.951522264629453 ], [ -75.222583415875917, 39.951524297692181 ], [ -75.220618755477503, 39.951283461677733 ], [ -75.218127930625499, 39.950966939160828 ], [ -75.214692327788967, 39.950547144062931 ], [ -75.215023925776322, 39.948846908249223 ], [ -75.215028648413082, 39.948839810934565 ], [ -75.21501222307775, 39.948841565260452 ], [ -75.211370299290536, 39.945792180556772 ], [ -75.211397437780278, 39.945771207678057 ], [ -75.215029248758242, 39.943293659171204 ], [ -75.215244284128858, 39.943081767398681 ], [ -75.215735899906164, 39.94345534893538 ], [ -75.217081088092556, 39.94376312919379 ], [ -75.217585648829072, 39.943868626664432 ], [ -75.219065116821582, 39.944190280918811 ], [ -75.219091612846924, 39.944182891780287 ], [ -75.221956240220507, 39.944862213720938 ], [ -75.224728742143952, 39.945466332168678 ], [ -75.225439096483683, 39.946066782332437 ], [ -75.227379535451036, 39.947772342340045 ], [ -75.227416930410499, 39.947814680910639 ], [ -75.226537187911021, 39.952003339771252 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "GARDEN_COURT", "LISTNAME": "Garden Court", "MAPNAME": "Garden Court", "Shape_Leng": 8630.2822690699995, "Shape_Area": 3202937.32919 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.214150020583347, 39.953120687854074 ], [ -75.214692327788967, 39.950547144062931 ], [ -75.218127930625499, 39.950966939160772 ], [ -75.220618755477545, 39.951283461677733 ], [ -75.222583415875917, 39.951524297692181 ], [ -75.222588181314435, 39.951522264629418 ], [ -75.226537187910978, 39.952003339771245 ], [ -75.22599417724355, 39.954588482771548 ], [ -75.222061530223513, 39.954107018242382 ], [ -75.218123500717212, 39.953618166656028 ], [ -75.215121379596098, 39.953241923266738 ], [ -75.214150020583347, 39.953120687854074 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WOODLAND_TERRACE", "LISTNAME": "Woodland Terrace", "MAPNAME": "Woodland Terrace", "Shape_Leng": 5188.7705575199998, "Shape_Area": 1276673.9045599999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.208607558592064, 39.945464465410922 ], [ -75.20926000684095, 39.949542565200325 ], [ -75.208041809875198, 39.949748487316242 ], [ -75.20713251121991, 39.949786559951043 ], [ -75.20575020881536, 39.949828691701711 ], [ -75.203976173573636, 39.949901071394052 ], [ -75.203929076103108, 39.948940967839448 ], [ -75.205149748166619, 39.948517296340562 ], [ -75.205635719456012, 39.948051558405453 ], [ -75.206985575194167, 39.946858000005051 ], [ -75.208235273387118, 39.945762437342616 ], [ -75.208607558592064, 39.945464465410922 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "SPRUCE_HILL", "LISTNAME": "Spruce Hill", "MAPNAME": "Spruce Hill", "Shape_Leng": 14095.262494099999, "Shape_Area": 9214557.7503200006 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.204149159269917, 39.957401734998072 ], [ -75.204463929807659, 39.955907512303511 ], [ -75.204773728171844, 39.95594568124578 ], [ -75.205090335992267, 39.954421926177268 ], [ -75.205140982867192, 39.954407765229178 ], [ -75.205574114180607, 39.952061395936774 ], [ -75.205581796847213, 39.952059070583289 ], [ -75.205800967070246, 39.950987743472702 ], [ -75.205758429733166, 39.949835057637067 ], [ -75.205749193459312, 39.949828733150312 ], [ -75.20575020881536, 39.949828691701711 ], [ -75.20713251121991, 39.949786559951043 ], [ -75.208041809875198, 39.949748487316242 ], [ -75.20926000684095, 39.949542565200325 ], [ -75.208607558592064, 39.945464465410922 ], [ -75.210102240147563, 39.946699161500618 ], [ -75.210907230883251, 39.946150036625312 ], [ -75.211370299290536, 39.945792180556772 ], [ -75.21501222307775, 39.948841565260452 ], [ -75.215028648413082, 39.948839810934565 ], [ -75.215023925776322, 39.948846908249223 ], [ -75.214692327788967, 39.950547144062931 ], [ -75.214150020583247, 39.953120687854138 ], [ -75.213678502535615, 39.955476871844169 ], [ -75.213020245951753, 39.958517095090329 ], [ -75.211025944873853, 39.958265300284687 ], [ -75.209424742165069, 39.958048151362696 ], [ -75.208098226905079, 39.957898535153298 ], [ -75.206982590587572, 39.9577460984978 ], [ -75.206053321406017, 39.957620636215161 ], [ -75.205040143005505, 39.957504849314518 ], [ -75.204149159269917, 39.957401734998072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "SOUTHWEST_SCHUYLKILL", "LISTNAME": "Southwest Schuylkill", "MAPNAME": "Southwest Schuylkill", "Shape_Leng": 19282.638169400001, "Shape_Area": 13782430.5986 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.210102240147549, 39.94669916150071 ], [ -75.208607558592064, 39.945464465410922 ], [ -75.208235273387118, 39.945762437342616 ], [ -75.207446902145875, 39.945282520984193 ], [ -75.205492101244872, 39.944118664323327 ], [ -75.205162023068524, 39.943744629049306 ], [ -75.20394293149522, 39.942914715392142 ], [ -75.204650488357856, 39.94251673357023 ], [ -75.205250525187566, 39.941316740936351 ], [ -75.206009967331127, 39.941327518717145 ], [ -75.207104986620053, 39.941306366057354 ], [ -75.207961203203737, 39.941289820182881 ], [ -75.208119227310789, 39.94128676524214 ], [ -75.209569867156375, 39.940180339469656 ], [ -75.21212314462376, 39.938428786117619 ], [ -75.214296589450782, 39.936923440198036 ], [ -75.21583144886111, 39.935862332329783 ], [ -75.214999003673725, 39.935120699981191 ], [ -75.213884462224954, 39.935910967341243 ], [ -75.215857805342196, 39.933070293717023 ], [ -75.215863839912842, 39.933088904779702 ], [ -75.221064258836634, 39.931852432668812 ], [ -75.222581927641343, 39.930749104903832 ], [ -75.222607874674921, 39.930738639574848 ], [ -75.222800121386911, 39.930898408760342 ], [ -75.223294937990687, 39.931312197784564 ], [ -75.224662754729763, 39.93242714611744 ], [ -75.225874520649, 39.933496326156927 ], [ -75.227238853277697, 39.934653953582377 ], [ -75.223922909814078, 39.937000684619747 ], [ -75.220272458573319, 39.93956890435021 ], [ -75.216505304400854, 39.94220028693217 ], [ -75.215244284128858, 39.943081767398681 ], [ -75.215029248758242, 39.943293659171204 ], [ -75.211397437780064, 39.945771207678128 ], [ -75.211370299290536, 39.945792180556772 ], [ -75.210907230883251, 39.946150036625312 ], [ -75.210102240147549, 39.94669916150071 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "UNIVERSITY_CITY", "LISTNAME": "University City", "MAPNAME": "University City", "Shape_Leng": 26985.3088647, "Shape_Area": 32993640.9892 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.182820972405196, 39.963371674662831 ], [ -75.18174925926796, 39.962116593786163 ], [ -75.180049177762271, 39.960116607957133 ], [ -75.180038714394641, 39.960088209796496 ], [ -75.179349145469843, 39.958216621930312 ], [ -75.179349146754276, 39.957316629616791 ], [ -75.179423617365444, 39.956571984130655 ], [ -75.179449153720938, 39.956316637227395 ], [ -75.179649164625516, 39.956016639218475 ], [ -75.17974599301877, 39.955430983066151 ], [ -75.180041513239502, 39.954454458955645 ], [ -75.180838037747336, 39.952972788496687 ], [ -75.181556029981166, 39.951486531825722 ], [ -75.182549321972445, 39.950316682881422 ], [ -75.183328241382853, 39.949343092732825 ], [ -75.183349364979478, 39.949316690143334 ], [ -75.184549427025161, 39.948616695798833 ], [ -75.185649485976157, 39.948016699086665 ], [ -75.187056323287592, 39.947081322624719 ], [ -75.187801085592625, 39.946569110872829 ], [ -75.188749651150346, 39.945916714435306 ], [ -75.191508714200097, 39.943166567680251 ], [ -75.192769837601347, 39.942628288458451 ], [ -75.193770631846689, 39.94220110815634 ], [ -75.196950086142209, 39.942716734945591 ], [ -75.200350260002722, 39.943716727324095 ], [ -75.20305040075219, 39.943416728264971 ], [ -75.20394293149522, 39.942914715392142 ], [ -75.205162023068738, 39.943744629049306 ], [ -75.205492101245085, 39.944118664323341 ], [ -75.207446902146103, 39.945282520984193 ], [ -75.208235273387118, 39.945762437342616 ], [ -75.206985575194167, 39.946858000005051 ], [ -75.205635719456012, 39.948051558405552 ], [ -75.205149748166619, 39.948517296340562 ], [ -75.203929076103108, 39.948940967839448 ], [ -75.203976173573636, 39.949901071394052 ], [ -75.205749193459312, 39.949828733150312 ], [ -75.205758429733166, 39.949835057637145 ], [ -75.205800967070246, 39.950987743472773 ], [ -75.205581796847213, 39.952059070583381 ], [ -75.205574114180607, 39.952061395936774 ], [ -75.205140982867192, 39.954407765229178 ], [ -75.205090335992466, 39.954421926177268 ], [ -75.204773728171844, 39.95594568124578 ], [ -75.204463929807659, 39.955907512303511 ], [ -75.204149159269917, 39.957401734998072 ], [ -75.204121503020488, 39.957398534423746 ], [ -75.203386642717291, 39.957321061700902 ], [ -75.201954344125994, 39.957147702273076 ], [ -75.20180259556156, 39.957855872638994 ], [ -75.200967798764623, 39.957800432074528 ], [ -75.200857694344208, 39.959252891656895 ], [ -75.198675593203191, 39.959429924623066 ], [ -75.19585802663633, 39.959684164536945 ], [ -75.195851679454208, 39.959693258515863 ], [ -75.191165161585388, 39.9573017612516 ], [ -75.190841289923426, 39.958766258025172 ], [ -75.187572243892532, 39.958859810065768 ], [ -75.187539363654651, 39.958862811167108 ], [ -75.187415274983167, 39.959428010773223 ], [ -75.18748953899771, 39.959913778223857 ], [ -75.187587806005325, 39.960483099662056 ], [ -75.187150563187004, 39.960523253305148 ], [ -75.187049526036304, 39.961216604311232 ], [ -75.187086268486752, 39.961812452230873 ], [ -75.187233174863138, 39.962583090538352 ], [ -75.187288783855891, 39.962587234948252 ], [ -75.187302165949504, 39.962586021246388 ], [ -75.187273711189547, 39.962611358530815 ], [ -75.182820972405196, 39.963371674662831 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "POWELTON", "LISTNAME": "Powelton", "MAPNAME": "Powelton", "Shape_Leng": 8846.6881178999993, "Shape_Area": 3356992.30425 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.187539363654722, 39.958862811167002 ], [ -75.18757224389249, 39.958859810065732 ], [ -75.190841289923426, 39.958766258025094 ], [ -75.191165161585502, 39.957301761251564 ], [ -75.195851679454265, 39.95969325851577 ], [ -75.197833216812853, 39.960718869046552 ], [ -75.198887028304483, 39.96126427871932 ], [ -75.192767767116763, 39.961964686452276 ], [ -75.188345034135438, 39.962491432373888 ], [ -75.187288783856047, 39.962587234948209 ], [ -75.187233174863294, 39.962583090538352 ], [ -75.187086268487022, 39.961812452230781 ], [ -75.187049526036375, 39.96121660431114 ], [ -75.18715056318716, 39.960523253305148 ], [ -75.187587806005439, 39.960483099662007 ], [ -75.187489538997781, 39.959913778223836 ], [ -75.187415274983266, 39.959428010773223 ], [ -75.187539363654722, 39.958862811167002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WEST_POWELTON", "LISTNAME": "West Powelton", "MAPNAME": "West Powelton", "Shape_Leng": 12588.9313207, "Shape_Area": 6840857.3377200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.200130551443493, 39.961929996819372 ], [ -75.19888702830437, 39.961264278719348 ], [ -75.197833216812796, 39.960718869046602 ], [ -75.195851679454208, 39.95969325851577 ], [ -75.19585802663633, 39.959684164536945 ], [ -75.198675593203191, 39.959429924623066 ], [ -75.200857694344208, 39.959252891656803 ], [ -75.200967798764623, 39.957800432074528 ], [ -75.20180259556156, 39.957855872638994 ], [ -75.201954344125994, 39.957147702273076 ], [ -75.203386642717291, 39.957321061700902 ], [ -75.204121503020488, 39.957398534423746 ], [ -75.205040143005505, 39.957504849314518 ], [ -75.206053321406017, 39.957620636215161 ], [ -75.206982590587572, 39.9577460984978 ], [ -75.208098226905079, 39.957898535153298 ], [ -75.209424742165069, 39.958048151362696 ], [ -75.211025944873853, 39.958265300284687 ], [ -75.213020245951753, 39.958517095090329 ], [ -75.213968554406279, 39.95863704412038 ], [ -75.213006647232362, 39.962558044814784 ], [ -75.212017733487372, 39.962633269034981 ], [ -75.210550696597792, 39.962516610700995 ], [ -75.209808025802687, 39.962420265803644 ], [ -75.209060548018527, 39.962269641393569 ], [ -75.207812515839152, 39.962359456943709 ], [ -75.206940256346485, 39.962448553483775 ], [ -75.206339767721147, 39.962498787210393 ], [ -75.205645046040559, 39.962568989796615 ], [ -75.204843398276736, 39.962649992258811 ], [ -75.204315593212314, 39.962687623689121 ], [ -75.203988513597309, 39.962736366965629 ], [ -75.201933977310119, 39.962911445982797 ], [ -75.200130551443493, 39.961929996819372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "EAST_PARKSIDE", "LISTNAME": "East Parkside", "MAPNAME": "East Parkside", "Shape_Leng": 10885.781535300001, "Shape_Area": 4230999.8668999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.19930726854956, 39.974621590450752 ], [ -75.198690338644752, 39.972058354127462 ], [ -75.200322305426198, 39.971890700738271 ], [ -75.203812252673657, 39.971532094387946 ], [ -75.20609827879359, 39.971945492770111 ], [ -75.208781585052151, 39.972858340886404 ], [ -75.209851499353221, 39.973470585416173 ], [ -75.212265387497965, 39.973193319482021 ], [ -75.212266228930304, 39.973197660189939 ], [ -75.212396164318832, 39.973954746692812 ], [ -75.212597092737951, 39.97467075775068 ], [ -75.212976289911978, 39.976048679705514 ], [ -75.213102830210005, 39.976504307398521 ], [ -75.213443884665196, 39.977721828680586 ], [ -75.211256891099353, 39.976907077007191 ], [ -75.210408792173155, 39.976618136059066 ], [ -75.209269352265082, 39.976189007720642 ], [ -75.208630301540154, 39.975948330171995 ], [ -75.207911610616804, 39.975677652584857 ], [ -75.206902151568613, 39.975323337349103 ], [ -75.206647266754331, 39.975229331063325 ], [ -75.204340196990131, 39.974332464493557 ], [ -75.203720306792491, 39.974167532099536 ], [ -75.203164986710135, 39.974220872057039 ], [ -75.201737765105875, 39.974358492390721 ], [ -75.199513399722008, 39.974599279513527 ], [ -75.19930726854956, 39.974621590450752 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "BELMONT", "LISTNAME": "Belmont", "MAPNAME": "Belmont", "Shape_Leng": 10727.5746146, "Shape_Area": 5562268.8254199997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.203812252673615, 39.971532094387975 ], [ -75.20362030059151, 39.970251163418332 ], [ -75.202862646326551, 39.966229384440503 ], [ -75.20225202223682, 39.963098569614132 ], [ -75.204576176420758, 39.96446594158887 ], [ -75.208369275911068, 39.966832843834375 ], [ -75.211333245332881, 39.968727701690597 ], [ -75.211571518192997, 39.969602190456783 ], [ -75.211615703468169, 39.969842613387371 ], [ -75.211676695501993, 39.970174477631325 ], [ -75.211768646091926, 39.970674795678185 ], [ -75.211866807256897, 39.971208887146275 ], [ -75.21191490967108, 39.971470614215129 ], [ -75.212098501390983, 39.972469507463792 ], [ -75.212162060508575, 39.972815317025436 ], [ -75.212265387497851, 39.973193319482021 ], [ -75.209851499353263, 39.973470585416209 ], [ -75.208781585052051, 39.972858340886404 ], [ -75.206098278793533, 39.971945492770153 ], [ -75.203812252673615, 39.971532094387975 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "HAVERFORD_NORTH", "LISTNAME": "Haverford North", "MAPNAME": "Haverford North", "Shape_Leng": 8163.07457694, "Shape_Area": 2839016.7902700002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.201933977310119, 39.962911445982797 ], [ -75.203988513597309, 39.962736366965629 ], [ -75.204315593212314, 39.962687623689121 ], [ -75.204843398276736, 39.962649992258811 ], [ -75.205645046040559, 39.962568989796615 ], [ -75.206339767721147, 39.962498787210393 ], [ -75.206940256346485, 39.962448553483775 ], [ -75.207812515839152, 39.962359456943709 ], [ -75.209060548018527, 39.962269641393569 ], [ -75.209808025802687, 39.962420265803644 ], [ -75.210550696597792, 39.962516610700995 ], [ -75.210654433015804, 39.963346283339661 ], [ -75.210807317808076, 39.964480661947043 ], [ -75.210826474338347, 39.964623346737412 ], [ -75.210850092651114, 39.964799256463856 ], [ -75.210885187852384, 39.965060644942497 ], [ -75.210918943011819, 39.965312060302317 ], [ -75.210939113265496, 39.965462284544699 ], [ -75.210956896246884, 39.965590574246619 ], [ -75.211111504965444, 39.966746237717771 ], [ -75.211185542201605, 39.967297635099392 ], [ -75.211239341904658, 39.967868443524999 ], [ -75.211333245332881, 39.968727701690597 ], [ -75.208369275911068, 39.966832843834375 ], [ -75.204576176420758, 39.96446594158887 ], [ -75.20225202223682, 39.963098569614132 ], [ -75.201933977310119, 39.962911445982797 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WEST_PARKSIDE", "LISTNAME": "West Parkside", "MAPNAME": "West Parkside", "Shape_Leng": 11392.2493318, "Shape_Area": 7502885.3182300003 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.213443884665196, 39.977721828680586 ], [ -75.213102830210005, 39.976504307398521 ], [ -75.212976289911978, 39.976048679705514 ], [ -75.212597092737951, 39.97467075775068 ], [ -75.212396164318832, 39.973954746692812 ], [ -75.212266228930304, 39.973197660189939 ], [ -75.217723598923158, 39.972586026205725 ], [ -75.218471575013439, 39.973010138259021 ], [ -75.219649806313129, 39.973678886146615 ], [ -75.220495545161114, 39.974250095663635 ], [ -75.22357335002026, 39.975696819003453 ], [ -75.226027856574291, 39.976855957974259 ], [ -75.226807217120808, 39.977223405116121 ], [ -75.226451389880395, 39.977716541823341 ], [ -75.226551393608133, 39.977816541560372 ], [ -75.226351382027701, 39.978016539983628 ], [ -75.226136671364486, 39.978205567698566 ], [ -75.225396476646992, 39.979374179123006 ], [ -75.225034923686323, 39.979892842651232 ], [ -75.224746298368075, 39.980422514684918 ], [ -75.224360304775558, 39.980940639329582 ], [ -75.224151254962081, 39.981416518648246 ], [ -75.224103421892792, 39.981512176911302 ], [ -75.224051248510847, 39.981616517123612 ], [ -75.223172708674099, 39.981318864984601 ], [ -75.222497454027248, 39.98106889738925 ], [ -75.221472890587734, 39.980679574481989 ], [ -75.219002269414389, 39.979754492215967 ], [ -75.216887280017616, 39.978962508680219 ], [ -75.213443884665196, 39.977721828680586 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "MILL_CREEK", "LISTNAME": "Mill Creek", "MAPNAME": "Mill Creek", "Shape_Leng": 16852.528012300001, "Shape_Area": 15395244.690300001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.212265387497851, 39.973193319482021 ], [ -75.212162060508575, 39.972815317025436 ], [ -75.212098501390983, 39.972469507463792 ], [ -75.21191490967108, 39.971470614215129 ], [ -75.211866807256897, 39.971208887146275 ], [ -75.211768646091926, 39.970674795678185 ], [ -75.211676695501993, 39.970174477631325 ], [ -75.211615703468169, 39.969842613387371 ], [ -75.211571518192997, 39.969602190456783 ], [ -75.211333245332881, 39.968727701690597 ], [ -75.211239341904658, 39.967868443524999 ], [ -75.211185542201605, 39.967297635099392 ], [ -75.211111504965444, 39.966746237717771 ], [ -75.210956896246884, 39.965590574246619 ], [ -75.210939113265496, 39.965462284544699 ], [ -75.210918943011819, 39.965312060302317 ], [ -75.210885187852384, 39.965060644942497 ], [ -75.210850092651114, 39.964799256463856 ], [ -75.210826474338347, 39.964623346737412 ], [ -75.210807317808076, 39.964480661947043 ], [ -75.210654433015804, 39.963346283339661 ], [ -75.210550696597792, 39.962516610700995 ], [ -75.212017733487372, 39.962633269034981 ], [ -75.213006647232362, 39.962558044814784 ], [ -75.213968554406279, 39.95863704412038 ], [ -75.216996613426318, 39.959018366188239 ], [ -75.218967040546971, 39.959267429329834 ], [ -75.218977703064922, 39.959268818764372 ], [ -75.219376861345978, 39.960925609584649 ], [ -75.219623761783055, 39.962478844769493 ], [ -75.22000120766225, 39.963800444572144 ], [ -75.222328546773383, 39.964320772651739 ], [ -75.224566248139737, 39.964919207050997 ], [ -75.224907008815123, 39.96665569257032 ], [ -75.225415045499332, 39.969507226905648 ], [ -75.225812374415327, 39.971430609000819 ], [ -75.225801545864343, 39.97143186822376 ], [ -75.222053090669291, 39.972239810062526 ], [ -75.218471575013325, 39.973010138259049 ], [ -75.217723598923115, 39.972586026205761 ], [ -75.212266228930304, 39.973197660189967 ], [ -75.212265387497851, 39.973193319482021 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "DUNLAP", "LISTNAME": "Dunlap", "MAPNAME": "Dunlap", "Shape_Leng": 6513.1305901100004, "Shape_Area": 2366600.4914699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.218977703064979, 39.959268818764336 ], [ -75.219977756370469, 39.959399158569788 ], [ -75.220920079504594, 39.959513200802213 ], [ -75.221920682543796, 39.959639330686599 ], [ -75.222367626975739, 39.959696677442828 ], [ -75.222876203193152, 39.95975476660243 ], [ -75.223115067197, 39.95974387444631 ], [ -75.223884012825707, 39.959849362520259 ], [ -75.2248539034358, 39.959971749432682 ], [ -75.224206449315147, 39.963085609527411 ], [ -75.224566248139737, 39.964919207050947 ], [ -75.222328546773554, 39.964320772651696 ], [ -75.220001207662349, 39.963800444572144 ], [ -75.219623761783154, 39.962478844769493 ], [ -75.219376861346078, 39.960925609584606 ], [ -75.218977703064979, 39.959268818764336 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "MANTUA", "LISTNAME": "Mantua", "MAPNAME": "Mantua", "Shape_Leng": 25053.449835, "Shape_Area": 22922775.306899998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.182820972405196, 39.96337167466276 ], [ -75.187273711189547, 39.962611358530815 ], [ -75.187302165949504, 39.962586021246388 ], [ -75.188345034135494, 39.962491432373888 ], [ -75.192767767116649, 39.961964686452326 ], [ -75.19888702830437, 39.961264278719348 ], [ -75.200130551443493, 39.961929996819443 ], [ -75.201933977310119, 39.962911445982797 ], [ -75.20225202223682, 39.963098569614132 ], [ -75.202862646326551, 39.966229384440588 ], [ -75.203620300591496, 39.970251163418418 ], [ -75.203812252673615, 39.971532094387975 ], [ -75.200322305426198, 39.971890700738307 ], [ -75.198690338644482, 39.972058354127491 ], [ -75.199307268549404, 39.974621590450788 ], [ -75.198859850304913, 39.974670017469187 ], [ -75.198388599934546, 39.974717867718766 ], [ -75.195954780667833, 39.974966293643114 ], [ -75.195520943994538, 39.975017786059574 ], [ -75.194968026368272, 39.975058233233838 ], [ -75.194186759263374, 39.97513609370715 ], [ -75.193869329484215, 39.975213801693393 ], [ -75.193146397222691, 39.975299592408128 ], [ -75.19057767866498, 39.97005754402047 ], [ -75.188249568556927, 39.968416552940731 ], [ -75.184949411335737, 39.966116566985782 ], [ -75.183794129304772, 39.964469203689696 ], [ -75.183556009324562, 39.96423244216971 ], [ -75.182820972405196, 39.96337167466276 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "HADDINGTON", "LISTNAME": "Haddington", "MAPNAME": "Haddington", "Shape_Leng": 22913.736191700002, "Shape_Area": 22297710.893800002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.225812374415327, 39.971430609000784 ], [ -75.225415045499275, 39.969507226905613 ], [ -75.224907008815123, 39.966655692570285 ], [ -75.224566248139737, 39.964919207050947 ], [ -75.224206449315147, 39.963085609527411 ], [ -75.2248539034358, 39.959971749432682 ], [ -75.224863340654153, 39.959972940154472 ], [ -75.226189767997795, 39.960140302361509 ], [ -75.226835495177312, 39.960221771688097 ], [ -75.2274512930409, 39.960302116109638 ], [ -75.227964945196291, 39.960364261234929 ], [ -75.228620376208113, 39.960446943784113 ], [ -75.229252176796791, 39.960518346323283 ], [ -75.22977276337916, 39.960582953023959 ], [ -75.230234010978577, 39.960641213800336 ], [ -75.230792616327008, 39.960711770370978 ], [ -75.231412174264761, 39.960790021641387 ], [ -75.232820440882207, 39.960967876258529 ], [ -75.233526668868748, 39.961057061019211 ], [ -75.234067088005219, 39.961112938928643 ], [ -75.234833158596714, 39.96121153064901 ], [ -75.236745676826658, 39.961457643973183 ], [ -75.238736578122229, 39.961713808544324 ], [ -75.239390506435257, 39.961783589431768 ], [ -75.239941896371462, 39.961852377240767 ], [ -75.240699020118228, 39.961946827893911 ], [ -75.24135837548927, 39.962029076901594 ], [ -75.241962381432103, 39.962104418659386 ], [ -75.242699049163235, 39.962196303163878 ], [ -75.243367088904449, 39.962279624118885 ], [ -75.243986508570103, 39.962356876765647 ], [ -75.244668741671759, 39.962441958831704 ], [ -75.245372381210714, 39.962529707089445 ], [ -75.245952033163022, 39.962601989396092 ], [ -75.246718737640634, 39.962709675280458 ], [ -75.246408147373828, 39.964235403728161 ], [ -75.246403283370157, 39.964259297274275 ], [ -75.247449578445071, 39.964389922155867 ], [ -75.247133159635894, 39.965909809294104 ], [ -75.246974599456536, 39.966651337730788 ], [ -75.246814878376739, 39.967410643350497 ], [ -75.246489777379679, 39.968943563586727 ], [ -75.247488523103257, 39.969069416228493 ], [ -75.247168875940233, 39.970570489082363 ], [ -75.246948364115454, 39.971693789858207 ], [ -75.246874043372145, 39.972072379250164 ], [ -75.247246429565692, 39.973575714445175 ], [ -75.247508912683415, 39.97507665198215 ], [ -75.246809295162748, 39.975155431986188 ], [ -75.246536071348274, 39.975181333586313 ], [ -75.245484523702132, 39.9753330975309 ], [ -75.245207557824401, 39.973733757335538 ], [ -75.244784358927618, 39.971776020127542 ], [ -75.241751848939259, 39.971315768052094 ], [ -75.239079875090681, 39.969882903437934 ], [ -75.238187890881747, 39.969987620245959 ], [ -75.234923028087323, 39.97039753246235 ], [ -75.230647123335743, 39.970855041851785 ], [ -75.228718382700194, 39.971074987563028 ], [ -75.228721236525843, 39.971092212439302 ], [ -75.225812374415327, 39.971430609000784 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "CARROLL_PARK", "LISTNAME": "Carroll Park", "MAPNAME": "Carroll Park", "Shape_Leng": 17104.323942, "Shape_Area": 13055104.648399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.226807217120808, 39.977223405116121 ], [ -75.226027856574291, 39.976855957974259 ], [ -75.22357335002026, 39.975696819003453 ], [ -75.220495545161114, 39.974250095663635 ], [ -75.219649806313129, 39.973678886146615 ], [ -75.218471575013439, 39.973010138259021 ], [ -75.222053090669391, 39.972239810062526 ], [ -75.225801545864442, 39.971431868223704 ], [ -75.225812374415327, 39.971430609000784 ], [ -75.228721236525843, 39.971092212439302 ], [ -75.228718382700194, 39.971074987563028 ], [ -75.230647123335743, 39.970855041851785 ], [ -75.234923028087323, 39.97039753246235 ], [ -75.238187890881747, 39.969987620245959 ], [ -75.239079875090681, 39.969882903437934 ], [ -75.241751848939259, 39.971315768052094 ], [ -75.244784358927618, 39.971776020127542 ], [ -75.245207557824401, 39.973733757335538 ], [ -75.245484523702132, 39.9753330975309 ], [ -75.244452912085066, 39.975414332424236 ], [ -75.24354462015215, 39.975516746676234 ], [ -75.242636984966225, 39.975629840394255 ], [ -75.2417287232185, 39.975702761499889 ], [ -75.240992799488765, 39.975771308997722 ], [ -75.240190641014493, 39.975856394943229 ], [ -75.239348038948648, 39.975950651768159 ], [ -75.238518316264319, 39.976043459863213 ], [ -75.23769013884538, 39.976136090415146 ], [ -75.236769773793512, 39.976239024142892 ], [ -75.23602711061011, 39.976322077701369 ], [ -75.235269096402376, 39.976406879457812 ], [ -75.234462893123933, 39.976496992517312 ], [ -75.233671336945378, 39.97658549755252 ], [ -75.232723067350847, 39.976691517243175 ], [ -75.231775144119752, 39.976796604233314 ], [ -75.230866640351309, 39.976903615681373 ], [ -75.229859205703164, 39.977041362333345 ], [ -75.229858431475208, 39.977037167414494 ], [ -75.229842096270659, 39.977039288175042 ], [ -75.227193110099535, 39.977403171336761 ], [ -75.226807217120808, 39.977223405116121 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "OVERBROOK", "LISTNAME": "Overbrook", "MAPNAME": "Overbrook", "Shape_Leng": 57004.9246069, "Shape_Area": 76924994.535999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.227193110099535, 39.977403171336761 ], [ -75.229842096270659, 39.977039288175042 ], [ -75.229858431475208, 39.977037167414494 ], [ -75.229859205703164, 39.977041362333345 ], [ -75.230866640351309, 39.976903615681373 ], [ -75.231775144119752, 39.976796604233314 ], [ -75.232723067350847, 39.976691517243175 ], [ -75.233671336945378, 39.97658549755252 ], [ -75.234462893123933, 39.976496992517312 ], [ -75.235269096402376, 39.976406879457812 ], [ -75.23602711061011, 39.976322077701369 ], [ -75.236769773793512, 39.976239024142892 ], [ -75.23769013884538, 39.976136090415146 ], [ -75.238518316264319, 39.976043459863213 ], [ -75.239348038948648, 39.975950651768159 ], [ -75.240190641014493, 39.975856394943229 ], [ -75.240992799488765, 39.975771308997722 ], [ -75.2417287232185, 39.975702761499889 ], [ -75.242636984966225, 39.975629840394255 ], [ -75.24354462015215, 39.975516746676234 ], [ -75.244452912085066, 39.975414332424236 ], [ -75.245484523702132, 39.9753330975309 ], [ -75.246536071348274, 39.975181333586313 ], [ -75.246809295162748, 39.975155431986188 ], [ -75.247508912683415, 39.97507665198215 ], [ -75.247246429565692, 39.973575714445175 ], [ -75.246874043372145, 39.972072379250164 ], [ -75.246948364115454, 39.971693789858207 ], [ -75.247168875940233, 39.970570489082363 ], [ -75.247488523103257, 39.969069416228493 ], [ -75.246489777379679, 39.968943563586727 ], [ -75.246814878376739, 39.967410643350497 ], [ -75.246974599456536, 39.966651337730788 ], [ -75.247133159635894, 39.965909809294104 ], [ -75.247449578445071, 39.964389922155867 ], [ -75.246403283370157, 39.964259297274275 ], [ -75.246408147373828, 39.964235403728161 ], [ -75.246718737640634, 39.962709675280458 ], [ -75.247339078919111, 39.962769603732518 ], [ -75.247640769505409, 39.962949833626908 ], [ -75.247602125744578, 39.962993696046951 ], [ -75.247487126600646, 39.963120695001663 ], [ -75.247416126001141, 39.963192694940851 ], [ -75.24739712618657, 39.963250695292167 ], [ -75.24740312575662, 39.963328695184686 ], [ -75.247432125741938, 39.96341869435846 ], [ -75.247477125210168, 39.963529695041537 ], [ -75.247562125551767, 39.963639695095431 ], [ -75.247683123918478, 39.963778694794399 ], [ -75.247776124523952, 39.963877695093224 ], [ -75.247901124018469, 39.963980695343295 ], [ -75.248054123259493, 39.964075696226431 ], [ -75.248613121655765, 39.964353696939774 ], [ -75.248965120220845, 39.964495698106511 ], [ -75.249463118926911, 39.964722698512908 ], [ -75.249726116937609, 39.96485169951243 ], [ -75.249846117105449, 39.964909699470311 ], [ -75.249910117335133, 39.964948699713979 ], [ -75.249988116611519, 39.96500270012708 ], [ -75.250052116277004, 39.965043700194059 ], [ -75.250131116631096, 39.965068700128171 ], [ -75.250219116590173, 39.965077699865077 ], [ -75.250311117408145, 39.965070699514747 ], [ -75.250445117757053, 39.965019698709874 ], [ -75.250459093123609, 39.965013546633671 ], [ -75.250604118283064, 39.964949698917884 ], [ -75.25066531860999, 39.964921733526133 ], [ -75.250755118256322, 39.964880698652422 ], [ -75.25091111859102, 39.964838698030313 ], [ -75.251046119619687, 39.964834697733849 ], [ -75.251100119717563, 39.964859697658632 ], [ -75.251199119552467, 39.964913697347193 ], [ -75.251281119714605, 39.965004697119241 ], [ -75.251340119703414, 39.965073696600285 ], [ -75.25133411958069, 39.965139696775267 ], [ -75.251339120274096, 39.9651936965464 ], [ -75.251351119775535, 39.965220696493866 ], [ -75.251366120103341, 39.965250696303393 ], [ -75.251425119868827, 39.965303696859536 ], [ -75.251494119978361, 39.965338696215589 ], [ -75.251601119829786, 39.965357695995358 ], [ -75.251705120786227, 39.96534769601196 ], [ -75.251809121080242, 39.965331695331635 ], [ -75.251921121533826, 39.965319695218852 ], [ -75.252092122023583, 39.965306695314766 ], [ -75.252332121564379, 39.965281694777758 ], [ -75.2526341234272, 39.965252693958369 ], [ -75.252841123357584, 39.965245693130271 ], [ -75.252970123948515, 39.965236692834843 ], [ -75.253075123640187, 39.965215692453981 ], [ -75.253220125059741, 39.965185692015162 ], [ -75.253312124420944, 39.965227692215528 ], [ -75.25340512471702, 39.965262691809208 ], [ -75.253580125764202, 39.965301691711552 ], [ -75.253710125680144, 39.965330690803903 ], [ -75.253934126535128, 39.965391690554213 ], [ -75.254044126580951, 39.965403690449229 ], [ -75.254138126821076, 39.965405689950629 ], [ -75.254221127294272, 39.965338690288533 ], [ -75.254300127606356, 39.965274689457615 ], [ -75.254335128108565, 39.965212689603092 ], [ -75.254379127398067, 39.965128689591509 ], [ -75.25445412783057, 39.965047689216227 ], [ -75.254541128781483, 39.964993689306347 ], [ -75.254547666507875, 39.964988767924382 ], [ -75.254630129332313, 39.964926689205576 ], [ -75.25473612907264, 39.964851689406458 ], [ -75.254935129337881, 39.964764688708321 ], [ -75.255110130563409, 39.964692688123598 ], [ -75.255265130857552, 39.964656688420739 ], [ -75.255407131516932, 39.964631688086087 ], [ -75.255541131908274, 39.964596687489497 ], [ -75.255684131810881, 39.964547687291081 ], [ -75.255810132491334, 39.964472687017185 ], [ -75.255850132214164, 39.964438686390572 ], [ -75.255890133070707, 39.964373686375929 ], [ -75.255964133824037, 39.964313686998679 ], [ -75.256011557590455, 39.964285313972191 ], [ -75.256081133240471, 39.964243686802817 ], [ -75.256097264889561, 39.964230928021571 ], [ -75.256191133894788, 39.964156685914297 ], [ -75.256279134223519, 39.964080686310204 ], [ -75.256381135037401, 39.963975686250969 ], [ -75.256584135560374, 39.963803685820587 ], [ -75.256653155164358, 39.963746399682229 ], [ -75.256684136050012, 39.963720685616579 ], [ -75.25674413613612, 39.963689685284905 ], [ -75.256814136948393, 39.963678685204407 ], [ -75.256898136934538, 39.963673685282011 ], [ -75.256979136858135, 39.96368968521648 ], [ -75.2571081377681, 39.963720684212674 ], [ -75.257127137522332, 39.963727684097442 ], [ -75.257248136996992, 39.963754684412237 ], [ -75.257317137345382, 39.963768683623805 ], [ -75.257416137407702, 39.963767683392589 ], [ -75.257485137856406, 39.963745683538768 ], [ -75.257541138574837, 39.963706683451562 ], [ -75.257627138441549, 39.963665683322944 ], [ -75.257703139136112, 39.963632682962704 ], [ -75.257786138995698, 39.963603682685907 ], [ -75.257856139515582, 39.963595683158893 ], [ -75.257931139172285, 39.963625682292268 ], [ -75.257992140101891, 39.963678682310771 ], [ -75.258012139782906, 39.963740682026064 ], [ -75.258010138923368, 39.963855682076073 ], [ -75.258012139162062, 39.963994682128508 ], [ -75.257989138433231, 39.964096681677439 ], [ -75.257960138893637, 39.964162681728702 ], [ -75.257942138846857, 39.964237681856787 ], [ -75.257942138342983, 39.964302681794699 ], [ -75.257974138088031, 39.964378682180985 ], [ -75.258005138866423, 39.96440068179529 ], [ -75.258056138463829, 39.964429682098775 ], [ -75.258118138396028, 39.96444768143904 ], [ -75.258187138739544, 39.964451680948542 ], [ -75.258269139285531, 39.964453681407754 ], [ -75.258337138829589, 39.964450680946932 ], [ -75.258405139582692, 39.964453681048781 ], [ -75.258468138956616, 39.96448568071888 ], [ -75.258508139167191, 39.964536680161935 ], [ -75.258540207805765, 39.964608619317488 ], [ -75.25854513915715, 39.964619680591717 ], [ -75.25858813991178, 39.964709680421215 ], [ -75.258635139785952, 39.964767680192978 ], [ -75.258682139704661, 39.964847679353475 ], [ -75.258704139802987, 39.964904679529312 ], [ -75.258711139736491, 39.964966679778648 ], [ -75.258713139566368, 39.965060679960423 ], [ -75.258709138638821, 39.965241678945915 ], [ -75.258698139052612, 39.965325679757257 ], [ -75.25870312001301, 39.965355569131823 ], [ -75.25870713847749, 39.96537967939976 ], [ -75.258736138775831, 39.965448679523867 ], [ -75.25876513916613, 39.965517678740255 ], [ -75.25879513894624, 39.965572678479248 ], [ -75.258837138252247, 39.96561567897345 ], [ -75.258888138444561, 39.965649678470513 ], [ -75.258972138967408, 39.965677678355071 ], [ -75.259076138868167, 39.965693677778269 ], [ -75.259212139764543, 39.965698677802692 ], [ -75.259331140188976, 39.96569967769836 ], [ -75.259398140288695, 39.965717677623957 ], [ -75.259421139772869, 39.965762677461278 ], [ -75.259425139483653, 39.965814677348 ], [ -75.259426139978885, 39.965893676892819 ], [ -75.259448139435506, 39.965948676698375 ], [ -75.259549140427353, 39.966011676358875 ], [ -75.259647140319544, 39.966042676211153 ], [ -75.259777140031531, 39.966082675698942 ], [ -75.259907140855944, 39.966116675387887 ], [ -75.260063141093511, 39.966197675036263 ], [ -75.260307141582331, 39.966258674453968 ], [ -75.260489141597844, 39.966314673894239 ], [ -75.260582142450346, 39.966274673935125 ], [ -75.26066014268882, 39.966270673580709 ], [ -75.260749142252365, 39.966281673540124 ], [ -75.260826143384179, 39.966271673353177 ], [ -75.260930143213542, 39.966243673181786 ], [ -75.261024143862898, 39.966199673454746 ], [ -75.261113143599431, 39.96613767249444 ], [ -75.261159143862045, 39.966082672964824 ], [ -75.261213143914816, 39.966027673029117 ], [ -75.261282144202156, 39.965998672904412 ], [ -75.261384144433023, 39.96600267255581 ], [ -75.261443145002985, 39.966032671916153 ], [ -75.261477144556835, 39.966077671998086 ], [ -75.261545145235402, 39.96611767191488 ], [ -75.261659145413105, 39.966160671255736 ], [ -75.261734145905024, 39.966183671663138 ], [ -75.26180914554952, 39.966191671478498 ], [ -75.261891145766199, 39.966172670905429 ], [ -75.262011146127293, 39.966136670856166 ], [ -75.262091146285186, 39.966088670878747 ], [ -75.262102146258812, 39.966055671074727 ], [ -75.262114146405025, 39.966007670808125 ], [ -75.262136146394468, 39.965966670865527 ], [ -75.262151147464706, 39.965951670311952 ], [ -75.262167146460001, 39.965935670573927 ], [ -75.262240147185068, 39.965881670450209 ], [ -75.262263147932757, 39.965859670557613 ], [ -75.262271147683236, 39.96585267033138 ], [ -75.262340147806341, 39.965785670482489 ], [ -75.262380147292248, 39.965740670190741 ], [ -75.262420147798721, 39.965677670004062 ], [ -75.26245514779356, 39.965634670519542 ], [ -75.262510148755112, 39.965612670500839 ], [ -75.262557148023447, 39.965618669946672 ], [ -75.262616148388105, 39.965627669409585 ], [ -75.262677148926301, 39.965639669233482 ], [ -75.262764148612931, 39.965648669152792 ], [ -75.262834149386549, 39.965640669265738 ], [ -75.262917149693365, 39.965610668793154 ], [ -75.26295914979022, 39.96558066894108 ], [ -75.263026150127303, 39.965532668600922 ], [ -75.263090150653426, 39.965487669267546 ], [ -75.263142150601269, 39.965460668313042 ], [ -75.263193150962422, 39.965458668760178 ], [ -75.263249150041418, 39.965475668484991 ], [ -75.263305150687685, 39.965506668638042 ], [ -75.263381150476576, 39.96554666780866 ], [ -75.263465151395238, 39.965578667457251 ], [ -75.263528150615826, 39.965606667498179 ], [ -75.263612151824091, 39.965622667333612 ], [ -75.26369415184098, 39.965615667526919 ], [ -75.263768151853569, 39.965597667186131 ], [ -75.263853152255294, 39.965557666991927 ], [ -75.263926152527745, 39.965530666567574 ], [ -75.263988152784719, 39.965492666417468 ], [ -75.264014152768112, 39.965458666964032 ], [ -75.26405415293803, 39.965422666979784 ], [ -75.26408646138691, 39.965401990102826 ], [ -75.26412915326938, 39.965374666334704 ], [ -75.26424015384714, 39.965313666710571 ], [ -75.264371153920365, 39.965243665970092 ], [ -75.264494154312004, 39.96519666606784 ], [ -75.264551154195033, 39.965182665894602 ], [ -75.264642154201226, 39.965180665314072 ], [ -75.264756154951428, 39.965185665217248 ], [ -75.264916155419641, 39.965190664703123 ], [ -75.265056155943185, 39.965193664055775 ], [ -75.26525015604895, 39.965208664164045 ], [ -75.265386156385134, 39.965225663403686 ], [ -75.265446157081428, 39.965258663699068 ], [ -75.265526157189697, 39.965351662915275 ], [ -75.265564156495856, 39.965405662683864 ], [ -75.265596156398047, 39.965449663156711 ], [ -75.265654156912959, 39.965527662994717 ], [ -75.265742156656785, 39.965627662902342 ], [ -75.265804156513127, 39.965717662066297 ], [ -75.26585325422333, 39.965788475614872 ], [ -75.265856157257929, 39.965792662268946 ], [ -75.265919157150918, 39.965861662124425 ], [ -75.266046157780281, 39.965927661328649 ], [ -75.266060157589536, 39.965931661111206 ], [ -75.266191157576117, 39.965969661207595 ], [ -75.266311157305907, 39.966005660738155 ], [ -75.266393157797239, 39.966019660973544 ], [ -75.266517946918697, 39.966022156294258 ], [ -75.266543158649554, 39.966022660476661 ], [ -75.266705158872909, 39.96602265969004 ], [ -75.266793158952439, 39.966010660002816 ], [ -75.266907159222768, 39.96600965896743 ], [ -75.267022159549626, 39.966026659513965 ], [ -75.267098159912848, 39.966051659281106 ], [ -75.267136159657397, 39.966063659089308 ], [ -75.267212160043528, 39.966093658345045 ], [ -75.26724316023477, 39.966118658352137 ], [ -75.267316042824646, 39.966169314535932 ], [ -75.267384160248781, 39.966216658271954 ], [ -75.267473160494802, 39.966261657980382 ], [ -75.267510977392547, 39.966268861366437 ], [ -75.267536161158233, 39.966273657916354 ], [ -75.267596161070017, 39.966274657651056 ], [ -75.267668160820548, 39.966299656981604 ], [ -75.267777161492504, 39.966342657333378 ], [ -75.267816161243971, 39.966360656575077 ], [ -75.267907161701331, 39.966401656483683 ], [ -75.268127161452284, 39.966492656150756 ], [ -75.268391163124335, 39.966590655261079 ], [ -75.268459162582332, 39.966619655340736 ], [ -75.268511162557175, 39.966652654849916 ], [ -75.268531429504307, 39.966667394435262 ], [ -75.268566163259479, 39.966692655000699 ], [ -75.268699163636811, 39.966797654793616 ], [ -75.268760392879216, 39.966852080038308 ], [ -75.268771163678466, 39.966861654332206 ], [ -75.26884416356387, 39.966947654055105 ], [ -75.268914162807334, 39.967042653655668 ], [ -75.268931504253771, 39.967076294735385 ], [ -75.269014163448531, 39.967236653293497 ], [ -75.269042162767136, 39.967286653295801 ], [ -75.269078163238987, 39.967331652816796 ], [ -75.269123163315939, 39.967362652778853 ], [ -75.269155163902809, 39.967375652935438 ], [ -75.269160550307035, 39.967376422595002 ], [ -75.269204163485441, 39.967382652412461 ], [ -75.269270163531985, 39.967392652954267 ], [ -75.26934922075958, 39.967402883455868 ], [ -75.269355164565255, 39.967403652541627 ], [ -75.269443164000919, 39.967389652397756 ], [ -75.269496164424794, 39.967376651688546 ], [ -75.269546165124638, 39.967356652141248 ], [ -75.269612164296532, 39.967332652025647 ], [ -75.269668164821127, 39.96731865202203 ], [ -75.269739165109939, 39.967316651141978 ], [ -75.269799164967864, 39.967327651528606 ], [ -75.269855165728814, 39.967345651693691 ], [ -75.269917165119196, 39.967381650690733 ], [ -75.26995916618641, 39.967426650764878 ], [ -75.270000165437537, 39.967480650725861 ], [ -75.270028165471714, 39.967553650806984 ], [ -75.270052165601271, 39.967654650816428 ], [ -75.270071165128158, 39.96773065036605 ], [ -75.270138165142953, 39.967873650046975 ], [ -75.270190164928778, 39.967978649990634 ], [ -75.270295165615906, 39.968185649528145 ], [ -75.270386165517863, 39.968323649109486 ], [ -75.270400165616067, 39.968358649408948 ], [ -75.270411165471998, 39.968429648564552 ], [ -75.270420165819743, 39.968480648621181 ], [ -75.270445165642158, 39.968529649115602 ], [ -75.270499165550021, 39.968586648946591 ], [ -75.270520166009234, 39.968603648357927 ], [ -75.270568165454392, 39.968639648115065 ], [ -75.270596166194309, 39.968661648754441 ], [ -75.270649165309493, 39.968676648245747 ], [ -75.270716166084668, 39.968672648434087 ], [ -75.270771166301003, 39.968664647537985 ], [ -75.27083616643506, 39.968645648103099 ], [ -75.270911166724531, 39.968620647875625 ], [ -75.270984166354026, 39.968604647556099 ], [ -75.271041167279748, 39.968610647792815 ], [ -75.271107167621381, 39.968620647253012 ], [ -75.271166167083436, 39.968634647185091 ], [ -75.271239167298518, 39.968664646440985 ], [ -75.271325168134211, 39.968692646963575 ], [ -75.271405168282243, 39.968705646178179 ], [ -75.271489167647005, 39.968710646283185 ], [ -75.271588168284751, 39.968716646045706 ], [ -75.271696168818167, 39.968730645304717 ], [ -75.27180016925422, 39.968757645766274 ], [ -75.271855048025216, 39.968801728489126 ], [ -75.271861168552491, 39.968806644881383 ], [ -75.271920169288293, 39.968860645412136 ], [ -75.271983169361761, 39.968945645013655 ], [ -75.272022168713434, 39.968986644869005 ], [ -75.272082340903637, 39.969011877876341 ], [ -75.272194169705301, 39.969048644277187 ], [ -75.272342169539115, 39.969095643728103 ], [ -75.272503170412804, 39.96913264344068 ], [ -75.272623169931975, 39.969179643486363 ], [ -75.27272417052572, 39.969218642494283 ], [ -75.272813170552752, 39.969245642555137 ], [ -75.27295517071353, 39.969294642513198 ], [ -75.273052171278749, 39.969306641615987 ], [ -75.273183172317289, 39.969306641771688 ], [ -75.27327817186216, 39.96929564134556 ], [ -75.273413172679184, 39.969282641683741 ], [ -75.27349017308309, 39.969277641517664 ], [ -75.273567172395161, 39.969279641013927 ], [ -75.273679172689768, 39.969288640444304 ], [ -75.273808173287492, 39.969298639978192 ], [ -75.273910173926396, 39.969311640015775 ], [ -75.274010174566499, 39.969316640230566 ], [ -75.274148174345441, 39.969318639102845 ], [ -75.274324175489838, 39.969317639246789 ], [ -75.274486175835179, 39.969311638479546 ], [ -75.274806175799284, 39.969294637813256 ], [ -75.274887176296232, 39.969288638205185 ], [ -75.275025177148493, 39.969290637848786 ], [ -75.275082177531502, 39.969298637129299 ], [ -75.275122093372502, 39.969308527603836 ], [ -75.27519517785997, 39.969326636741492 ], [ -75.275264176843805, 39.969365637108517 ], [ -75.275320177410308, 39.969417636715491 ], [ -75.27536017775752, 39.969504636814591 ], [ -75.275392177597354, 39.969576636008952 ], [ -75.27545417682316, 39.969779636217865 ], [ -75.275492177541821, 39.969930635880459 ], [ -75.275565177528776, 39.970126635624162 ], [ -75.27560417752639, 39.970212635584723 ], [ -75.275650176811553, 39.970260635241132 ], [ -75.275703177006392, 39.970294634991021 ], [ -75.27581717827097, 39.970311634713433 ], [ -75.276003178409269, 39.970313634539565 ], [ -75.276184178378728, 39.970325633498284 ], [ -75.276243178856205, 39.97033163366936 ], [ -75.276275178750666, 39.970343633477576 ], [ -75.276300178713413, 39.970352633485525 ], [ -75.276368179567868, 39.970389633080131 ], [ -75.276409179198282, 39.970417633667786 ], [ -75.276436179117425, 39.970469632881446 ], [ -75.276460406266381, 39.970513074259955 ], [ -75.276465179135542, 39.97052163285138 ], [ -75.276506178869596, 39.970591632688404 ], [ -75.276551179869443, 39.970673632435386 ], [ -75.276609179130716, 39.970777632283934 ], [ -75.276638179413055, 39.970829632209757 ], [ -75.276654179924265, 39.970863632341072 ], [ -75.276665179016106, 39.970908631987399 ], [ -75.276672179846585, 39.970946632226678 ], [ -75.276660179762004, 39.970984632006335 ], [ -75.276634179497037, 39.971017632331041 ], [ -75.27659825756183, 39.971046955439157 ], [ -75.276585178454397, 39.971057632197471 ], [ -75.276526179272736, 39.97109663269957 ], [ -75.276469178878159, 39.971136632195787 ], [ -75.276483178255731, 39.971179632377471 ], [ -75.276522178659988, 39.971225631990606 ], [ -75.276581178720619, 39.971263632144307 ], [ -75.27668717954289, 39.971254631880448 ], [ -75.276758179650017, 39.971245631346392 ], [ -75.276823179219249, 39.9712166311961 ], [ -75.276870983090504, 39.971189699402039 ], [ -75.276894180207478, 39.971176631409442 ], [ -75.27707118036443, 39.971106630843046 ], [ -75.277134180548799, 39.971090630955125 ], [ -75.277196180902934, 39.971083631022154 ], [ -75.277264180865473, 39.971083630314915 ], [ -75.277336180905706, 39.971084630249841 ], [ -75.277419181377198, 39.971098630457234 ], [ -75.277489181349011, 39.97111162972773 ], [ -75.277538181012616, 39.971128630074759 ], [ -75.277574181799494, 39.971151630198044 ], [ -75.27760918121966, 39.971176629638819 ], [ -75.277654181465877, 39.97121062999247 ], [ -75.277685181817546, 39.971248630017108 ], [ -75.277702181576942, 39.971285629260265 ], [ -75.277705744698693, 39.971300276697775 ], [ -75.277711182068956, 39.971322629163765 ], [ -75.277686181925247, 39.971346629732565 ], [ -75.277644181540978, 39.971363629227142 ], [ -75.277594180839415, 39.971378630060727 ], [ -75.277549181008098, 39.971387629955018 ], [ -75.277521181515112, 39.971402629933138 ], [ -75.277507180849483, 39.97142562949125 ], [ -75.277501181277287, 39.971453629789146 ], [ -75.277503181467665, 39.971488630078007 ], [ -75.277511181253487, 39.971519629523378 ], [ -75.277527180892662, 39.971556629770397 ], [ -75.277551180737305, 39.971584629474897 ], [ -75.277589181027835, 39.971616629325744 ], [ -75.277639181256333, 39.971644629640629 ], [ -75.277674181808592, 39.971660629172177 ], [ -75.277763181771505, 39.971679629067872 ], [ -75.277884181728822, 39.971694628600773 ], [ -75.277940312390953, 39.971709181239341 ], [ -75.27796518230744, 39.971715628289331 ], [ -75.278016182018803, 39.971752628247096 ], [ -75.27829518244198, 39.971929627637977 ], [ -75.278350182151215, 39.972014627792134 ], [ -75.278447182940695, 39.972107626788784 ], [ -75.27853518333248, 39.972186627032926 ], [ -75.278607182945052, 39.972264626722009 ], [ -75.278655182953656, 39.972333626813516 ], [ -75.278695182659888, 39.972415626055401 ], [ -75.278701183169801, 39.972443626230863 ], [ -75.278722183483936, 39.972531625915089 ], [ -75.278757183597392, 39.972635625756027 ], [ -75.2787751826705, 39.972693625691335 ], [ -75.278778183387658, 39.972746625670851 ], [ -75.278782183125728, 39.972842625780636 ], [ -75.278793182407341, 39.972951625505971 ], [ -75.278808182676428, 39.973052625072008 ], [ -75.278828182595063, 39.973163625065631 ], [ -75.278857182987821, 39.973248625520341 ], [ -75.278914182464391, 39.973316624556603 ], [ -75.278950183237541, 39.973360625187908 ], [ -75.278969182891018, 39.973447624892813 ], [ -75.278996182627608, 39.973527625029597 ], [ -75.279044182222179, 39.973619624271464 ], [ -75.27907918336382, 39.973692623944565 ], [ -75.279107182718931, 39.97381362400597 ], [ -75.279121182380663, 39.973914623595427 ], [ -75.279168182506893, 39.973987623886913 ], [ -75.279240182435956, 39.974032623783728 ], [ -75.279357183473465, 39.974073623489097 ], [ -75.27946318298892, 39.974123623108206 ], [ -75.279577488140319, 39.974176964754271 ], [ -75.279598183384564, 39.974186622760705 ], [ -75.279750735644782, 39.974287083519961 ], [ -75.279803183866875, 39.974321621682947 ], [ -75.279953183907736, 39.974425621240904 ], [ -75.280025183950386, 39.974503621761485 ], [ -75.280042184534835, 39.974541621617909 ], [ -75.280083184825585, 39.974625621296845 ], [ -75.280110658051683, 39.974693389691076 ], [ -75.280128184027774, 39.974736621123498 ], [ -75.280190184636737, 39.974836620923824 ], [ -75.280228184407321, 39.974889620788211 ], [ -75.280262052303314, 39.974961117160056 ], [ -75.28026418506731, 39.974965620208607 ], [ -75.279508181967046, 39.975350621797475 ], [ -75.279135181033809, 39.975553622620424 ], [ -75.278936180536192, 39.975655623350534 ], [ -75.278184177453838, 39.976042624451381 ], [ -75.277667175477859, 39.976313625602678 ], [ -75.276480171906172, 39.976960627329291 ], [ -75.276129170462781, 39.977128628418875 ], [ -75.275869169961524, 39.977246628755601 ], [ -75.275466167628196, 39.977430629162882 ], [ -75.275282167572598, 39.977513630138539 ], [ -75.273550161882767, 39.97828063316274 ], [ -75.273152160625315, 39.978456633775387 ], [ -75.273024159962617, 39.978513634529349 ], [ -75.272253156671141, 39.978856635462293 ], [ -75.271528155038951, 39.979177637063096 ], [ -75.271307153366294, 39.979276637086954 ], [ -75.269255146139329, 39.980187641244882 ], [ -75.267971141407969, 39.980758643852937 ], [ -75.26739613951807, 39.98101564492962 ], [ -75.267248139345497, 39.981080645484425 ], [ -75.266249135465969, 39.981526647487726 ], [ -75.265509132566521, 39.981858648166892 ], [ -75.264746130085086, 39.982194650261583 ], [ -75.264349129290565, 39.98237365046198 ], [ -75.263685126727538, 39.982659652275757 ], [ -75.262944124236938, 39.983046652901493 ], [ -75.262792122702763, 39.983125653510974 ], [ -75.262510122042102, 39.983281654163775 ], [ -75.260778115075738, 39.984242657424481 ], [ -75.260687114641712, 39.984296657707596 ], [ -75.259474110090622, 39.984956659731111 ], [ -75.259282109293778, 39.985074659346004 ], [ -75.258840108396456, 39.98534966041921 ], [ -75.258703107409076, 39.985429660717799 ], [ -75.258543106790725, 39.98552866080616 ], [ -75.25694810035948, 39.986711663532319 ], [ -75.256872099646628, 39.986772663915481 ], [ -75.256285096659724, 39.987191664420827 ], [ -75.256117096104163, 39.987302665240342 ], [ -75.255674094748457, 39.987500666086845 ], [ -75.253997087898753, 39.988305668321985 ], [ -75.251598078763777, 39.989430673146686 ], [ -75.251544078237941, 39.989455673359991 ], [ -75.251436078237191, 39.989505673735678 ], [ -75.250784075170586, 39.98980467497293 ], [ -75.250334074166886, 39.990018675343826 ], [ -75.25012807307165, 39.990117676109755 ], [ -75.249998072801915, 39.990181675868079 ], [ -75.249766072708397, 39.990291675404585 ], [ -75.249212073233195, 39.990548673498139 ], [ -75.24794607526762, 39.991139668591401 ], [ -75.24568707878619, 39.992192660416947 ], [ -75.243906082013083, 39.993044653745734 ], [ -75.243814081240515, 39.993087653768299 ], [ -75.241648084837649, 39.994106645414739 ], [ -75.240783086505061, 39.994511642067721 ], [ -75.239003088219093, 39.995345634965474 ], [ -75.238975088331159, 39.99535963556751 ], [ -75.237995090443903, 39.995818631278375 ], [ -75.237341091425094, 39.99612462913769 ], [ -75.237329091047073, 39.99612962911754 ], [ -75.235296093247001, 39.997071620847841 ], [ -75.234182094833415, 39.997598616652184 ], [ -75.233213096277979, 39.998059613231774 ], [ -75.23212209776446, 39.998563608727196 ], [ -75.232054098148254, 39.998590608220212 ], [ -75.230894100032316, 39.999131604299713 ], [ -75.230439100513507, 39.999345602609573 ], [ -75.229451102036407, 39.999812597995373 ], [ -75.228879102816563, 40.000080596134026 ], [ -75.22873610335823, 40.000145595450697 ], [ -75.228373105681328, 40.000318593999033 ], [ -75.228365493454206, 40.000322084800096 ], [ -75.228329076121668, 40.000263911232643 ], [ -75.227620131204617, 39.99937794759952 ], [ -75.227036029343253, 39.998645516521435 ], [ -75.226855661000556, 39.998179340163425 ], [ -75.22687191979405, 39.997741812978916 ], [ -75.226964957582794, 39.997444103385241 ], [ -75.226495340522362, 39.997424670060205 ], [ -75.226398661139257, 39.997222727021885 ], [ -75.226127842744603, 39.99667461788971 ], [ -75.225968929789431, 39.996269728871923 ], [ -75.225938346277118, 39.995873445348138 ], [ -75.226129569167512, 39.995742288559171 ], [ -75.229079718537164, 39.994357951441273 ], [ -75.230575730106267, 39.993658253340293 ], [ -75.233694439803216, 39.992189915012098 ], [ -75.236118268560645, 39.991032736946515 ], [ -75.237787071415497, 39.990695042946754 ], [ -75.238713189001004, 39.990285339603041 ], [ -75.239847239439115, 39.989290953674747 ], [ -75.242397619950353, 39.988064753976296 ], [ -75.245443594282165, 39.986633145602191 ], [ -75.24547356599416, 39.986619058613414 ], [ -75.246694458917887, 39.986072400857189 ], [ -75.245726189393821, 39.984259723937477 ], [ -75.243273932210229, 39.983394011829105 ], [ -75.239023660404783, 39.981930663166025 ], [ -75.239029730517146, 39.981920819303113 ], [ -75.238293166410472, 39.981674305746765 ], [ -75.236151832873574, 39.980916539717278 ], [ -75.23405173724619, 39.980316539593076 ], [ -75.232399968213755, 39.979725520420892 ], [ -75.230908784874444, 39.979062735125197 ], [ -75.230127782668589, 39.978697644007461 ], [ -75.228406850970799, 39.97796865515118 ], [ -75.227193110099535, 39.977403171336761 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WYNNEFIELD_HEIGHTS", "LISTNAME": "Wynnefield Heights", "MAPNAME": "Wynnefield Heights", "Shape_Leng": 19368.978537200001, "Shape_Area": 16384674.914499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.201024422429143, 40.004124085149961 ], [ -75.204152714803641, 40.000389805671034 ], [ -75.205576849541927, 40.000880998577195 ], [ -75.207170840569702, 39.999038245584536 ], [ -75.207620002016895, 39.998049722990253 ], [ -75.210241887420992, 39.99847229187943 ], [ -75.209955548057252, 39.99786370277041 ], [ -75.212904037765441, 39.996992286346213 ], [ -75.215268932053959, 39.996293278336182 ], [ -75.216213775449376, 39.995822831146008 ], [ -75.217670501746369, 39.994352649418772 ], [ -75.217819685741702, 39.994202082063723 ], [ -75.217963217747993, 39.994221098185683 ], [ -75.218910074819178, 39.997566430310222 ], [ -75.219982759598381, 40.001544148881713 ], [ -75.220508391011904, 40.003338709808467 ], [ -75.220668066281874, 40.003839350387516 ], [ -75.220694008548151, 40.003931334399972 ], [ -75.220663138821706, 40.003945561166049 ], [ -75.219229145854712, 40.004643554831333 ], [ -75.218730148134526, 40.004889553332276 ], [ -75.218359149645281, 40.005071551291216 ], [ -75.216015159447409, 40.006135541532693 ], [ -75.215803160140908, 40.006230540623122 ], [ -75.213743169133224, 40.007161532450979 ], [ -75.211546178447733, 40.008214523176733 ], [ -75.210768181779699, 40.008584519946425 ], [ -75.210493183454318, 40.008721518044041 ], [ -75.210363183881313, 40.008790517492507 ], [ -75.209844185028672, 40.009000516166907 ], [ -75.209638186951992, 40.009098514847956 ], [ -75.208509191349037, 40.009645510330394 ], [ -75.208152532079467, 40.00977350150022 ], [ -75.208052193528999, 40.009809508251372 ], [ -75.207991192788654, 40.00984350821404 ], [ -75.207983414694013, 40.009847396784345 ], [ -75.207049799437414, 40.009424421811154 ], [ -75.204420272900194, 40.008645023573997 ], [ -75.203865043649643, 40.008062153675517 ], [ -75.207636996014969, 40.00640239234837 ], [ -75.205509703849344, 40.005728429572812 ], [ -75.202014996172693, 40.004637390515775 ], [ -75.202121520814501, 40.004544662420408 ], [ -75.201024422429143, 40.004124085149961 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "CALLOWHILL", "LISTNAME": "Callowhill", "MAPNAME": "Callowhill", "Shape_Leng": 10543.653354, "Shape_Area": 5835330.9290300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.148908227577579, 39.957548180166924 ], [ -75.148940184223918, 39.957549096707233 ], [ -75.149029048569133, 39.957551645981198 ], [ -75.149293221777725, 39.957557635615878 ], [ -75.150449885752877, 39.957412639544195 ], [ -75.150975968878583, 39.957290607013391 ], [ -75.151101691306906, 39.957141817832294 ], [ -75.151184065468385, 39.956958424978708 ], [ -75.151248015361162, 39.95697654982186 ], [ -75.15183385022398, 39.956989818679247 ], [ -75.152133486411543, 39.956961641072191 ], [ -75.152310763317445, 39.956965655795855 ], [ -75.152341034359452, 39.95696634130541 ], [ -75.15235396889274, 39.95696663421478 ], [ -75.153844708326034, 39.957020356758427 ], [ -75.153913287546374, 39.957028575477345 ], [ -75.15395210622691, 39.957033227467718 ], [ -75.155470918727204, 39.957215231867394 ], [ -75.155838957324676, 39.957260416225367 ], [ -75.157055882569509, 39.957409612707437 ], [ -75.157342524204608, 39.957443436618938 ], [ -75.157676330272636, 39.957487819684545 ], [ -75.157837118468294, 39.957507274140752 ], [ -75.15786970594435, 39.957511296535202 ], [ -75.158173465352803, 39.957545531294869 ], [ -75.158643043099701, 39.95760248485459 ], [ -75.160226922092022, 39.95780210578166 ], [ -75.160740451628001, 39.957869925284797 ], [ -75.161187482862431, 39.957930758169574 ], [ -75.161680086859207, 39.957994087154908 ], [ -75.162424592759777, 39.958095413191451 ], [ -75.162324466229308, 39.958561606351928 ], [ -75.162264728440647, 39.958831831712459 ], [ -75.162206759832969, 39.959093130065718 ], [ -75.162136463012246, 39.959574681664236 ], [ -75.161991497680205, 39.960361832465317 ], [ -75.161902156532463, 39.960898136949368 ], [ -75.161648814085524, 39.960991217259632 ], [ -75.161564912714283, 39.961388320410954 ], [ -75.161471545817776, 39.961790344815824 ], [ -75.161387104231252, 39.962167771040122 ], [ -75.160314257770111, 39.962037929402626 ], [ -75.159304396633956, 39.961915700867806 ], [ -75.157738159947257, 39.961732760949516 ], [ -75.156139644777866, 39.961653527123673 ], [ -75.154540489259062, 39.961581934927246 ], [ -75.153008965480439, 39.961509224099274 ], [ -75.153001641908219, 39.961508877201155 ], [ -75.152947017861862, 39.96150616652389 ], [ -75.152489968718484, 39.961482537544832 ], [ -75.151790780352684, 39.961446373231581 ], [ -75.151354681920566, 39.96143023224888 ], [ -75.150424797041111, 39.961389219972318 ], [ -75.149467954894718, 39.961344155259532 ], [ -75.148937724342389, 39.961316702361245 ], [ -75.148210569208601, 39.961279050399106 ], [ -75.148908227577579, 39.957548180166924 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WEST_POPLAR", "LISTNAME": "West Poplar", "MAPNAME": "West Poplar", "Shape_Leng": 11636.958123599999, "Shape_Area": 8130260.6354200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.150973038684384, 39.970519360996178 ], [ -75.151252813855152, 39.969216260022307 ], [ -75.152025611022324, 39.965775332486224 ], [ -75.15224318328346, 39.96378904671144 ], [ -75.152489968718555, 39.961482537544789 ], [ -75.152947017861919, 39.961506166523861 ], [ -75.153001641908176, 39.961508877201155 ], [ -75.153008965480382, 39.961509224099238 ], [ -75.154540489259062, 39.961581934927246 ], [ -75.156139644777866, 39.961653527123637 ], [ -75.157738159947257, 39.961732760949459 ], [ -75.159304396634013, 39.961915700867813 ], [ -75.160314257770153, 39.962037929402626 ], [ -75.161387104231309, 39.962167771040122 ], [ -75.161377345362041, 39.96221138789133 ], [ -75.161372660098877, 39.96223281731649 ], [ -75.161309084460598, 39.962523526766596 ], [ -75.161232021798739, 39.962864531017487 ], [ -75.161172994305034, 39.963127395376276 ], [ -75.161109040760735, 39.963411170117737 ], [ -75.161030588517548, 39.963759271737494 ], [ -75.160975009946142, 39.963999101028307 ], [ -75.160879913103898, 39.964427832654401 ], [ -75.160718276044307, 39.965135338357811 ], [ -75.160600033163874, 39.965710716440356 ], [ -75.160482117360672, 39.966282837441447 ], [ -75.160412749882624, 39.966616630263729 ], [ -75.16033250032423, 39.967004804139158 ], [ -75.160323317375116, 39.967049219609386 ], [ -75.160207228490009, 39.96761074066103 ], [ -75.160150105289688, 39.967903576627691 ], [ -75.160101485230186, 39.968166320519977 ], [ -75.16000744920207, 39.968570433711548 ], [ -75.159904556607344, 39.968996140647512 ], [ -75.159631246523347, 39.970184719440475 ], [ -75.159346746081283, 39.971437177509394 ], [ -75.15934368567963, 39.971450605608965 ], [ -75.159342252522094, 39.971456893867895 ], [ -75.152572893816213, 39.970573121904842 ], [ -75.150973038684384, 39.970519360996178 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "EAST_POPLAR", "LISTNAME": "East Poplar", "MAPNAME": "East Poplar", "Shape_Leng": 9108.8731350599992, "Shape_Area": 4139158.7072299998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.150430935831267, 39.970501138922913 ], [ -75.146545532330634, 39.970383126593823 ], [ -75.146762658236881, 39.969313335614117 ], [ -75.147161154978022, 39.967114142015589 ], [ -75.147186219786292, 39.966998695534166 ], [ -75.147421834622762, 39.965913462500474 ], [ -75.147676623257993, 39.964512671495925 ], [ -75.147864076432498, 39.963501656936309 ], [ -75.148210569208601, 39.961279050399106 ], [ -75.148937724342389, 39.961316702361245 ], [ -75.149467954894718, 39.961344155259532 ], [ -75.150424797041111, 39.961389219972318 ], [ -75.151354681920566, 39.96143023224888 ], [ -75.151790780352684, 39.961446373231581 ], [ -75.152489968718484, 39.961482537544832 ], [ -75.152243183283289, 39.963789046711476 ], [ -75.152025611022225, 39.965775332486245 ], [ -75.151252813855095, 39.969216260022336 ], [ -75.150973038684285, 39.970519360996164 ], [ -75.150430935831267, 39.970501138922913 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "STRAWBERRY_MANSION", "LISTNAME": "Strawberry Mansion", "MAPNAME": "Strawberry Mansion", "Shape_Leng": 28308.168132399998, "Shape_Area": 25752961.679699998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.162848108513543, 39.993482625156332 ], [ -75.163276235045473, 39.993277270214364 ], [ -75.163284425858492, 39.993284924224263 ], [ -75.164006472203539, 39.992907328041902 ], [ -75.165043141753358, 39.992380698604919 ], [ -75.166816995574848, 39.991483871506432 ], [ -75.167916557473674, 39.990950064908589 ], [ -75.168679927070471, 39.990560259493151 ], [ -75.169334498363185, 39.990214884124924 ], [ -75.170099979060993, 39.989719217610883 ], [ -75.170344989072177, 39.989560565528102 ], [ -75.171661525681685, 39.989663133416954 ], [ -75.173652956840584, 39.98864961789463 ], [ -75.173810663026813, 39.988452458203476 ], [ -75.174198482225492, 39.988151013248952 ], [ -75.174786085324172, 39.987694270688699 ], [ -75.174990198114656, 39.987518786688568 ], [ -75.175409275357666, 39.987158484286191 ], [ -75.176087791649934, 39.986801669723441 ], [ -75.17772354621475, 39.985985590880546 ], [ -75.178798690917503, 39.985278625558394 ], [ -75.17924354822172, 39.9849864090911 ], [ -75.180311481707889, 39.984268369198361 ], [ -75.181536203443613, 39.983464052810227 ], [ -75.181794741717724, 39.983292824517982 ], [ -75.18227233364675, 39.982976512992209 ], [ -75.184205508368933, 39.981668228415309 ], [ -75.185496859826898, 39.980807428544125 ], [ -75.1873168604169, 39.979583474888358 ], [ -75.189227614518416, 39.978841985099017 ], [ -75.188818251923209, 39.981547649402991 ], [ -75.187317742083295, 39.988578894813486 ], [ -75.187271727656437, 39.988781177598355 ], [ -75.186640043593911, 39.991706354445164 ], [ -75.186574841133179, 39.991920266611437 ], [ -75.186396673505683, 39.992785653839412 ], [ -75.187501209579437, 39.994833981236887 ], [ -75.187531410285814, 39.994885247032201 ], [ -75.187742184322204, 39.995544723899307 ], [ -75.187823992168148, 39.995789681330479 ], [ -75.187890124170281, 39.996544708736373 ], [ -75.19005744327481, 39.996902368789378 ], [ -75.190857682633805, 39.998004947590246 ], [ -75.190948225370491, 39.998255375323026 ], [ -75.190749099867887, 39.999204148560594 ], [ -75.190734855048603, 39.999638775904764 ], [ -75.190573378748084, 39.999645508006559 ], [ -75.189749847281519, 39.999829746729311 ], [ -75.188696085212101, 40.000162133091301 ], [ -75.187290727716118, 40.000230862019556 ], [ -75.187130107403249, 40.000271762880345 ], [ -75.187749470579476, 39.998516336423101 ], [ -75.18774947167104, 39.998116339283577 ], [ -75.186649420728969, 39.998016337039772 ], [ -75.185149352452882, 39.997816335473907 ], [ -75.18453811677081, 39.997768970760923 ], [ -75.182451402315735, 39.997506121624909 ], [ -75.181846311613484, 39.997429895428425 ], [ -75.180354821585141, 39.99724146089271 ], [ -75.17928334060052, 39.997092806893363 ], [ -75.178671137514343, 39.99701419343053 ], [ -75.178067362495511, 39.996936966580712 ], [ -75.177620712226485, 39.996879774610896 ], [ -75.177051773902136, 39.996807058731619 ], [ -75.175608570170979, 39.996649406574122 ], [ -75.173994583233366, 39.996448182113227 ], [ -75.172417003887645, 39.996250702323607 ], [ -75.171905641211282, 39.996187702522199 ], [ -75.171466573278622, 39.996131912725332 ], [ -75.170829625095223, 39.996052208282713 ], [ -75.170286859491114, 39.995984411230879 ], [ -75.16983292004511, 39.995927408685674 ], [ -75.169261382031891, 39.995855982069607 ], [ -75.168691625460156, 39.995784933231356 ], [ -75.168200719243458, 39.995723268863294 ], [ -75.167605260940803, 39.99564917936064 ], [ -75.167582341373446, 39.995646334545143 ], [ -75.166070229434709, 39.995458595780796 ], [ -75.165045871178876, 39.995328381534904 ], [ -75.164187434156531, 39.995210019964262 ], [ -75.159805111702553, 39.994634990218763 ], [ -75.159917223288716, 39.994594143748209 ], [ -75.161081492307346, 39.994133764318555 ], [ -75.162848108513543, 39.993482625156332 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "EAST_PARK", "LISTNAME": "East Park", "MAPNAME": "East Park", "Shape_Leng": 34259.99785610001, "Shape_Area": 33003060.974199999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.191949660696636, 39.99971633806507 ], [ -75.190812434451189, 39.999635541164309 ], [ -75.190734855048603, 39.999638775904764 ], [ -75.190749099867674, 39.999204148560594 ], [ -75.190948225370491, 39.998255375323133 ], [ -75.190857682633805, 39.998004947590246 ], [ -75.19005744327481, 39.996902368789378 ], [ -75.187890124170281, 39.996544708736373 ], [ -75.187823992168362, 39.995789681330585 ], [ -75.187742184322204, 39.995544723899307 ], [ -75.1875314102858, 39.994885247032308 ], [ -75.187501209579437, 39.994833981236887 ], [ -75.186396673505683, 39.992785653839412 ], [ -75.186574841133179, 39.991920266611523 ], [ -75.186640043593698, 39.991706354445149 ], [ -75.187271727656437, 39.988781177598355 ], [ -75.187317742083295, 39.988578894813557 ], [ -75.18881825192301, 39.981547649402991 ], [ -75.189227614518416, 39.978841985099017 ], [ -75.189760465063216, 39.978250138830873 ], [ -75.189849621959354, 39.977916487656188 ], [ -75.189749618901345, 39.977316491906592 ], [ -75.189692781061069, 39.977138552569912 ], [ -75.188944580645384, 39.977061492189698 ], [ -75.188749571206401, 39.976916493182344 ], [ -75.188149543226885, 39.976616493967768 ], [ -75.187387510222976, 39.975360502818873 ], [ -75.187265742825403, 39.975056983809907 ], [ -75.187249504349722, 39.97501650468292 ], [ -75.187032494195023, 39.974551507752089 ], [ -75.186548053006831, 39.973523311442655 ], [ -75.186158108530947, 39.973475087628316 ], [ -75.185410212694478, 39.973383700270155 ], [ -75.185539644597227, 39.972757690045185 ], [ -75.185549425844499, 39.972516520650927 ], [ -75.185456697159324, 39.972392104717009 ], [ -75.185283457239109, 39.97223976070083 ], [ -75.184220936000713, 39.971307963524922 ], [ -75.183548330788327, 39.970752828744551 ], [ -75.183135114030819, 39.970401455664998 ], [ -75.182828152324589, 39.970127925230457 ], [ -75.182141016071597, 39.969673254178161 ], [ -75.181597836248699, 39.969183927697991 ], [ -75.180149170754618, 39.967716551523196 ], [ -75.179857111699178, 39.967424508125966 ], [ -75.179849156052043, 39.967416553290001 ], [ -75.17904911775058, 39.966716557241924 ], [ -75.178791205311796, 39.966557186643406 ], [ -75.178149073488839, 39.965916562850758 ], [ -75.177526346656563, 39.965416016050064 ], [ -75.176784153278206, 39.964755361613555 ], [ -75.176278054681688, 39.96424584372911 ], [ -75.176346025523188, 39.964256988690856 ], [ -75.177260300545214, 39.964406897102762 ], [ -75.177768326757658, 39.964458254132332 ], [ -75.178949117227972, 39.964116576931865 ], [ -75.179886333195967, 39.964125501096404 ], [ -75.180382228521964, 39.964078748620821 ], [ -75.181268363628789, 39.964222575094816 ], [ -75.181874825328606, 39.964376666910169 ], [ -75.18234457256689, 39.964453304787625 ], [ -75.183294366591696, 39.964334041089764 ], [ -75.183556009324562, 39.96423244216971 ], [ -75.183794129304772, 39.964469203689696 ], [ -75.184949411335737, 39.966116566985782 ], [ -75.188249568556927, 39.968416552940731 ], [ -75.19057767866498, 39.97005754402047 ], [ -75.193146397222691, 39.975299592408128 ], [ -75.193983115444723, 39.976245749216751 ], [ -75.194483850308387, 39.976580503119337 ], [ -75.198950058948299, 39.978716495152106 ], [ -75.201155750534369, 39.979997174577704 ], [ -75.202050199890024, 39.980516488461021 ], [ -75.204550308755074, 39.983216475691478 ], [ -75.204310290735549, 39.984843464109112 ], [ -75.204072099198967, 39.9858448387523 ], [ -75.201150130043033, 39.987616440507971 ], [ -75.197794958284959, 39.991320409512547 ], [ -75.194016406394596, 39.995321767921943 ], [ -75.191949660696636, 39.99971633806507 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WYNNEFIELD", "LISTNAME": "Wynnefield", "MAPNAME": "Wynnefield", "Shape_Leng": 29540.613117699999, "Shape_Area": 31690782.229600001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.217963217747993, 39.994221098185683 ], [ -75.217819685741702, 39.994202082063723 ], [ -75.217670501746369, 39.994352649418772 ], [ -75.217710467130217, 39.994036918750723 ], [ -75.218131902740808, 39.993579053705894 ], [ -75.218554088614795, 39.993196683055757 ], [ -75.218691823665154, 39.992638671535587 ], [ -75.219371426970056, 39.991480325787371 ], [ -75.220079226307035, 39.990307235120248 ], [ -75.220763926763496, 39.989681765753616 ], [ -75.222468801555451, 39.988840915016965 ], [ -75.224954443607032, 39.987476597738457 ], [ -75.225666973776995, 39.986604679669391 ], [ -75.226048896963533, 39.985670304261404 ], [ -75.226842621669107, 39.983236696296615 ], [ -75.226855816478249, 39.982689368422484 ], [ -75.226153220252101, 39.982118748314889 ], [ -75.225131461961865, 39.981539255356537 ], [ -75.224182984731328, 39.981581459727714 ], [ -75.224103421892792, 39.981512176911302 ], [ -75.224151254962081, 39.981416518648246 ], [ -75.224360304775558, 39.980940639329582 ], [ -75.224746298368075, 39.980422514684918 ], [ -75.225034923686323, 39.979892842651232 ], [ -75.225396476646992, 39.979374179123006 ], [ -75.226136671364486, 39.978205567698566 ], [ -75.226351382027701, 39.978016539983628 ], [ -75.226551393608133, 39.977816541560372 ], [ -75.226451389880395, 39.977716541823341 ], [ -75.226807217120808, 39.977223405116121 ], [ -75.227193110099535, 39.977403171336761 ], [ -75.228406850970799, 39.97796865515118 ], [ -75.230127782668589, 39.978697644007461 ], [ -75.230908784874444, 39.979062735125197 ], [ -75.232399968213755, 39.979725520420892 ], [ -75.23405173724619, 39.980316539593076 ], [ -75.236151832873574, 39.980916539717278 ], [ -75.238293166410472, 39.981674305746765 ], [ -75.239029730517146, 39.981920819303113 ], [ -75.239023660404783, 39.981930663166025 ], [ -75.243273932210229, 39.983394011829105 ], [ -75.245726189393821, 39.984259723937477 ], [ -75.246694458917887, 39.986072400857189 ], [ -75.24547356599416, 39.986619058613414 ], [ -75.245443594282165, 39.986633145602191 ], [ -75.242397619950353, 39.988064753976296 ], [ -75.239847239439115, 39.989290953674747 ], [ -75.238713189001004, 39.990285339603041 ], [ -75.237787071415497, 39.990695042946754 ], [ -75.236118268560645, 39.991032736946515 ], [ -75.233694439803216, 39.992189915012098 ], [ -75.230575730106267, 39.993658253340293 ], [ -75.229079718537164, 39.994357951441273 ], [ -75.226129569167512, 39.995742288559171 ], [ -75.225938346277118, 39.995873445348138 ], [ -75.225968929789431, 39.996269728871923 ], [ -75.226127842744603, 39.99667461788971 ], [ -75.226398661139257, 39.997222727021885 ], [ -75.226495340522362, 39.997424670060205 ], [ -75.226964957582794, 39.997444103385241 ], [ -75.22687191979405, 39.997741812978916 ], [ -75.226855661000556, 39.998179340163425 ], [ -75.227036029343253, 39.998645516521435 ], [ -75.227620131204617, 39.99937794759952 ], [ -75.228329076121668, 40.000263911232643 ], [ -75.228365493454206, 40.000322084800096 ], [ -75.227758108345782, 40.000600591238118 ], [ -75.227460109233874, 40.000747589928977 ], [ -75.227049110697877, 40.000939588348892 ], [ -75.226400113790106, 40.001256585395886 ], [ -75.223616126480962, 40.002584573917268 ], [ -75.220694008548151, 40.003931334399972 ], [ -75.220668066281874, 40.003839350387516 ], [ -75.220508391011904, 40.003338709808467 ], [ -75.219982759598381, 40.001544148881713 ], [ -75.218910074819178, 39.997566430310222 ], [ -75.217963217747993, 39.994221098185683 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WEST_PARK", "LISTNAME": "West Park", "MAPNAME": "West Park", "Shape_Leng": 46219.2623016, "Shape_Area": 62772662.059799999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.191549583709943, 40.003716246348233 ], [ -75.191949660696807, 39.999716338064999 ], [ -75.194016406394638, 39.995321767921901 ], [ -75.197794958285172, 39.991320409512554 ], [ -75.201150130042976, 39.987616440507971 ], [ -75.204072099198967, 39.985844838752264 ], [ -75.204310290735862, 39.984843464109133 ], [ -75.204550308755188, 39.983216475691385 ], [ -75.202050199890124, 39.980516488460985 ], [ -75.201155750534312, 39.979997174577662 ], [ -75.198950058948398, 39.978716495152106 ], [ -75.194483850308444, 39.976580503119244 ], [ -75.193983115444837, 39.97624574921668 ], [ -75.193146397222691, 39.975299592408064 ], [ -75.193869329484286, 39.975213801693307 ], [ -75.194186759263644, 39.975136093707114 ], [ -75.194968026368329, 39.975058233233838 ], [ -75.195520943994637, 39.975017786059539 ], [ -75.195954780667989, 39.974966293643114 ], [ -75.19838859993466, 39.974717867718674 ], [ -75.198859850305013, 39.974670017469187 ], [ -75.19930726854956, 39.974621590450752 ], [ -75.199513399722008, 39.974599279513527 ], [ -75.201737765105875, 39.974358492390721 ], [ -75.203164986710135, 39.974220872057039 ], [ -75.203720306792491, 39.974167532099536 ], [ -75.204340196990131, 39.974332464493557 ], [ -75.206647266754331, 39.975229331063325 ], [ -75.206902151568613, 39.975323337349103 ], [ -75.207911610616804, 39.975677652584857 ], [ -75.208630301540154, 39.975948330171995 ], [ -75.209269352265082, 39.976189007720642 ], [ -75.210408792173155, 39.976618136059066 ], [ -75.211256891099353, 39.976907077007191 ], [ -75.213443884665196, 39.977721828680586 ], [ -75.216887280017616, 39.978962508680219 ], [ -75.219002269414389, 39.979754492215967 ], [ -75.221472890587734, 39.980679574481989 ], [ -75.222497454027248, 39.98106889738925 ], [ -75.223172708674099, 39.981318864984601 ], [ -75.224051248510847, 39.981616517123612 ], [ -75.224103421892792, 39.981512176911302 ], [ -75.224182984731328, 39.981581459727714 ], [ -75.225131461961865, 39.981539255356537 ], [ -75.226153220252101, 39.982118748314889 ], [ -75.226855816478249, 39.982689368422484 ], [ -75.226842621669107, 39.983236696296615 ], [ -75.226048896963533, 39.985670304261404 ], [ -75.225666973776995, 39.986604679669391 ], [ -75.224954443607032, 39.987476597738457 ], [ -75.222468801555451, 39.988840915016965 ], [ -75.220763926763496, 39.989681765753616 ], [ -75.220079226307035, 39.990307235120248 ], [ -75.219371426970056, 39.991480325787371 ], [ -75.218691823665154, 39.992638671535587 ], [ -75.218554088614795, 39.993196683055757 ], [ -75.218131902740808, 39.993579053705894 ], [ -75.217710467130217, 39.994036918750723 ], [ -75.217670501746369, 39.994352649418772 ], [ -75.216213775449376, 39.995822831146008 ], [ -75.215268932053959, 39.996293278336182 ], [ -75.212904037765441, 39.996992286346213 ], [ -75.209955548057252, 39.99786370277041 ], [ -75.210241887420992, 39.99847229187943 ], [ -75.207620002016895, 39.998049722990253 ], [ -75.207170840569702, 39.999038245584536 ], [ -75.205576849541927, 40.000880998577195 ], [ -75.204152714803641, 40.000389805671034 ], [ -75.201024422429143, 40.004124085149961 ], [ -75.202121520814501, 40.004544662420408 ], [ -75.202014996172693, 40.004637390515775 ], [ -75.205509703849344, 40.005728429572812 ], [ -75.207636996014969, 40.00640239234837 ], [ -75.203865043649643, 40.008062153675517 ], [ -75.204420272900194, 40.008645023573997 ], [ -75.207049799437414, 40.009424421811154 ], [ -75.207983414694013, 40.009847396784345 ], [ -75.207907194121816, 40.009885507915214 ], [ -75.207273195954699, 40.010190505359958 ], [ -75.207235196291848, 40.010221505008936 ], [ -75.207243197093959, 40.010228504599603 ], [ -75.207243197594892, 40.010247858090956 ], [ -75.207243197147307, 40.010282505135557 ], [ -75.207257196761333, 40.010411505057512 ], [ -75.207270198384506, 40.01075350449652 ], [ -75.207276199320006, 40.010816503787908 ], [ -75.207285199181058, 40.010916504195251 ], [ -75.207290200576281, 40.011106503420393 ], [ -75.207190200525403, 40.011189503217771 ], [ -75.206966202140151, 40.011373501825339 ], [ -75.206912202129288, 40.011417501565035 ], [ -75.206869203016353, 40.011449501293164 ], [ -75.206790203457004, 40.011513500777411 ], [ -75.206600393680787, 40.01166767526442 ], [ -75.205836593920523, 40.011267493864295 ], [ -75.203350019991262, 40.010116122215031 ], [ -75.197556646953984, 40.008182303278886 ], [ -75.196493434758565, 40.007838600551139 ], [ -75.196479476216382, 40.007836802492406 ], [ -75.193384257189678, 40.006833426601425 ], [ -75.192994369820653, 40.006636335143384 ], [ -75.192722620403302, 40.00646733481755 ], [ -75.192316898992686, 40.005853399715363 ], [ -75.191549583709943, 40.003716246348233 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "NORMANDY_VILLAGE", "LISTNAME": "Normandy Village", "MAPNAME": "Normandy Village", "Shape_Leng": 12444.221527399999, "Shape_Area": 8034864.1934299991 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.986649150483544, 40.09929833965866 ], [ -74.986861613053051, 40.099148373400737 ], [ -74.987811297252279, 40.098404212044329 ], [ -74.988451359962269, 40.097801459755168 ], [ -74.989961984543456, 40.096715980559736 ], [ -74.991264519676591, 40.095779982451646 ], [ -74.991299999741571, 40.095760341043885 ], [ -74.991804860413552, 40.096178139685577 ], [ -74.992309815921587, 40.096596007611396 ], [ -74.992862854750399, 40.097053659491529 ], [ -74.993534783098895, 40.097609681909027 ], [ -74.994112317731492, 40.09808758221557 ], [ -74.994639972891846, 40.098524200146095 ], [ -74.995428052086439, 40.099168397286668 ], [ -74.995860250338126, 40.099551146019266 ], [ -74.996319264633158, 40.099957634954919 ], [ -74.996781972268565, 40.100367387514375 ], [ -74.997363129969045, 40.100882025780066 ], [ -74.997801791528588, 40.101270470154127 ], [ -74.998168737782436, 40.101595404075468 ], [ -74.998503734951413, 40.102084850038104 ], [ -74.998775614983757, 40.102482071980624 ], [ -74.999355841955591, 40.10294619244798 ], [ -74.999751118554357, 40.103262367326131 ], [ -75.000130450810488, 40.103576476526996 ], [ -75.000443019900814, 40.103835299377302 ], [ -75.000900098149188, 40.104213777048194 ], [ -75.001326839092201, 40.104567128494658 ], [ -75.001546218251434, 40.104731974862005 ], [ -75.00179545577744, 40.104932501108422 ], [ -75.001814954352767, 40.104952976174829 ], [ -75.001809875678774, 40.104956479724677 ], [ -74.999181672584712, 40.106709357353701 ], [ -74.998205725904839, 40.107382737645288 ], [ -74.997129759950454, 40.108148724044717 ], [ -74.996437821166907, 40.107583217365232 ], [ -74.99481575630881, 40.106224792941049 ], [ -74.994405006587343, 40.106183281056559 ], [ -74.988495523397987, 40.100731551537429 ], [ -74.986936000655675, 40.099532858731109 ], [ -74.986649150483544, 40.09929833965866 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "STADIUM_DISTRICT", "LISTNAME": "Stadium District", "MAPNAME": "Stadium District", "Shape_Leng": 37632.285929199999, "Shape_Area": 70693515.676499993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.148847518695334, 39.908617061601355 ], [ -75.151098777842435, 39.895521968504553 ], [ -75.154123510598524, 39.895892814575134 ], [ -75.161890834873375, 39.896829963237622 ], [ -75.169573019280421, 39.897210257418848 ], [ -75.170707563471211, 39.897229722134647 ], [ -75.170963908420859, 39.896685269206976 ], [ -75.173429445249909, 39.897103440924596 ], [ -75.17539829174936, 39.897345292497185 ], [ -75.175026335391877, 39.898994489789544 ], [ -75.172303626177424, 39.912350561170754 ], [ -75.17215451173638, 39.91295650242165 ], [ -75.171935728213754, 39.913887600112822 ], [ -75.171878521899487, 39.914186545370143 ], [ -75.171761015003668, 39.914563608291687 ], [ -75.171264774834555, 39.916738542182031 ], [ -75.170670220543897, 39.916671931805482 ], [ -75.170170959536705, 39.916609258439848 ], [ -75.169295934765415, 39.916508175232501 ], [ -75.168727390539388, 39.916435875449679 ], [ -75.168415200052152, 39.916393529815849 ], [ -75.168223897922587, 39.916371389033841 ], [ -75.167690503279161, 39.916306674667382 ], [ -75.16754783994493, 39.916288189882422 ], [ -75.167152551213618, 39.91623871599171 ], [ -75.166933211461796, 39.916211068687694 ], [ -75.166649709724339, 39.916175332904096 ], [ -75.16629352998369, 39.916130435046121 ], [ -75.166093637402469, 39.916105237260815 ], [ -75.165564030104406, 39.916038474586983 ], [ -75.165229500324145, 39.915996302272205 ], [ -75.165090636608454, 39.915978795677049 ], [ -75.16454545578226, 39.915910065200741 ], [ -75.163962943919358, 39.915836624680836 ], [ -75.163849194850627, 39.915822283409064 ], [ -75.163519806195168, 39.915780754535646 ], [ -75.162946638264714, 39.915708487305018 ], [ -75.162801790096594, 39.915690223870392 ], [ -75.162562952959519, 39.915660108952046 ], [ -75.16241549533045, 39.915641515826451 ], [ -75.1619447717692, 39.915582159785863 ], [ -75.161484460876963, 39.915524115417774 ], [ -75.160872516868878, 39.915446948176651 ], [ -75.160507452618177, 39.915400910697215 ], [ -75.160445967977921, 39.915393156224646 ], [ -75.159880767178564, 39.915329277063691 ], [ -75.159362574903639, 39.915272549146771 ], [ -75.159218414334021, 39.915256767269391 ], [ -75.158848375546654, 39.915216256910078 ], [ -75.158631793665094, 39.915192545606232 ], [ -75.158282779853067, 39.915154335011145 ], [ -75.158267101674852, 39.915152618238011 ], [ -75.158122963758089, 39.915136837286902 ], [ -75.157753796700433, 39.915096418761493 ], [ -75.157516362629323, 39.915070422788979 ], [ -75.156716120001533, 39.914973559412445 ], [ -75.155851936919788, 39.914870945710419 ], [ -75.155003510871708, 39.914751672711148 ], [ -75.15322815330164, 39.914498600794651 ], [ -75.152570710983468, 39.914413198765054 ], [ -75.152406968874217, 39.914385835218624 ], [ -75.151657847225565, 39.914274733973421 ], [ -75.150067272659086, 39.914047424113399 ], [ -75.148360547149053, 39.913800187169031 ], [ -75.147942536422264, 39.913739629423418 ], [ -75.147825150732743, 39.913723588456506 ], [ -75.148747515367617, 39.909717051195955 ], [ -75.148847518695334, 39.908617061601355 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "NAVY_YARD", "LISTNAME": "Navy Yard", "MAPNAME": "Navy Yard", "Shape_Leng": 42694.549643899998, "Shape_Area": 80181568.732999995 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.173429445250079, 39.897103440924568 ], [ -75.170963908420745, 39.896685269206941 ], [ -75.170707563471211, 39.89722972213459 ], [ -75.169573019280634, 39.897210257418813 ], [ -75.161890834873333, 39.896829963237607 ], [ -75.154123510598623, 39.895892814575078 ], [ -75.146949138802114, 39.895013067425083 ], [ -75.141295958109325, 39.894231747147224 ], [ -75.135542874255748, 39.892822599745685 ], [ -75.136175602693044, 39.891790613221325 ], [ -75.137294603274228, 39.889967620512429 ], [ -75.138525602904238, 39.88889162455024 ], [ -75.139830599609454, 39.888318628263477 ], [ -75.140106599006273, 39.888193629077612 ], [ -75.1408215990825, 39.887536632044302 ], [ -75.14152059849205, 39.886892635089815 ], [ -75.143744596159607, 39.884999643349424 ], [ -75.145624592123482, 39.884503646555679 ], [ -75.147364587529097, 39.883922650760219 ], [ -75.148891583569181, 39.883728653120414 ], [ -75.150651577656532, 39.883505655943509 ], [ -75.156626559568096, 39.883028664714935 ], [ -75.160925345571556, 39.882768466112189 ], [ -75.162870541163414, 39.882650672639137 ], [ -75.164517535361853, 39.882623674897033 ], [ -75.168656522158273, 39.882504680232117 ], [ -75.169127521316483, 39.88249468131476 ], [ -75.172645510109817, 39.882422685802787 ], [ -75.174537503807642, 39.882361687512919 ], [ -75.176768496419683, 39.882289690434902 ], [ -75.178592491325404, 39.882246692658221 ], [ -75.180110486829847, 39.882198694969219 ], [ -75.181384482403743, 39.882124696582338 ], [ -75.181473117456207, 39.882116035224492 ], [ -75.182878477807833, 39.881978699106298 ], [ -75.183954474350131, 39.881886700572828 ], [ -75.184907471804536, 39.881736701484613 ], [ -75.184962471770817, 39.881727701689684 ], [ -75.185733470030513, 39.881608703384956 ], [ -75.186415467273008, 39.881441704272774 ], [ -75.187124465193477, 39.881286705525689 ], [ -75.187212465418725, 39.881268705540933 ], [ -75.187887464089911, 39.881096706486801 ], [ -75.188768461120446, 39.880833708464564 ], [ -75.18889446101295, 39.880788708208037 ], [ -75.189253460595125, 39.880661709152434 ], [ -75.189493460198747, 39.880575709192982 ], [ -75.190097457812001, 39.880349710936407 ], [ -75.190807457084745, 39.880028712427041 ], [ -75.191587455013348, 39.879617714033401 ], [ -75.192168453559461, 39.879300715274013 ], [ -75.192736453187067, 39.879007716523788 ], [ -75.193460450777167, 39.878550718394912 ], [ -75.193957613472762, 39.878240782003921 ], [ -75.195750193325296, 39.891817080375603 ], [ -75.1963417790802, 39.892177353545222 ], [ -75.197172143986336, 39.892683030804633 ], [ -75.195861354127672, 39.893647065125144 ], [ -75.193971825244944, 39.894992985386466 ], [ -75.191940006004771, 39.896092351033694 ], [ -75.190026528366559, 39.896803088097869 ], [ -75.186716588405318, 39.897451467070915 ], [ -75.182490730755163, 39.898105320433203 ], [ -75.178606630480658, 39.898788700083088 ], [ -75.176940408714188, 39.899015462514278 ], [ -75.175740230931794, 39.899010525850066 ], [ -75.175026335391934, 39.898994489789501 ], [ -75.175398291749516, 39.897345292497121 ], [ -75.173429445250079, 39.897103440924568 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "EAST_KENSINGTON", "LISTNAME": "East Kensington", "MAPNAME": "East Kensington", "Shape_Leng": 11570.514789299999, "Shape_Area": 7672347.1013000002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.120250448394927, 39.984757987795064 ], [ -75.121537558547843, 39.98406459579266 ], [ -75.124392298352959, 39.982677097139174 ], [ -75.127578975424242, 39.981385659162335 ], [ -75.128548073269599, 39.980520294509944 ], [ -75.13044782891059, 39.978591494680224 ], [ -75.133189022252239, 39.980137084240596 ], [ -75.133222827849593, 39.980141447555589 ], [ -75.132948134158596, 39.981593602568793 ], [ -75.13294458494623, 39.981612363797566 ], [ -75.132630722897375, 39.983149263499811 ], [ -75.132269063277263, 39.984759969711554 ], [ -75.131946858129112, 39.986316320002651 ], [ -75.131513034588707, 39.986532866842389 ], [ -75.13135341498311, 39.98662385264295 ], [ -75.130793171463125, 39.986930416424208 ], [ -75.130220183222519, 39.987239074341396 ], [ -75.130179934755233, 39.987260563944233 ], [ -75.129739099667873, 39.987552414837396 ], [ -75.128535336503816, 39.988174486013776 ], [ -75.127989283481654, 39.988486793072937 ], [ -75.127439060574332, 39.988818494189509 ], [ -75.126948632046719, 39.98906481345152 ], [ -75.126454038297211, 39.989330527319986 ], [ -75.125997400343309, 39.989578001690589 ], [ -75.125490140157012, 39.989839188034644 ], [ -75.124374055205521, 39.988824732034921 ], [ -75.123386356079195, 39.987918723834341 ], [ -75.122912893120215, 39.987465145945585 ], [ -75.122416168467481, 39.987003977413544 ], [ -75.122257056602848, 39.987062809399596 ], [ -75.121509131316515, 39.986168173084089 ], [ -75.121211038766404, 39.985823260293103 ], [ -75.120905026968714, 39.985482689272978 ], [ -75.120250448394927, 39.984757987795064 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "ELMWOOD", "LISTNAME": "Elmwood", "MAPNAME": "Elmwood", "Shape_Leng": 23215.724520600001, "Shape_Area": 21901439.620099999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.217690771948881, 39.927316746139631 ], [ -75.226273262623366, 39.914595506918424 ], [ -75.227074547322331, 39.913514227130875 ], [ -75.227718719631767, 39.91293946602967 ], [ -75.228391381983329, 39.91247026908399 ], [ -75.22917474217877, 39.911900525015511 ], [ -75.229884906330966, 39.911415187614516 ], [ -75.23035723464038, 39.911061543191991 ], [ -75.230422923613332, 39.911235064606274 ], [ -75.231049026277077, 39.911786299356734 ], [ -75.231612249502447, 39.912284371640837 ], [ -75.23218419761136, 39.912785696893913 ], [ -75.232769545471399, 39.913267294125276 ], [ -75.233380496809829, 39.913853145789695 ], [ -75.233685338682108, 39.914081855094906 ], [ -75.236208147636887, 39.913754555053551 ], [ -75.237617277457304, 39.914955133408824 ], [ -75.239607316769749, 39.913546701323703 ], [ -75.24079007874677, 39.913431425618782 ], [ -75.243077829576535, 39.913178970261782 ], [ -75.243212935421923, 39.9130971601395 ], [ -75.243266121559117, 39.913070722111719 ], [ -75.243873102564066, 39.914094683636755 ], [ -75.244683563780939, 39.91510711920386 ], [ -75.244874954012914, 39.915469478282596 ], [ -75.243041592272434, 39.91652058737148 ], [ -75.242479364664959, 39.916909302071645 ], [ -75.24108113337833, 39.917865398454147 ], [ -75.239665779717839, 39.918804028059334 ], [ -75.239690612732275, 39.919121129540883 ], [ -75.236656119480671, 39.92125333818079 ], [ -75.234112682897489, 39.922971937418666 ], [ -75.229995153398491, 39.925928826949473 ], [ -75.228847359620843, 39.926720224028415 ], [ -75.225294392302175, 39.929169782995388 ], [ -75.224640775753358, 39.92852639002848 ], [ -75.223222985510162, 39.927179294703642 ], [ -75.22236659471352, 39.926417344813352 ], [ -75.22090405463257, 39.925734903678837 ], [ -75.219389008084335, 39.927993674962636 ], [ -75.217690771948881, 39.927316746139631 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "GIRARD_ESTATES", "LISTNAME": "Girard Estates", "MAPNAME": "Girard Estates", "Shape_Leng": 17375.9724498, "Shape_Area": 17926205.970199998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.186943350870905, 39.922325482733342 ], [ -75.183433787866605, 39.922942018764509 ], [ -75.177981680177695, 39.923954489590024 ], [ -75.176301440617777, 39.924252648321591 ], [ -75.176637663366947, 39.92271044446364 ], [ -75.170178223126143, 39.921887676480488 ], [ -75.170150588566415, 39.921884165123451 ], [ -75.170155118219043, 39.921865024116464 ], [ -75.170415248101662, 39.920635438174287 ], [ -75.170687346945186, 39.919321123164188 ], [ -75.170953067523897, 39.918132698771181 ], [ -75.171132009255743, 39.917332360372797 ], [ -75.171264774834768, 39.916738542181946 ], [ -75.171761015003668, 39.914563608291687 ], [ -75.171878521899487, 39.914186545370143 ], [ -75.171935728213754, 39.913887600112822 ], [ -75.17215451173638, 39.912956502421572 ], [ -75.172303626177424, 39.912350561170754 ], [ -75.172674989718374, 39.912397795830067 ], [ -75.173346578998036, 39.912491662737743 ], [ -75.173954901716229, 39.912579952166759 ], [ -75.174600567179127, 39.912664153229301 ], [ -75.175198106912845, 39.912742073592256 ], [ -75.175797101030824, 39.912820181147524 ], [ -75.176445465279471, 39.912904722452119 ], [ -75.177035060490738, 39.91298159794453 ], [ -75.177635707507477, 39.913059910403305 ], [ -75.178443274859291, 39.913163928862623 ], [ -75.179166431807218, 39.913180145460998 ], [ -75.179417741548804, 39.913185779982662 ], [ -75.181017173291593, 39.913241389493102 ], [ -75.181934176234307, 39.913289599664047 ], [ -75.183725620031183, 39.913516409577561 ], [ -75.186323139565303, 39.91395302584715 ], [ -75.188040409140115, 39.914158766996003 ], [ -75.18882501450156, 39.914301727594392 ], [ -75.190109806408259, 39.914535812606765 ], [ -75.188933741212395, 39.921912064194352 ], [ -75.187333261196102, 39.92222843714417 ], [ -75.186953281204723, 39.922285418849839 ], [ -75.186943350870905, 39.922325482733342 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "EASTWICK", "LISTNAME": "Eastwick", "MAPNAME": "Eastwick", "Shape_Leng": 43668.90528430001, "Shape_Area": 74132096.263099998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.240975558449577, 39.887724187976474 ], [ -75.241926732350109, 39.886449823050029 ], [ -75.242975826546996, 39.884243269085736 ], [ -75.244058312105636, 39.882038253439845 ], [ -75.245405792537838, 39.880596417926775 ], [ -75.248169273945564, 39.878962882954198 ], [ -75.249956684199631, 39.878061660899711 ], [ -75.251736504926697, 39.877365915984768 ], [ -75.257585117709652, 39.876262638443229 ], [ -75.257717277085035, 39.876270764463563 ], [ -75.257850277252956, 39.876278763555497 ], [ -75.259014278628754, 39.876349760833499 ], [ -75.259271278994021, 39.87636476016111 ], [ -75.259721278627893, 39.876392758216589 ], [ -75.259852278313502, 39.876400758356979 ], [ -75.259897279057085, 39.87640375795948 ], [ -75.261243280253225, 39.8764857541995 ], [ -75.261507280269356, 39.876500753636712 ], [ -75.261649280473065, 39.876509753714615 ], [ -75.262218280977876, 39.876543752144066 ], [ -75.262474281232301, 39.87655975057551 ], [ -75.262526280979571, 39.876562750592484 ], [ -75.26253728076793, 39.87657975040927 ], [ -75.262557280871221, 39.876616751077165 ], [ -75.262653281105756, 39.87678774998593 ], [ -75.263465278865368, 39.878227747086143 ], [ -75.263326277350146, 39.879713745681286 ], [ -75.264926275931572, 39.881113739959289 ], [ -75.264755276123211, 39.881492740614192 ], [ -75.264431274368519, 39.882168740859555 ], [ -75.263212272739011, 39.882180743488057 ], [ -75.263165273168553, 39.882180743634976 ], [ -75.262300272637162, 39.882334746127775 ], [ -75.262206271675083, 39.88241574618835 ], [ -75.26195527100387, 39.882629746718244 ], [ -75.261945270959174, 39.882635747350712 ], [ -75.26186927129271, 39.882816746598067 ], [ -75.261930862845844, 39.882989393812139 ], [ -75.26193527026598, 39.883001746522631 ], [ -75.26238527076147, 39.883447745348455 ], [ -75.262775270796055, 39.883597743549885 ], [ -75.264101270720431, 39.884107739662561 ], [ -75.264237733116971, 39.884203486522424 ], [ -75.26439486475563, 39.884313735944389 ], [ -75.264406271073696, 39.884321738998032 ], [ -75.264408976033337, 39.884329039789769 ], [ -75.264489270927896, 39.884545738463075 ], [ -75.26449827143442, 39.88456273794548 ], [ -75.264600270776327, 39.884738737505046 ], [ -75.264316108649439, 39.88496222781535 ], [ -75.264230269385635, 39.885029738591712 ], [ -75.263226268683965, 39.885404741176281 ], [ -75.262842267681279, 39.885683742138802 ], [ -75.262757266928958, 39.885932741500866 ], [ -75.262777464553906, 39.885983608043183 ], [ -75.262838267335965, 39.886136741079234 ], [ -75.262958267471589, 39.886182740977148 ], [ -75.263805268343091, 39.88616773916997 ], [ -75.264053201714177, 39.886104211101888 ], [ -75.264086268440138, 39.886095738204112 ], [ -75.26438326886101, 39.886163737393552 ], [ -75.264547268449292, 39.886227736425816 ], [ -75.26471726800365, 39.886357736448943 ], [ -75.264815269007144, 39.886432735844288 ], [ -75.264867268672063, 39.88652473589481 ], [ -75.26494926832855, 39.88665673513092 ], [ -75.264999268550696, 39.886735734676563 ], [ -75.265054268260982, 39.886820735037674 ], [ -75.265110267723912, 39.886944734622872 ], [ -75.265121267857765, 39.886968734814516 ], [ -75.265151267670717, 39.887143734184832 ], [ -75.265145267932155, 39.887318734279823 ], [ -75.265111267575818, 39.887525734057199 ], [ -75.265082266636412, 39.887579733960607 ], [ -75.26500826722345, 39.88770773390592 ], [ -75.264915267015482, 39.887874734621072 ], [ -75.264876266959206, 39.887928733928689 ], [ -75.264741266433603, 39.888069734130347 ], [ -75.264611265320113, 39.88820673498946 ], [ -75.264461265269134, 39.888321735129708 ], [ -75.264274264977516, 39.888402735845069 ], [ -75.264010265141323, 39.888458736148849 ], [ -75.26373826390531, 39.888474736873704 ], [ -75.263388264682717, 39.888450737650459 ], [ -75.263008155197141, 39.888405125290205 ], [ -75.262988263374922, 39.888402738552323 ], [ -75.262690262956298, 39.888344739514295 ], [ -75.262630083882868, 39.888363055322323 ], [ -75.262483263610477, 39.888407740431525 ], [ -75.262304263339288, 39.888538740707794 ], [ -75.262210262656978, 39.888693740856361 ], [ -75.262143261886905, 39.888906740578904 ], [ -75.262106261976086, 39.889142740427559 ], [ -75.262090261213757, 39.889356740743665 ], [ -75.262095260496835, 39.889665740172397 ], [ -75.262109260493006, 39.889897740155973 ], [ -75.262133260588001, 39.890094739384239 ], [ -75.262118259828426, 39.890268739550265 ], [ -75.262110259689578, 39.890466738993922 ], [ -75.26204325941589, 39.890689739672133 ], [ -75.261889258756185, 39.891300738929402 ], [ -75.261863257843189, 39.891445738990079 ], [ -75.261798257983628, 39.891619739531357 ], [ -75.261741257211995, 39.891775738959652 ], [ -75.261611256475121, 39.891885739514265 ], [ -75.26151025703507, 39.891939739751479 ], [ -75.261319256944276, 39.89198574033751 ], [ -75.261105255964409, 39.892077740279298 ], [ -75.260736255236964, 39.892175741580978 ], [ -75.260145254938223, 39.892297742523596 ], [ -75.260009270147336, 39.892316344879816 ], [ -75.259933253968327, 39.892326743445032 ], [ -75.259749254160752, 39.892350743635262 ], [ -75.259545253779137, 39.892352744751861 ], [ -75.259430041612504, 39.892380204852309 ], [ -75.259352253307426, 39.892398744604286 ], [ -75.259110252918461, 39.892437745480542 ], [ -75.258960252874502, 39.892523745919448 ], [ -75.258780252075155, 39.892667745816986 ], [ -75.258569252352572, 39.892803746673302 ], [ -75.258388251767016, 39.89297974719085 ], [ -75.258212251064435, 39.893160747593939 ], [ -75.258021250240873, 39.893360747864349 ], [ -75.257829250546138, 39.893563748040286 ], [ -75.257669249791505, 39.893728747982635 ], [ -75.257432249104852, 39.894004748404832 ], [ -75.257050621902991, 39.894392906391651 ], [ -75.256906246994802, 39.894539749667615 ], [ -75.256739246856739, 39.894727749796957 ], [ -75.256692954533776, 39.894799239212105 ], [ -75.256660246690132, 39.894849749928731 ], [ -75.256657245916983, 39.894934749729487 ], [ -75.256706245875435, 39.895031749186103 ], [ -75.256787246707063, 39.895190748803671 ], [ -75.256965246212161, 39.895357748551277 ], [ -75.257121246499651, 39.895462748288807 ], [ -75.257270246517933, 39.895561747265802 ], [ -75.257387246560086, 39.895705746588561 ], [ -75.257360245508067, 39.895845747058935 ], [ -75.257280246144788, 39.895985746570865 ], [ -75.257275245850749, 39.895996747032527 ], [ -75.257145245669932, 39.896151747252055 ], [ -75.256932244375506, 39.896360747739976 ], [ -75.256759243650549, 39.896496747562125 ], [ -75.256448242963529, 39.896844748487808 ], [ -75.256233241961553, 39.897098748318896 ], [ -75.256088241655505, 39.897291749206751 ], [ -75.255980241571635, 39.897469748842141 ], [ -75.255802241067968, 39.89772374921872 ], [ -75.255616240176494, 39.897944749530367 ], [ -75.255504240272288, 39.898184749805822 ], [ -75.255406880683864, 39.898315853348755 ], [ -75.255328238945296, 39.898421749911272 ], [ -75.255222238775971, 39.898492750395206 ], [ -75.255154238175194, 39.898586750200991 ], [ -75.255093238204566, 39.898667750582831 ], [ -75.255091238013236, 39.898757750128311 ], [ -75.255105238639757, 39.898843749721927 ], [ -75.255113238046746, 39.898883750243336 ], [ -75.255129238120801, 39.898900749630641 ], [ -75.255172238127386, 39.898944749998485 ], [ -75.255186237964125, 39.898980750059422 ], [ -75.255248238379124, 39.899138749803441 ], [ -75.255373237515315, 39.899292748695096 ], [ -75.255551237654515, 39.899500748204552 ], [ -75.25560823743055, 39.899577748106083 ], [ -75.255595237276324, 39.899597748315806 ], [ -75.255050626299209, 39.900194855246802 ], [ -75.253561231442802, 39.901827751425039 ], [ -75.252776313559735, 39.902717164604269 ], [ -75.251788225206781, 39.903836753863622 ], [ -75.251286829155603, 39.904404069427812 ], [ -75.251187139483065, 39.904347395805097 ], [ -75.250980450725308, 39.904245966743311 ], [ -75.250449701174375, 39.90396929105971 ], [ -75.248891166862393, 39.903114731006681 ], [ -75.247694102461679, 39.904464631460236 ], [ -75.246567149372041, 39.905689810937538 ], [ -75.245387767255139, 39.907002203034608 ], [ -75.244250682105502, 39.90827763618401 ], [ -75.243071209188685, 39.909590004289292 ], [ -75.242491972640323, 39.910183293859241 ], [ -75.242290438997742, 39.910287342429882 ], [ -75.241888011853248, 39.909051026588031 ], [ -75.241132422991441, 39.907192296518694 ], [ -75.2399656150276, 39.904197044500414 ], [ -75.237691661491453, 39.904792574167601 ], [ -75.235654724164633, 39.906058770320037 ], [ -75.234050592869892, 39.907657105335176 ], [ -75.232931552091529, 39.908882898230189 ], [ -75.231817695605045, 39.909967624197478 ], [ -75.230357234640309, 39.911061543191991 ], [ -75.230290543162837, 39.910885374195196 ], [ -75.230098596443568, 39.910679434638979 ], [ -75.229262079840467, 39.90901846405405 ], [ -75.22799723520788, 39.907136739372596 ], [ -75.226251966771073, 39.904086929644876 ], [ -75.22484129969088, 39.902442101278055 ], [ -75.225926733848738, 39.8986424203068 ], [ -75.228285088332072, 39.895870930522264 ], [ -75.229480766835664, 39.894562791813421 ], [ -75.230457204050438, 39.893799825255705 ], [ -75.231052218391866, 39.893216971989922 ], [ -75.236375146036835, 39.891167811002653 ], [ -75.238195554195045, 39.890197424591562 ], [ -75.239743353255449, 39.889038854553995 ], [ -75.240975558449577, 39.887724187976474 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "PACKER_PARK", "LISTNAME": "Packer Park", "MAPNAME": "Packer Park", "Shape_Leng": 21816.0179479, "Shape_Area": 28888967.1096 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.183725620031183, 39.913516409577561 ], [ -75.181934176234307, 39.913289599664047 ], [ -75.181017173291593, 39.913241389493102 ], [ -75.179417741548804, 39.913185779982662 ], [ -75.179166431807218, 39.913180145460998 ], [ -75.178443274859291, 39.913163928862623 ], [ -75.177635707507477, 39.913059910403305 ], [ -75.177035060490738, 39.91298159794453 ], [ -75.176445465279471, 39.912904722452119 ], [ -75.175797101030824, 39.912820181147524 ], [ -75.175198106912845, 39.912742073592256 ], [ -75.174600567179127, 39.912664153229301 ], [ -75.173954901716229, 39.912579952166759 ], [ -75.173346578998036, 39.912491662737743 ], [ -75.172674989718374, 39.912397795830067 ], [ -75.172303626177424, 39.912350561170754 ], [ -75.175026335391877, 39.898994489789544 ], [ -75.175740230931751, 39.899010525850102 ], [ -75.176940408714032, 39.899015462514278 ], [ -75.178606630480601, 39.898788700083131 ], [ -75.182490730755106, 39.898105320433203 ], [ -75.186716588405162, 39.897451467070944 ], [ -75.19002652836646, 39.896803088097855 ], [ -75.191601204350363, 39.897516578031727 ], [ -75.192705368555281, 39.898553811293951 ], [ -75.193319148170289, 39.899712172463488 ], [ -75.193419753979029, 39.900837071447945 ], [ -75.193123479319397, 39.902635516643862 ], [ -75.192132212996171, 39.906501655444153 ], [ -75.191607773703552, 39.907837102149529 ], [ -75.191189783533275, 39.909636643173798 ], [ -75.190908901911612, 39.910845843375185 ], [ -75.190736277376061, 39.911588976797105 ], [ -75.190423141111026, 39.91306196022461 ], [ -75.190109806408259, 39.914535812606765 ], [ -75.188040409140115, 39.914158766996003 ], [ -75.186323139565303, 39.91395302584715 ], [ -75.183725620031183, 39.913516409577561 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "PENNSPORT", "LISTNAME": "Pennsport", "MAPNAME": "Pennsport", "Shape_Leng": 11823.2331084, "Shape_Area": 6492472.6215899996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.14654070409199, 39.930046947163355 ], [ -75.148043263975921, 39.92154043404993 ], [ -75.149916449857358, 39.921821944305414 ], [ -75.151073432062191, 39.921982083837783 ], [ -75.15345436496159, 39.922293496895975 ], [ -75.153373935795855, 39.92272759218104 ], [ -75.152938442599805, 39.924682308296255 ], [ -75.152589836161653, 39.926329873074501 ], [ -75.151956071670995, 39.929114273361357 ], [ -75.151426487659293, 39.931509462287572 ], [ -75.150804120462027, 39.934293129696037 ], [ -75.149262266102937, 39.933907012050227 ], [ -75.147315754909854, 39.933653194634743 ], [ -75.145724659038962, 39.933443667797881 ], [ -75.146227434436554, 39.931256194968547 ], [ -75.14654070409199, 39.930046947163355 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "NEWBOLD", "LISTNAME": "Newbold", "MAPNAME": "Newbold", "Shape_Leng": 10052.5708849, "Shape_Area": 5876852.8125200002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.169858496934594, 39.923118443788461 ], [ -75.170150588566415, 39.921884165123451 ], [ -75.170178223126143, 39.921887676480488 ], [ -75.176637663366947, 39.92271044446364 ], [ -75.175561803317208, 39.92764500575678 ], [ -75.175288799216332, 39.928869851854529 ], [ -75.174763263649069, 39.931310562539934 ], [ -75.16826094718472, 39.930455432236968 ], [ -75.168263889387262, 39.930443141084922 ], [ -75.168530363061635, 39.929235615415443 ], [ -75.168652567719263, 39.928641191287454 ], [ -75.168804457599748, 39.928014563659552 ], [ -75.169064738216463, 39.926782244178206 ], [ -75.169309854663425, 39.925574235594816 ], [ -75.169562536111783, 39.924397733235431 ], [ -75.169570549607954, 39.924363095741938 ], [ -75.169858496934594, 39.923118443788461 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "WEST_PASSYUNK", "LISTNAME": "West Passyunk", "MAPNAME": "West Passyunk", "Shape_Leng": 10499.291848000001, "Shape_Area": 6494799.38332 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.176301440617777, 39.924252648321591 ], [ -75.177981680177695, 39.923954489590024 ], [ -75.183433787866605, 39.922942018764509 ], [ -75.186943350870905, 39.922325482733342 ], [ -75.186834235869625, 39.922765717737185 ], [ -75.186741623184133, 39.923207129797063 ], [ -75.186539863816094, 39.924014014747335 ], [ -75.186245210503955, 39.925305811903321 ], [ -75.185988835857529, 39.926489013614216 ], [ -75.185732707490033, 39.927715298536725 ], [ -75.185678908004206, 39.928210005860009 ], [ -75.185487719578319, 39.928931563427263 ], [ -75.185329083590332, 39.929721473123962 ], [ -75.185230511190639, 39.930161079658824 ], [ -75.183844423320863, 39.929958758797241 ], [ -75.183599529729506, 39.929930737459607 ], [ -75.181942774344591, 39.929762911213736 ], [ -75.180358280598981, 39.929542580924682 ], [ -75.178458697355865, 39.929292621149322 ], [ -75.176862354967241, 39.929076485030151 ], [ -75.175882808391322, 39.928964337000821 ], [ -75.175288799216332, 39.928869851854529 ], [ -75.175561803317208, 39.92764500575678 ], [ -75.176301440617777, 39.924252648321591 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "EAST_PASSYUNK", "LISTNAME": "East Passyunk", "MAPNAME": "East Passyunk", "Shape_Leng": 10987.761846, "Shape_Area": 6502097.10396 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.156842167052389, 39.928972746481044 ], [ -75.157115293766836, 39.927755083226025 ], [ -75.157673540508497, 39.925274575620911 ], [ -75.159183438835242, 39.925489722544143 ], [ -75.160755163462809, 39.925700537634967 ], [ -75.160773807147706, 39.925702748963495 ], [ -75.160865612369633, 39.925296596332657 ], [ -75.161136389636965, 39.924089105971419 ], [ -75.161300794193423, 39.923298512668481 ], [ -75.161309275024095, 39.923299615075102 ], [ -75.166012580294435, 39.923906113753226 ], [ -75.168475095160531, 39.924229376260193 ], [ -75.169570549607954, 39.924363095741938 ], [ -75.169562536111783, 39.924397733235388 ], [ -75.169309854663425, 39.925574235594773 ], [ -75.169064738216505, 39.926782244178149 ], [ -75.168804457599862, 39.928014563659524 ], [ -75.16865256771942, 39.928641191287454 ], [ -75.168530363061578, 39.929235615415443 ], [ -75.168263889387319, 39.930443141084879 ], [ -75.16826094718472, 39.930455432236968 ], [ -75.156842167052389, 39.928972746481044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "NAME": "BLUE_BELL_HILL", "LISTNAME": "Blue Bell Hill", "MAPNAME": "Blue Bell Hill", "Shape_Leng": null, "Shape_Area": null }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.197124768361306, 40.03338506688138 ], [ -75.195670278211907, 40.03392364786292 ], [ -75.193251476117993, 40.034824722824489 ], [ -75.192729011926801, 40.035029967729706 ], [ -75.193129292263293, 40.035390857879698 ], [ -75.192937974418498, 40.035472564503607 ], [ -75.190990580968304, 40.037362410585125 ], [ -75.190575037358201, 40.036867402375897 ], [ -75.190315643245597, 40.036612268546499 ], [ -75.189962761231101, 40.036318558746878 ], [ -75.189515702929597, 40.036004503003795 ], [ -75.189175656299994, 40.035790140971002 ], [ -75.188967849171604, 40.035623274150417 ], [ -75.188723974121899, 40.035424614311502 ], [ -75.188407418740397, 40.034976526442499 ], [ -75.188088986648594, 40.034164119638994 ], [ -75.187951391391707, 40.033566623177869 ], [ -75.187912444694106, 40.0333974982954 ], [ -75.187795217912907, 40.033003091186309 ], [ -75.187738911839304, 40.032800483450998 ], [ -75.1877073273088, 40.032595076366015 ], [ -75.187672895756904, 40.032384954751493 ], [ -75.187662711669702, 40.032076640851116 ], [ -75.187796080369793, 40.03142014139739 ], [ -75.187778852320093, 40.030780734121812 ], [ -75.187764727312413, 40.030583568805909 ], [ -75.187773378811201, 40.030354407801298 ], [ -75.187837979989496, 40.030092092762196 ], [ -75.187964764814424, 40.029864727372555 ], [ -75.187997988177003, 40.029805147074015 ], [ -75.1881268107404, 40.029685699189507 ], [ -75.188294945446287, 40.029578595168999 ], [ -75.188471280830584, 40.029532004696939 ], [ -75.188721866830505, 40.029465795514895 ], [ -75.188832899547819, 40.029422400546402 ], [ -75.188904462733802, 40.029352242981489 ], [ -75.18908025095206, 40.029331913283521 ], [ -75.189409587384105, 40.029293825160806 ], [ -75.189710279970399, 40.029231722728397 ], [ -75.189947535493403, 40.029137625290403 ], [ -75.190156566667895, 40.029000850112311 ], [ -75.190285814888099, 40.028869941401204 ], [ -75.1904766107602, 40.028392146450173 ], [ -75.190501329884697, 40.028033782434704 ], [ -75.190546548393698, 40.027889532683709 ], [ -75.190645984848004, 40.027757959220295 ], [ -75.190900300244309, 40.027606901913899 ], [ -75.191051073617501, 40.0275643904506 ], [ -75.191231079612194, 40.027537821091805 ], [ -75.191767212227106, 40.027561232311001 ], [ -75.192358353045904, 40.027444432541692 ], [ -75.192484139991706, 40.027405185720909 ], [ -75.192614252809307, 40.027324224831602 ], [ -75.192759884586096, 40.027522429151603 ], [ -75.192788565693064, 40.027560955669472 ], [ -75.192914616345206, 40.027547278794792 ], [ -75.193135392103798, 40.027551055494705 ], [ -75.193303031260001, 40.027699431500693 ], [ -75.193480073890996, 40.027762127338782 ], [ -75.19361267848241, 40.027780289038184 ], [ -75.193830202078601, 40.02778196382971 ], [ -75.194027327075005, 40.027733954192996 ], [ -75.194131300100807, 40.027706339501798 ], [ -75.194232322285103, 40.027674418918885 ], [ -75.194330393612802, 40.027638192451995 ], [ -75.194425515206902, 40.02759766103501 ], [ -75.194475632454299, 40.027573994127501 ], [ -75.194531271911302, 40.027556063339986 ], [ -75.194657334061105, 40.027530675942103 ], [ -75.194704867883601, 40.027524570607 ], [ -75.194844505890302, 40.027512744262516 ], [ -75.195066880693304, 40.027498043484194 ], [ -75.195147812697101, 40.027497502256097 ], [ -75.195220707024305, 40.0275011943869 ], [ -75.195254505630601, 40.027505027698197 ], [ -75.195291979552707, 40.0275112313101 ], [ -75.195445774959893, 40.02754332329831 ], [ -75.195507557063905, 40.027551477617799 ], [ -75.195595382304901, 40.02755487722559 ], [ -75.195706694901006, 40.027552078571276 ], [ -75.195807999992198, 40.027547431822896 ], [ -75.195955045838303, 40.027540783879232 ], [ -75.196054055530794, 40.027532164694001 ], [ -75.196131348313401, 40.027521534383112 ], [ -75.196131348313401, 40.027521534383112 ], [ -75.196210160000604, 40.027507695982713 ], [ -75.19625107435246, 40.02749901026943 ], [ -75.196290280543295, 40.0274906871661 ], [ -75.196312959796956, 40.027485063982184 ], [ -75.196403547909014, 40.02746075611001 ], [ -75.196488899200915, 40.027430784484913 ], [ -75.196515285024006, 40.027423615320295 ], [ -75.196539585942816, 40.027418997388999 ], [ -75.19657337436, 40.027415158032099 ], [ -75.196610515621899, 40.0274129465434 ], [ -75.196670215248204, 40.027414989274902 ], [ -75.196792234141199, 40.027429382710999 ], [ -75.196845854996539, 40.027432923950244 ], [ -75.196943394817694, 40.02743936562949 ], [ -75.197014815459397, 40.027447681150981 ], [ -75.197095410693393, 40.027462602210797 ], [ -75.197164003983218, 40.027479842305617 ], [ -75.197215396553005, 40.027496557654892 ], [ -75.197272024085294, 40.027518240350503 ], [ -75.197330917727498, 40.027544021599205 ], [ -75.197387849986001, 40.027572624414503 ], [ -75.19748250682872, 40.027635676738505 ], [ -75.197650244015705, 40.027777677362614 ], [ -75.197685507521001, 40.027960229644385 ], [ -75.197770405819398, 40.028155834092999 ], [ -75.197889035455702, 40.028337950395198 ], [ -75.197973742470197, 40.0285559070281 ], [ -75.198084844022802, 40.028727116745394 ], [ -75.198160720147598, 40.028911486680592 ], [ -75.198255144728805, 40.029173966753611 ], [ -75.198321460347202, 40.029380747439696 ], [ -75.198334920331703, 40.029503009981902 ], [ -75.198331379251798, 40.029633857076277 ], [ -75.198225713816299, 40.029978285011801 ], [ -75.198220772955906, 40.030019574556796 ], [ -75.198146513912803, 40.03039858249781 ], [ -75.198127801175801, 40.030545169996692 ], [ -75.198118851019501, 40.030587382281098 ], [ -75.198111852553112, 40.03062039363121 ], [ -75.19809332334971, 40.030686853322692 ], [ -75.198072546084305, 40.0307613761006 ], [ -75.198058003892214, 40.030816991798702 ], [ -75.198066259916104, 40.030914372842808 ], [ -75.198158638546602, 40.031135413538195 ], [ -75.198203142453593, 40.031212973274599 ], [ -75.198420531762494, 40.031485618426899 ], [ -75.1986041206344, 40.031653105749193 ], [ -75.198730433929001, 40.031752147933602 ], [ -75.198943328307905, 40.031863557577203 ], [ -75.199118110093096, 40.031986454473966 ], [ -75.199241566158904, 40.032073261530684 ], [ -75.199339447343704, 40.032127327758808 ], [ -75.199575911986798, 40.032276770208604 ], [ -75.199664710516771, 40.032331528311424 ], [ -75.199253525822897, 40.032741207651704 ], [ -75.199040031742101, 40.032968878910701 ], [ -75.1986803304316, 40.033111414355297 ], [ -75.197920858803499, 40.033252328409915 ], [ -75.197268238148794, 40.033292150153706 ], [ -75.197177880328894, 40.033339614142101 ], [ -75.197124768361306, 40.03338506688138 ] ] ] ] } } +] +} diff --git a/data/ppa.json b/data/ppa.json new file mode 100644 index 0000000..5fefaf8 --- /dev/null +++ b/data/ppa.json @@ -0,0 +1,25251 @@ +{ +"type": "FeatureCollection", +"name": "ppa", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "location": "2200 FONTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170906427962706, 39.986026053427899 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 26TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177529770172498, 39.980010072696899 ] } }, +{ "type": "Feature", "properties": { "location": "1600 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160463751193504, 39.985880368044803 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1619138463289, 39.971782230279302 ] } }, +{ "type": "Feature", "properties": { "location": "4643 SANSOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215377, 39.956572 ] } }, +{ "type": "Feature", "properties": { "location": "400 ASHDALE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132248, 40.02797 ] } }, +{ "type": "Feature", "properties": { "location": "1300 OXFORD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159162, 39.976507 ] } }, +{ "type": "Feature", "properties": { "location": "500 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154073, 39.927367 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153297, 39.933948 ] } }, +{ "type": "Feature", "properties": { "location": "1100 COMLY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.086506949780201, 40.036891548311601 ] } }, +{ "type": "Feature", "properties": { "location": "439 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "200 SUMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205113441272601, 40.0190521319849 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 7TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152185, 39.950572 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213887, 40.023237 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214648, 40.024003 ] } }, +{ "type": "Feature", "properties": { "location": "600 S AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146793289865499, 39.941080337210401 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154573, 39.95233 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137597, 39.968163 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070433, 40.047063 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154543, 39.95348 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165073, 39.935263 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179249308647201, 39.9670232703834 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215093, 40.021897 ] } }, +{ "type": "Feature", "properties": { "location": "147 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158542, 39.920575 ] } }, +{ "type": "Feature", "properties": { "location": "6500 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.047876995918401, 40.021360554403003 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156785, 39.921407 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175148, 39.948185 ] } }, +{ "type": "Feature", "properties": { "location": "299 RITTENHOUSE SQ", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173205, 39.94849 ] } }, +{ "type": "Feature", "properties": { "location": "5500 HADFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230734751071097, 39.943102823244999 ] } }, +{ "type": "Feature", "properties": { "location": "623 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153451896282903, 39.941711249981303 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MOUNT VERNON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170567, 39.96572 ] } }, +{ "type": "Feature", "properties": { "location": "800 S ROSEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16714, 39.94053 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166772, 39.942482 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W ALBERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177944663218597, 39.9961246504839 ] } }, +{ "type": "Feature", "properties": { "location": "500 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156427, 39.920783 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FAIRHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15642, 39.92054 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077812, 40.022088 ] } }, +{ "type": "Feature", "properties": { "location": "200 FARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221185262595, 39.963102530828699 ] } }, +{ "type": "Feature", "properties": { "location": "3809 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171962, 39.939667 ] } }, +{ "type": "Feature", "properties": { "location": "600 ROSALIE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099698519485102, 40.0410411268061 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153945060507994, 39.982820771933397 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S HICKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171692, 39.925923 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S JUNIPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167035, 39.931567 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212128, 40.02145 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176102, 39.925212 ] } }, +{ "type": "Feature", "properties": { "location": "3900 HOWLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103703751231507, 40.007054597392496 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117562, 39.975912 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117445, 39.975763 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197255, 39.957417 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159298, 39.924023 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225143718712303, 40.0262565643012 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 9TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153155, 39.960565 ] } }, +{ "type": "Feature", "properties": { "location": "3500 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192755, 39.961355 ] } }, +{ "type": "Feature", "properties": { "location": "200 ERICA PL", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.042598191695504, 40.116141267442103 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157967, 39.91651 ] } }, +{ "type": "Feature", "properties": { "location": "2200 W TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165708675143307, 40.007949100712203 ] } }, +{ "type": "Feature", "properties": { "location": "3917 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136017576104194, 40.0112313694313 ] } }, +{ "type": "Feature", "properties": { "location": "2451 TULIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124158617096796, 39.980848252022099 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159265, 39.976923 ] } }, +{ "type": "Feature", "properties": { "location": "500 E THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12857, 39.972555 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139864230859004, 40.002902102830902 ] } }, +{ "type": "Feature", "properties": { "location": "2057 NORTH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171245448620297, 39.966784715197598 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22807, 40.028242 ] } }, +{ "type": "Feature", "properties": { "location": "600 TREE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158502, 39.92126 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113420125276093, 39.995497400423197 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WYOMING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117487, 40.02066 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168017, 39.936502 ] } }, +{ "type": "Feature", "properties": { "location": "3432 POWELTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192507, 39.95996 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "5800 HAVERFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235680482753395, 39.968535744244903 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "136 FERN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122860703670398, 40.042792157965998 ] } }, +{ "type": "Feature", "properties": { "location": "314 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188162990061599, 39.9614348925003 ] } }, +{ "type": "Feature", "properties": { "location": "3400 S LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158523, 39.903677 ] } }, +{ "type": "Feature", "properties": { "location": "1264 SPRING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160138220411397, 39.956284067552197 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226288, 40.027662 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15277, 39.942468 ] } }, +{ "type": "Feature", "properties": { "location": "500 WIDENER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129994356384103, 40.041944149956997 ] } }, +{ "type": "Feature", "properties": { "location": "1901 CHRISTIAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174315, 39.941087 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19389, 39.957833 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W CLARKSON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139945, 40.036143 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W CLARKSON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139935, 40.036168 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166797181182105, 39.956741061530899 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134285, 39.972427 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1343, 39.972367 ] } }, +{ "type": "Feature", "properties": { "location": "8500 GERMANTOWN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206512, 40.076087 ] } }, +{ "type": "Feature", "properties": { "location": "600 ANCHOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100624372943301, 40.040243907613302 ] } }, +{ "type": "Feature", "properties": { "location": "500 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155745258905995, 39.923039893692 ] } }, +{ "type": "Feature", "properties": { "location": "300 MILNE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164225642551301, 40.020057076973103 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161907, 39.942748 ] } }, +{ "type": "Feature", "properties": { "location": "3700 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19744, 39.955682 ] } }, +{ "type": "Feature", "properties": { "location": "5400 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228825133391794, 39.970125052553698 ] } }, +{ "type": "Feature", "properties": { "location": "400 W CAMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137903192873594, 39.994958209270102 ] } }, +{ "type": "Feature", "properties": { "location": "967 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145403, 39.96827 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142023, 39.967712 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191105, 39.9608 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N CROSKEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167869942702296, 39.998062219790299 ] } }, +{ "type": "Feature", "properties": { "location": "4000 L ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102722, 40.007587 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212847, 39.955342 ] } }, +{ "type": "Feature", "properties": { "location": "100 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214073, 40.021088 ] } }, +{ "type": "Feature", "properties": { "location": "2213 WALLACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174693064308897, 39.966774736449104 ] } }, +{ "type": "Feature", "properties": { "location": "700 CHADWICK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170073, 39.943103 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159463, 39.976402 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170248, 39.949658 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MORAVIAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174357, 39.950997 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N AMERICAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126314257251295, 40.038062790487899 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155315, 39.959668 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12801, 39.967388 ] } }, +{ "type": "Feature", "properties": { "location": "1080 N DELAWARE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13268, 39.965688 ] } }, +{ "type": "Feature", "properties": { "location": "500 RUSCOMB ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132735, 40.027397 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "600 E TIOGA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116512, 40.001682 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W PACIFIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15182, 40.008843 ] } }, +{ "type": "Feature", "properties": { "location": "109 ALNUS PL", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.040574893007204, 40.117673437915101 ] } }, +{ "type": "Feature", "properties": { "location": "1703 S BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16879, 39.92891 ] } }, +{ "type": "Feature", "properties": { "location": "800 CARVER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091025852555404, 40.034293984669098 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175232, 39.92647 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153197696146094, 40.022837129872201 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139864230859004, 40.002902102830902 ] } }, +{ "type": "Feature", "properties": { "location": "3100 GAUL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107115383779799, 39.986000938992198 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133824076508802, 39.972515261856699 ] } }, +{ "type": "Feature", "properties": { "location": "2600 MASSEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233394290358703, 39.916809360825901 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142905, 39.955268 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BELMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225294978211593, 39.940625097825198 ] } }, +{ "type": "Feature", "properties": { "location": "2900 WATERLOO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131637223390499, 39.994736242745802 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "8739 MARSDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.009008639248407, 40.045302775499998 ] } }, +{ "type": "Feature", "properties": { "location": "4500 LEVICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.053376964526805, 40.023362623482697 ] } }, +{ "type": "Feature", "properties": { "location": "5801 LORETTO AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086180589551901, 40.033061558853497 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159458, 39.924792 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1561135737889, 39.9580729630908 ] } }, +{ "type": "Feature", "properties": { "location": "7012 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "6800 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070710380987194, 40.044272419847402 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "3820 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157868428971199, 40.0125124206468 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "600 E CORNWALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117937534522895, 39.999147255209003 ] } }, +{ "type": "Feature", "properties": { "location": "1900 W OLNEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153632, 40.03925 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152657, 39.950248 ] } }, +{ "type": "Feature", "properties": { "location": "2405 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141701252170407, 39.988345903103998 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148917, 39.939518 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152044295635307, 39.958516502817098 ] } }, +{ "type": "Feature", "properties": { "location": "200 RICHMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132087, 39.96698 ] } }, +{ "type": "Feature", "properties": { "location": "3200 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189650203550102, 39.965468447461497 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ATLANTIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14882, 40.006262 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077782, 40.022027 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S HICKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172172, 39.923432 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199683, 39.954535 ] } }, +{ "type": "Feature", "properties": { "location": "601 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157059144940206, 39.924417722975299 ] } }, +{ "type": "Feature", "properties": { "location": "1238 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148754895813198, 40.008927674739198 ] } }, +{ "type": "Feature", "properties": { "location": "5200 E ROOSEVELT BLVD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089630879318904, 40.029445703680999 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154847, 39.929567 ] } }, +{ "type": "Feature", "properties": { "location": "900 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156847, 39.94542 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CHESTNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206488, 39.956203 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W PACIFIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1518, 40.008848 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W PACIFIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151832, 40.008837 ] } }, +{ "type": "Feature", "properties": { "location": "2538 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237293441597501, 39.916219986919103 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12855, 39.967182 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127725699703404, 39.967458960401203 ] } }, +{ "type": "Feature", "properties": { "location": "4000 SANSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203197, 39.954865 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.192272, 39.956102 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155868, 39.941113 ] } }, +{ "type": "Feature", "properties": { "location": "2800 TULIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116318037436898, 39.984950395319402 ] } }, +{ "type": "Feature", "properties": { "location": "1200 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159137, 39.960475 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BELMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225294978211593, 39.940625097825198 ] } }, +{ "type": "Feature", "properties": { "location": "3100 CUSTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116583532051706, 39.996088842932501 ] } }, +{ "type": "Feature", "properties": { "location": "2819 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182959668383006, 39.973116229474499 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.196877, 39.95998 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19392, 39.95774 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161970851488803, 39.9807846433824 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16465, 39.923 ] } }, +{ "type": "Feature", "properties": { "location": "800 S ALDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238354718438799, 39.948010546376601 ] } }, +{ "type": "Feature", "properties": { "location": "144 SHURS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216367, 40.023405 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086093, 40.013877 ] } }, +{ "type": "Feature", "properties": { "location": "200 E INDIANA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127670845717006, 39.99516976572 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117474716175707, 39.9953858502396 ] } }, +{ "type": "Feature", "properties": { "location": "173 W THELMA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127209198689698, 40.0204988630881 ] } }, +{ "type": "Feature", "properties": { "location": "200 E LUZERNE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124052313179604, 40.010486128679602 ] } }, +{ "type": "Feature", "properties": { "location": "3200 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115396282731197, 39.996998765729401 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W OAKDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148413912077501, 39.992418046544003 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W OAKDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148413912077501, 39.992418046544003 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171493428588207, 39.931511389651597 ] } }, +{ "type": "Feature", "properties": { "location": "3738 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143160572971993, 40.0090212659629 ] } }, +{ "type": "Feature", "properties": { "location": "6200 KINDRED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0761803833892, 40.036252675102702 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179343991929997, 39.934185499899698 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224465, 40.02817 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 60TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240942, 39.960977 ] } }, +{ "type": "Feature", "properties": { "location": "500 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502227031296, 39.933105053217403 ] } }, +{ "type": "Feature", "properties": { "location": "5100 ROCHELLE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.210655157061097, 40.0170090335643 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15577, 39.92902 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166405, 39.92154 ] } }, +{ "type": "Feature", "properties": { "location": "3000 RUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116698396863796, 39.994059493709898 ] } }, +{ "type": "Feature", "properties": { "location": "100 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137613, 39.96926 ] } }, +{ "type": "Feature", "properties": { "location": "1 N RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227810083005593, 39.961165788692199 ] } }, +{ "type": "Feature", "properties": { "location": "4700 CITY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225022334626104, 40.001893763766198 ] } }, +{ "type": "Feature", "properties": { "location": "4200 SANSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208505, 39.955637 ] } }, +{ "type": "Feature", "properties": { "location": "117 S 43RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208687, 39.955637 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140082, 39.955368 ] } }, +{ "type": "Feature", "properties": { "location": "700 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159637, 39.916667 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166585, 39.945285 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196917, 39.960792 ] } }, +{ "type": "Feature", "properties": { "location": "3700 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.195375, 39.959765 ] } }, +{ "type": "Feature", "properties": { "location": "6418 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.049574240345706, 40.0204818119091 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189325687589502, 39.959588722317797 ] } }, +{ "type": "Feature", "properties": { "location": "1500 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162330121276298, 39.969907045523101 ] } }, +{ "type": "Feature", "properties": { "location": "1622 W JUNIATA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153440425218506, 40.018627083541602 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 69TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243671112476804, 39.924599856092797 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "6300 CHARLES ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.059015799138294, 40.027109414668601 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076599409990195, 40.041525288775901 ] } }, +{ "type": "Feature", "properties": { "location": "1900 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177825348410494, 39.928375029531303 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S DEWEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223262325963105, 39.923931877858998 ] } }, +{ "type": "Feature", "properties": { "location": "100 CHESTNUT ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142874125009797, 39.948224894949497 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174075, 39.927425 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228080711070206, 39.925256005062799 ] } }, +{ "type": "Feature", "properties": { "location": "800 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687857051997, 39.922383040809997 ] } }, +{ "type": "Feature", "properties": { "location": "840 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687857051997, 39.922383040809997 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153945060507994, 39.982820771933397 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123033, 39.973705 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12309, 39.973752 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1613 N ALLISON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232846602334007, 39.977135221851903 ] } }, +{ "type": "Feature", "properties": { "location": "900 RITNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162383065447003, 39.919597259785498 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "2300 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17871, 39.95327 ] } }, +{ "type": "Feature", "properties": { "location": "100 E ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128583, 40.001628 ] } }, +{ "type": "Feature", "properties": { "location": "800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113921102918198, 39.998649280475497 ] } }, +{ "type": "Feature", "properties": { "location": "4072 SPRING GARDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204248233670498, 39.961459729234001 ] } }, +{ "type": "Feature", "properties": { "location": "190 W WYOMING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127725, 40.0219 ] } }, +{ "type": "Feature", "properties": { "location": "800 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16098, 39.918145 ] } }, +{ "type": "Feature", "properties": { "location": "600 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15851, 39.920708 ] } }, +{ "type": "Feature", "properties": { "location": "600 ORIANNA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148303, 39.941017 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WAYNE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.186888830863296, 40.036378564693102 ] } }, +{ "type": "Feature", "properties": { "location": "313 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162955, 39.946212 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHARLES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073878215357198, 40.019237274952999 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 13TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162156545231994, 39.9488822580171 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178102, 39.945222 ] } }, +{ "type": "Feature", "properties": { "location": "653 N 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162505, 39.965942 ] } }, +{ "type": "Feature", "properties": { "location": "653 N 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16245, 39.965818 ] } }, +{ "type": "Feature", "properties": { "location": "653 N 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162485, 39.965933 ] } }, +{ "type": "Feature", "properties": { "location": "5001 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.222787312603998, 39.955443893626999 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130443, 39.97232 ] } }, +{ "type": "Feature", "properties": { "location": "5500 SANSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233167, 39.958642 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N GRATZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164658498483007, 39.981444208252597 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W STILES ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163288354647193, 39.972905150418597 ] } }, +{ "type": "Feature", "properties": { "location": "1900 FEDERAL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17519, 39.937075 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166298, 39.93557 ] } }, +{ "type": "Feature", "properties": { "location": "330 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188056889150701, 40.0402060406388 ] } }, +{ "type": "Feature", "properties": { "location": "415 RENNARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.026668694842002, 40.120320376968699 ] } }, +{ "type": "Feature", "properties": { "location": "216 N 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238086160935197, 39.965066583484997 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151487, 39.941483 ] } }, +{ "type": "Feature", "properties": { "location": "1918 DELANCEY PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173622, 39.94742 ] } }, +{ "type": "Feature", "properties": { "location": "1556 STONEY LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043436759401402, 40.083352107965503 ] } }, +{ "type": "Feature", "properties": { "location": "169 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "100 JAMESTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219052, 40.023137 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W SPENCER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137018, 40.04509 ] } }, +{ "type": "Feature", "properties": { "location": "400 S HUTCHINSON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157527, 39.944123 ] } }, +{ "type": "Feature", "properties": { "location": "808 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155665, 39.943487 ] } }, +{ "type": "Feature", "properties": { "location": "4617 WHITAKER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114911442428905, 40.019315714228703 ] } }, +{ "type": "Feature", "properties": { "location": "300 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152487, 39.923375 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S ALDER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160873, 39.934527 ] } }, +{ "type": "Feature", "properties": { "location": "1041 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156498, 39.960213 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15649, 39.96037 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16292, 39.943982 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08799, 40.01067 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088078, 40.01066 ] } }, +{ "type": "Feature", "properties": { "location": "2100 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177997, 39.945503 ] } }, +{ "type": "Feature", "properties": { "location": "500 THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127913, 39.972822 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E BIRCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117624145460198, 39.9916361934024 ] } }, +{ "type": "Feature", "properties": { "location": "2200 SHIELDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235631033326896, 39.923731297543199 ] } }, +{ "type": "Feature", "properties": { "location": "300 CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13882, 39.955817 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138627654377899, 39.976670140001701 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "5100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224005057888206, 39.959313475732401 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170298, 39.942347 ] } }, +{ "type": "Feature", "properties": { "location": "6341 ELMWOOD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228615957195203, 39.923402596744303 ] } }, +{ "type": "Feature", "properties": { "location": "199 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163051850397693, 39.949585368319099 ] } }, +{ "type": "Feature", "properties": { "location": "3100 JASPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114357597354498, 39.994051884298401 ] } }, +{ "type": "Feature", "properties": { "location": "5500 DITMAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065666767902101, 40.015882036805003 ] } }, +{ "type": "Feature", "properties": { "location": "900 ARCH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155103, 39.953445 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140833, 40.039387 ] } }, +{ "type": "Feature", "properties": { "location": "2600 WEBB ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115399201988595, 39.9778544371677 ] } }, +{ "type": "Feature", "properties": { "location": "2900 MCKINLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064390454573299, 40.029071760878502 ] } }, +{ "type": "Feature", "properties": { "location": "522 E THELMA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115648270475404, 40.019374328597102 ] } }, +{ "type": "Feature", "properties": { "location": "700 E HILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116314154562303, 39.997369171418001 ] } }, +{ "type": "Feature", "properties": { "location": "219 SPRING GARDEN ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142552, 39.960772 ] } }, +{ "type": "Feature", "properties": { "location": "3700 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.196183, 39.959727 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234788011345998, 39.9179860542299 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162247995847906, 39.918941700167203 ] } }, +{ "type": "Feature", "properties": { "location": "20 S 15TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165263635504203, 39.9524317878045 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17002, 39.960607 ] } }, +{ "type": "Feature", "properties": { "location": "1600 TITAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172222, 39.935338 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226243, 40.027697 ] } }, +{ "type": "Feature", "properties": { "location": "4200 SILVERWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220092, 40.025208 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1500 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166695, 39.947987 ] } }, +{ "type": "Feature", "properties": { "location": "153 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122676584184106, 40.043817504728999 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191935, 39.956757 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169312, 39.951785 ] } }, +{ "type": "Feature", "properties": { "location": "5156 HARLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225439196084395, 39.9749508517287 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158187, 39.923728 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159302, 39.923927 ] } }, +{ "type": "Feature", "properties": { "location": "4111 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205252053137698, 39.956766908298398 ] } }, +{ "type": "Feature", "properties": { "location": "4101 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205252053137698, 39.956766908298398 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155412, 39.984533 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13683, 39.968813 ] } }, +{ "type": "Feature", "properties": { "location": "900 BUTTONWOOD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153153, 39.960655 ] } }, +{ "type": "Feature", "properties": { "location": "5435 MEDIA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231111246837003, 39.975347441381899 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170028, 39.938373 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170083, 39.93839 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N HUTCHINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135782, 40.043537 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169247, 39.971408 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153158, 39.93094 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153277, 39.931065 ] } }, +{ "type": "Feature", "properties": { "location": "2042 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177195, 39.941848 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177478, 39.953635 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191443324436705, 39.963213814021799 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13749, 39.968222 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166597, 39.933938 ] } }, +{ "type": "Feature", "properties": { "location": "6800 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2387926596097, 39.922431827657803 ] } }, +{ "type": "Feature", "properties": { "location": "4600 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090777, 40.006882 ] } }, +{ "type": "Feature", "properties": { "location": "20 S 15TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165263635504203, 39.9524317878045 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151238, 40.003027 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172208, 39.9285 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153635, 39.928888 ] } }, +{ "type": "Feature", "properties": { "location": "100 W CAMBRIA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130516756687996, 39.994000916511503 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141502, 39.96768 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214667, 40.023988 ] } }, +{ "type": "Feature", "properties": { "location": "907 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17772, 39.941022 ] } }, +{ "type": "Feature", "properties": { "location": "300 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142442, 39.969137 ] } }, +{ "type": "Feature", "properties": { "location": "300 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142457, 39.969062 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14394, 39.96976 ] } }, +{ "type": "Feature", "properties": { "location": "2300 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078121563653497, 40.007073034773398 ] } }, +{ "type": "Feature", "properties": { "location": "3401 N WATER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127174976298505, 40.002203896316999 ] } }, +{ "type": "Feature", "properties": { "location": "6061 DELANCEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242990759656806, 39.956139112432098 ] } }, +{ "type": "Feature", "properties": { "location": "5800 MONTROSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2405297448299, 39.948518816909697 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 52ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226949787890803, 39.950082769751901 ] } }, +{ "type": "Feature", "properties": { "location": "6800 REGENT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242527058609099, 39.924912580511098 ] } }, +{ "type": "Feature", "properties": { "location": "500 N PERTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151302592390195, 39.961989330984402 ] } }, +{ "type": "Feature", "properties": { "location": "500 N PERTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151302592390195, 39.961989330984402 ] } }, +{ "type": "Feature", "properties": { "location": "6700 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237143885711703, 39.923581589033702 ] } }, +{ "type": "Feature", "properties": { "location": "5900 WINDSOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232811858843803, 39.9359672527439 ] } }, +{ "type": "Feature", "properties": { "location": "5926 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232811858843803, 39.9359672527439 ] } }, +{ "type": "Feature", "properties": { "location": "700 SHIRLEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167495740097607, 39.967416185309801 ] } }, +{ "type": "Feature", "properties": { "location": "800 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157568531559093, 39.936566484472003 ] } }, +{ "type": "Feature", "properties": { "location": "6000 LORETTO AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.083039881076203, 40.035912389644999 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159583, 39.975953 ] } }, +{ "type": "Feature", "properties": { "location": "1432 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "1432 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177226133031496, 39.996872926474701 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169413, 39.951958 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 42ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.20605, 39.957815 ] } }, +{ "type": "Feature", "properties": { "location": "5339 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229263, 39.957447 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "2077 KINGSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101405860742702, 39.997359615725401 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192982, 39.957102 ] } }, +{ "type": "Feature", "properties": { "location": "1807 DELANCEY PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171635, 39.947037 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156017, 39.921405 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15936, 39.923857 ] } }, +{ "type": "Feature", "properties": { "location": "600 WATKINS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155625, 39.927082 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134312, 39.972365 ] } }, +{ "type": "Feature", "properties": { "location": "900 ARCH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155152, 39.953208 ] } }, +{ "type": "Feature", "properties": { "location": "400 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150848, 39.938737 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169716845944507, 40.000835797942202 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175073, 39.951635 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175997, 39.952747 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N ORIANNA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142468, 39.969002 ] } }, +{ "type": "Feature", "properties": { "location": "600 WILLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149005, 39.958555 ] } }, +{ "type": "Feature", "properties": { "location": "3200 A ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127221840921806, 39.998828921672597 ] } }, +{ "type": "Feature", "properties": { "location": "100 E LOUDON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124358, 40.023075 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228285, 40.028503 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159348, 39.97631 ] } }, +{ "type": "Feature", "properties": { "location": "119 E ALLEGHENY AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128944823326904, 39.99850033717 ] } }, +{ "type": "Feature", "properties": { "location": "119 E ALLEGHENY AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128944823326904, 39.99850033717 ] } }, +{ "type": "Feature", "properties": { "location": "100 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227737, 40.02846 ] } }, +{ "type": "Feature", "properties": { "location": "100 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227845, 40.02812 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133515, 39.975243 ] } }, +{ "type": "Feature", "properties": { "location": "200 E STELLA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126541988791701, 39.9957922514157 ] } }, +{ "type": "Feature", "properties": { "location": "639 E RAYMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112056349455401, 40.017840758811801 ] } }, +{ "type": "Feature", "properties": { "location": "5200 BELFIELD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162316719430294, 40.036905298568598 ] } }, +{ "type": "Feature", "properties": { "location": "600 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147088, 39.97166 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140354590774606, 39.994504961216897 ] } }, +{ "type": "Feature", "properties": { "location": "6600 ELMWOOD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2318940226141, 39.921099742533301 ] } }, +{ "type": "Feature", "properties": { "location": "5100 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224900493397101, 39.972423861236898 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182507815898106, 39.942707927609703 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22831, 40.02855 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12787, 39.967385 ] } }, +{ "type": "Feature", "properties": { "location": "5100 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129103, 40.029795 ] } }, +{ "type": "Feature", "properties": { "location": "1400 ARCH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164698, 39.954407 ] } }, +{ "type": "Feature", "properties": { "location": "607 HAZELL LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.013768852189401, 40.126885550480601 ] } }, +{ "type": "Feature", "properties": { "location": "799 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178387, 39.968975 ] } }, +{ "type": "Feature", "properties": { "location": "5200 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143442, 40.034912 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155425, 39.984515 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152968, 39.950042 ] } }, +{ "type": "Feature", "properties": { "location": "1518 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.97672 ] } }, +{ "type": "Feature", "properties": { "location": "312 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188040170852204, 39.9608137965919 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090725, 40.007517 ] } }, +{ "type": "Feature", "properties": { "location": "6140 DELANCEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244963290254901, 39.956380996446597 ] } }, +{ "type": "Feature", "properties": { "location": "919 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156492, 39.937865 ] } }, +{ "type": "Feature", "properties": { "location": "1033 S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170993, 39.93877 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S CHADWICK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17107, 39.938782 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CHELTEN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153399512929795, 40.051760435425301 ] } }, +{ "type": "Feature", "properties": { "location": "400 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130470366894897, 40.032227804018802 ] } }, +{ "type": "Feature", "properties": { "location": "100 FERN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120887658402097, 40.042541723495297 ] } }, +{ "type": "Feature", "properties": { "location": "200 WIDENER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125320729671998, 40.041025810056901 ] } }, +{ "type": "Feature", "properties": { "location": "5631 WALTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236061265115396, 39.950577644883197 ] } }, +{ "type": "Feature", "properties": { "location": "5631 WALTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236061265115396, 39.950577644883197 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "2044 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171755, 39.96724 ] } }, +{ "type": "Feature", "properties": { "location": "2539 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117255751658703, 39.975528581185003 ] } }, +{ "type": "Feature", "properties": { "location": "N 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166257, 39.954277 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "3350 RAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112259104921804, 39.998744998128601 ] } }, +{ "type": "Feature", "properties": { "location": "300 HOWELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105149277885403, 40.047166552726203 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153645, 39.960355 ] } }, +{ "type": "Feature", "properties": { "location": "920 MARCELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091810897633394, 40.0308573223286 ] } }, +{ "type": "Feature", "properties": { "location": "1900 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173137, 39.952022 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205592, 39.953308 ] } }, +{ "type": "Feature", "properties": { "location": "1316 W JEROME ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148471033305299, 40.016046471984701 ] } }, +{ "type": "Feature", "properties": { "location": "3753 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 18TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173634883259098, 39.936509633234998 ] } }, +{ "type": "Feature", "properties": { "location": "4126 ROBBINS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.059074965895903, 40.026627718814197 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 4TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149895, 39.938738 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205738, 39.948625 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205792, 39.94865 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 41ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205803, 39.948628 ] } }, +{ "type": "Feature", "properties": { "location": "4553 LINMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207785115044203, 39.943181937231699 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142821154925102, 40.010562233606002 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N DELHI ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1432923785555, 40.010624906821597 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127520391343793, 40.003642017451597 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140028400849403, 39.995998404724403 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140028400849403, 39.995998404724403 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140354590774606, 39.994504961216897 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "4800 D ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116065948667199, 40.022493557439198 ] } }, +{ "type": "Feature", "properties": { "location": "4800 D ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116065948667199, 40.022493557439198 ] } }, +{ "type": "Feature", "properties": { "location": "3744 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143160572971993, 40.0090212659629 ] } }, +{ "type": "Feature", "properties": { "location": "3748 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143160572971993, 40.0090212659629 ] } }, +{ "type": "Feature", "properties": { "location": "4264 N FRANKLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139287769446298, 40.016394567357203 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W BUTLER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144481978408706, 40.010012953354 ] } }, +{ "type": "Feature", "properties": { "location": "176 W ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132437523716604, 39.998950668702498 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "4535 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1339778065974, 40.020564181502202 ] } }, +{ "type": "Feature", "properties": { "location": "4600 MASCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126113421821501, 40.021486574989297 ] } }, +{ "type": "Feature", "properties": { "location": "4600 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124605245093804, 40.020342680586303 ] } }, +{ "type": "Feature", "properties": { "location": "200 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1264943359743, 39.9992864705073 ] } }, +{ "type": "Feature", "properties": { "location": "200 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1264943359743, 39.9992864705073 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N HOWARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130147003518999, 39.999473548668703 ] } }, +{ "type": "Feature", "properties": { "location": "4700 N 4TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1315994415028, 40.022742780919302 ] } }, +{ "type": "Feature", "properties": { "location": "4600 C ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118471466957601, 40.020001298600299 ] } }, +{ "type": "Feature", "properties": { "location": "4622 HURLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117069388910593, 40.019822247547097 ] } }, +{ "type": "Feature", "properties": { "location": "600 E ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118433893288696, 40.000305814905801 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176765749099005, 39.933262690051798 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173056820277395, 39.931717734410398 ] } }, +{ "type": "Feature", "properties": { "location": "2500 W FIRTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173724614385307, 39.993699252267497 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165975943438994, 39.975404671037801 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183702050635304, 39.973542504934699 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174567893687396, 39.993582371013801 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174235957484697, 39.995116588785898 ] } }, +{ "type": "Feature", "properties": { "location": "1711 W ERIE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156418263650494, 40.009925105505502 ] } }, +{ "type": "Feature", "properties": { "location": "242 S 47TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235727, 39.957097 ] } }, +{ "type": "Feature", "properties": { "location": "3000 BALTZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185668260472099, 39.975894653422301 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175243, 39.945343 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163043, 39.922252 ] } }, +{ "type": "Feature", "properties": { "location": "6300 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228907420803395, 39.923982412725103 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146652, 39.93657 ] } }, +{ "type": "Feature", "properties": { "location": "835 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146688, 39.936513 ] } }, +{ "type": "Feature", "properties": { "location": "4300 ELSINORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106256530105895, 40.0137220135422 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137963, 39.963393 ] } }, +{ "type": "Feature", "properties": { "location": "1953 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153122, 39.945615 ] } }, +{ "type": "Feature", "properties": { "location": "5300 REINHARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220459404589107, 39.938675671415801 ] } }, +{ "type": "Feature", "properties": { "location": "100 DUPONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225835, 40.029613 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161087, 39.971607 ] } }, +{ "type": "Feature", "properties": { "location": "2126 S 58TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225224791299595, 39.9329487932335 ] } }, +{ "type": "Feature", "properties": { "location": "699 N BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166513, 39.966925 ] } }, +{ "type": "Feature", "properties": { "location": "701 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170543, 39.943383 ] } }, +{ "type": "Feature", "properties": { "location": "3631 OLD YORK RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147760625903402, 40.007983257951501 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E COLUMBIA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13107, 39.971147 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14285, 39.967293 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N MARVINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139303, 40.042252 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166283, 39.935438 ] } }, +{ "type": "Feature", "properties": { "location": "6000 CASTOR AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.082043, 40.034675 ] } }, +{ "type": "Feature", "properties": { "location": "4700 SANSOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216477799566107, 39.956615516869299 ] } }, +{ "type": "Feature", "properties": { "location": "6700 PASCHALL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235947746142699, 39.922570376817198 ] } }, +{ "type": "Feature", "properties": { "location": "1 SUMMER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140503, 39.954358 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140575, 39.954443 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15615, 39.939563 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 24TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178988, 39.952637 ] } }, +{ "type": "Feature", "properties": { "location": "3000 CEDAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.108478, 39.986795 ] } }, +{ "type": "Feature", "properties": { "location": "2424 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107953, 39.986262 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220433, 40.024822 ] } }, +{ "type": "Feature", "properties": { "location": "146 BREAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144018, 39.953493 ] } }, +{ "type": "Feature", "properties": { "location": "3100 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105423, 39.983512 ] } }, +{ "type": "Feature", "properties": { "location": "6800 GUYER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231966479437006, 39.916001945501797 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228635075555999, 39.9365864545656 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151903171246701, 39.966261014450403 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177433985981693, 39.965595945200903 ] } }, +{ "type": "Feature", "properties": { "location": "3100 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105382, 39.983463 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157160638096499, 39.9275444616488 ] } }, +{ "type": "Feature", "properties": { "location": "5400 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231141416693006, 39.978447410406197 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "2517 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178397, 39.971283 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159485, 39.976082 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176117, 39.941722 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086313, 40.013778 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086237, 40.013853 ] } }, +{ "type": "Feature", "properties": { "location": "900 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089113493495404, 40.033841531766797 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227018414596103, 39.942084266968202 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BRIGHTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069762, 40.047503 ] } }, +{ "type": "Feature", "properties": { "location": "400 S HUTCHINSON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157497, 39.944453 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153917, 39.927715 ] } }, +{ "type": "Feature", "properties": { "location": "500 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157373, 39.918978 ] } }, +{ "type": "Feature", "properties": { "location": "400 DURFOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154874097386497, 39.9194664364557 ] } }, +{ "type": "Feature", "properties": { "location": "545 ALCOTT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150582, 39.923187 ] } }, +{ "type": "Feature", "properties": { "location": "6400 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233735, 39.926107 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234334356912299, 39.926551786869403 ] } }, +{ "type": "Feature", "properties": { "location": "3800 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214773, 40.020602 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227333, 40.028522 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 49TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221012374254599, 39.9493775693768 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179817, 39.973402 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N COLORADO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153937220334996, 40.021787234766499 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CLARISSA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159185357306896, 40.017885204623497 ] } }, +{ "type": "Feature", "properties": { "location": "430 GASKILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150163, 39.942385 ] } }, +{ "type": "Feature", "properties": { "location": "6000 CHESTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232050332724398, 39.933274611828203 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154962, 39.932912 ] } }, +{ "type": "Feature", "properties": { "location": "1041 RIDGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156068023917996, 39.959979283882902 ] } }, +{ "type": "Feature", "properties": { "location": "1041 RIDGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156068023917996, 39.959979283882902 ] } }, +{ "type": "Feature", "properties": { "location": "2900 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193170188607894, 39.935777737130401 ] } }, +{ "type": "Feature", "properties": { "location": "5600 BINGHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103785338290095, 40.038645329735303 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150383826337801, 39.943541307388799 ] } }, +{ "type": "Feature", "properties": { "location": "200 E ELEANOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120960227366297, 40.023502219994199 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S SHERIDAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15544, 39.93319 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S SHERIDAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155418, 39.933192 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161812, 39.95718 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161777, 39.95711 ] } }, +{ "type": "Feature", "properties": { "location": "6421 VINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.248629736576305, 39.967672639913701 ] } }, +{ "type": "Feature", "properties": { "location": "200 N SIMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.249132547219006, 39.966953620790399 ] } }, +{ "type": "Feature", "properties": { "location": "5803 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225002091728697, 39.932126101603401 ] } }, +{ "type": "Feature", "properties": { "location": "5801 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225002091728697, 39.932126101603401 ] } }, +{ "type": "Feature", "properties": { "location": "5800 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225002091728697, 39.932126101603401 ] } }, +{ "type": "Feature", "properties": { "location": "5800 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225002091728697, 39.932126101603401 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070508, 40.046415 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157352, 39.926373 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168507, 39.924247 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 15TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167297, 39.94342 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 15TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167357, 39.943477 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170162, 39.949437 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154722, 39.954412 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170863, 39.965803 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153662, 39.942547 ] } }, +{ "type": "Feature", "properties": { "location": "1863 E CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114018583622695, 39.994666103132801 ] } }, +{ "type": "Feature", "properties": { "location": "8301 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.021779101925404, 40.043672141367203 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 19TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170188, 39.960068 ] } }, +{ "type": "Feature", "properties": { "location": "700 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.943738 ] } }, +{ "type": "Feature", "properties": { "location": "500 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15098, 39.944725 ] } }, +{ "type": "Feature", "properties": { "location": "400 RUSCOMB ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13249, 40.027262 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N LAWRENCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132353, 40.024472 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157198, 39.934872 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090857, 40.006958 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161171466496697, 39.9510466781093 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155168, 39.958893 ] } }, +{ "type": "Feature", "properties": { "location": "3500 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194052, 39.953887 ] } }, +{ "type": "Feature", "properties": { "location": "608 GREENWICH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155678, 39.929685 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155637, 39.929355 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187628, 39.958948 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167446901497499, 39.964931807016796 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22824, 40.028283 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160945, 39.951263 ] } }, +{ "type": "Feature", "properties": { "location": "1601 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "6325 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.054127522108701, 40.022600928592098 ] } }, +{ "type": "Feature", "properties": { "location": "237 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144850328033797, 39.965341596252799 ] } }, +{ "type": "Feature", "properties": { "location": "1700 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172994257574501, 39.935731232886901 ] } }, +{ "type": "Feature", "properties": { "location": "400 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216017592750603, 40.029829748777402 ] } }, +{ "type": "Feature", "properties": { "location": "800 N OPAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169040092833399, 39.970744905790099 ] } }, +{ "type": "Feature", "properties": { "location": "5100 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133976637496005, 40.029814709092499 ] } }, +{ "type": "Feature", "properties": { "location": "5100 N 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136928790448707, 40.030189670414799 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "8300 GERMANTOWN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203615, 40.074357 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175083, 39.947305 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105878, 39.996468 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104773, 39.9968 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1062, 39.996248 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153228, 39.938015 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086202, 40.01383 ] } }, +{ "type": "Feature", "properties": { "location": "1940 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177825348410494, 39.928375029531303 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174311313406093, 39.919848295484897 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "1600 UNITY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08757, 40.012358 ] } }, +{ "type": "Feature", "properties": { "location": "800 W VENANGO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142607214468896, 40.006501152173499 ] } }, +{ "type": "Feature", "properties": { "location": "800 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156463, 39.943547 ] } }, +{ "type": "Feature", "properties": { "location": "2300 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178565, 39.953268 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155588, 39.921278 ] } }, +{ "type": "Feature", "properties": { "location": "504 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15556, 39.92134 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "1633 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170177, 39.943338 ] } }, +{ "type": "Feature", "properties": { "location": "3100 E ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.119623083188799, 39.995868396655403 ] } }, +{ "type": "Feature", "properties": { "location": "2100 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17798, 39.945488 ] } }, +{ "type": "Feature", "properties": { "location": "2100 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178005, 39.945388 ] } }, +{ "type": "Feature", "properties": { "location": "1300 NECTARINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159653, 39.961535 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158368, 39.958383 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155253, 39.920845 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155348, 39.920732 ] } }, +{ "type": "Feature", "properties": { "location": "500 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154587003669803, 39.928227714014596 ] } }, +{ "type": "Feature", "properties": { "location": "3300 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191257, 39.963567 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156403, 39.960257 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167855, 39.93664 ] } }, +{ "type": "Feature", "properties": { "location": "600 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139302, 39.961055 ] } }, +{ "type": "Feature", "properties": { "location": "2767 N CROSKEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167967700637803, 39.996486482137399 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 65TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242932408146004, 39.929411955084497 ] } }, +{ "type": "Feature", "properties": { "location": "1456 N FELTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244265073578006, 39.9730740991834 ] } }, +{ "type": "Feature", "properties": { "location": "4632 GREENE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162122036631402, 40.0251220713672 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228258, 40.028555 ] } }, +{ "type": "Feature", "properties": { "location": "1725 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16281, 39.982518 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 62ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227716645364794, 39.925860546484401 ] } }, +{ "type": "Feature", "properties": { "location": "5500 HUNTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232471905832, 39.977571494189299 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E COLUMBIA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130652, 39.97066 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176538, 39.936805 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1200 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15967, 39.958317 ] } }, +{ "type": "Feature", "properties": { "location": "300 N SALFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239000713482994, 39.967260945880497 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225368, 40.027062 ] } }, +{ "type": "Feature", "properties": { "location": "5100 WARREN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224289526983597, 39.975006812802498 ] } }, +{ "type": "Feature", "properties": { "location": "622 S 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161798, 39.942493 ] } }, +{ "type": "Feature", "properties": { "location": "622 S 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161917, 39.942543 ] } }, +{ "type": "Feature", "properties": { "location": "4100 MAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "6800 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243161553093898, 39.925447691313501 ] } }, +{ "type": "Feature", "properties": { "location": "900 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15374, 39.95962 ] } }, +{ "type": "Feature", "properties": { "location": "449 N 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159518, 39.960925 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 66TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235351844095504, 39.924517135190897 ] } }, +{ "type": "Feature", "properties": { "location": "6500 SAYBROOK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234514023108801, 39.924764151939499 ] } }, +{ "type": "Feature", "properties": { "location": "5400 GREENWAY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220470871434898, 39.937273825363597 ] } }, +{ "type": "Feature", "properties": { "location": "1726 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133507, 39.975182 ] } }, +{ "type": "Feature", "properties": { "location": "1726 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133507, 39.975292 ] } }, +{ "type": "Feature", "properties": { "location": "1900 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168090695942496, 39.971261808840602 ] } }, +{ "type": "Feature", "properties": { "location": "3100 JANNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109234090987698, 39.989766051176296 ] } }, +{ "type": "Feature", "properties": { "location": "400 RUSCOMB ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132443, 40.02729 ] } }, +{ "type": "Feature", "properties": { "location": "2152 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17905, 39.942113 ] } }, +{ "type": "Feature", "properties": { "location": "3500 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192773, 39.96133 ] } }, +{ "type": "Feature", "properties": { "location": "5400 GREENWAY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220470871434898, 39.937273825363597 ] } }, +{ "type": "Feature", "properties": { "location": "919 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.937862 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178473318287104, 39.922957168176403 ] } }, +{ "type": "Feature", "properties": { "location": "1218 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163437273571901, 39.939270976189697 ] } }, +{ "type": "Feature", "properties": { "location": "523 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "1580 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225907424880603, 39.978578447106401 ] } }, +{ "type": "Feature", "properties": { "location": "1580 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225907424880603, 39.978578447106401 ] } }, +{ "type": "Feature", "properties": { "location": "1580 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225907424880603, 39.978578447106401 ] } }, +{ "type": "Feature", "properties": { "location": "1580 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225907424880603, 39.978578447106401 ] } }, +{ "type": "Feature", "properties": { "location": "1580 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225907424880603, 39.978578447106401 ] } }, +{ "type": "Feature", "properties": { "location": "1580 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225907424880603, 39.978578447106401 ] } }, +{ "type": "Feature", "properties": { "location": "1580 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225907424880603, 39.978578447106401 ] } }, +{ "type": "Feature", "properties": { "location": "1580 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225907424880603, 39.978578447106401 ] } }, +{ "type": "Feature", "properties": { "location": "1580 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225907424880603, 39.978578447106401 ] } }, +{ "type": "Feature", "properties": { "location": "18 N 58TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236743202564, 39.961783297774403 ] } }, +{ "type": "Feature", "properties": { "location": "4200 SILVERWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220185, 40.02521 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22419, 40.02831 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224218, 40.02831 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224467, 40.028105 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152438, 39.942405 ] } }, +{ "type": "Feature", "properties": { "location": "300 N WATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139863857269702, 39.956170716803904 ] } }, +{ "type": "Feature", "properties": { "location": "300 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131443785731804, 39.969843175205398 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W CLARKSON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13996, 40.036137 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W CLARKSON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140012, 40.036067 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152487, 39.942365 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153292, 39.942505 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173248, 39.925787 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191443324436705, 39.963213814021799 ] } }, +{ "type": "Feature", "properties": { "location": "6100 MORTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174701286183407, 40.0444329582077 ] } }, +{ "type": "Feature", "properties": { "location": "1444 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "5400 WISSAHICKON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179915, 40.024223 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ELLSWORTH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173318, 39.937643 ] } }, +{ "type": "Feature", "properties": { "location": "1800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17066, 39.951088 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MARSHALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147422, 39.97028 ] } }, +{ "type": "Feature", "properties": { "location": "300 W CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136922606209595, 39.994833681257198 ] } }, +{ "type": "Feature", "properties": { "location": "OPP422 S HUTCHINSON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157502, 39.943938 ] } }, +{ "type": "Feature", "properties": { "location": "100 W SPENCER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120769156140796, 40.043049748861797 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22801, 40.028242 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155134991948003, 39.925788626509402 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154738, 39.93126 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15472, 39.931127 ] } }, +{ "type": "Feature", "properties": { "location": "140 RICHMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133150125886999, 39.966583274063801 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170755, 39.94242 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170773, 39.942545 ] } }, +{ "type": "Feature", "properties": { "location": "5861 CEDAR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.239787492408297, 39.952068670958802 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0909, 40.007035 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170193, 39.942347 ] } }, +{ "type": "Feature", "properties": { "location": "501 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155486735485198, 39.921282863897098 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155613, 39.929193 ] } }, +{ "type": "Feature", "properties": { "location": "237 E TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124743875421501, 40.002662161274202 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134417, 39.972382 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134303, 39.97506 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155618, 39.929433 ] } }, +{ "type": "Feature", "properties": { "location": "200 BENNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104444536098498, 40.048879143714601 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123055, 39.97379 ] } }, +{ "type": "Feature", "properties": { "location": "608 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152725, 39.942502 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154147, 39.927012 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070495, 40.046408 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167097, 39.940537 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171897, 39.939795 ] } }, +{ "type": "Feature", "properties": { "location": "4400 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210165, 39.955083 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160182, 39.958987 ] } }, +{ "type": "Feature", "properties": { "location": "200 S PERTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1541, 39.946572 ] } }, +{ "type": "Feature", "properties": { "location": "200 S PERTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154235, 39.946353 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160355, 39.942155 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17067, 39.928272 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.925755 ] } }, +{ "type": "Feature", "properties": { "location": "5100 SHELDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161376441088805, 40.0342012052459 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228112, 40.028395 ] } }, +{ "type": "Feature", "properties": { "location": "3600 EVELINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.194057, 40.010078 ] } }, +{ "type": "Feature", "properties": { "location": "299 S WARNOCK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158542, 39.946482 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159167, 39.945402 ] } }, +{ "type": "Feature", "properties": { "location": "100 LEVERING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224465, 40.02616 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "100 RECTOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220408, 40.025073 ] } }, +{ "type": "Feature", "properties": { "location": "4300 MILNOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081398923645807, 40.004906881601698 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 48TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217083, 39.95826 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204372, 39.95665 ] } }, +{ "type": "Feature", "properties": { "location": "200 S BROAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164525, 39.948808 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174895, 39.96752 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171293, 39.940135 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150515, 39.982645 ] } }, +{ "type": "Feature", "properties": { "location": "540 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155407, 39.927173 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153885, 39.929027 ] } }, +{ "type": "Feature", "properties": { "location": "3246 N RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139391376674595, 40.000501153121 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161862, 39.942702 ] } }, +{ "type": "Feature", "properties": { "location": "300 DUPONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219643, 40.032665 ] } }, +{ "type": "Feature", "properties": { "location": "4800 DECATUR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.024698, 40.03261 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167037, 39.956152 ] } }, +{ "type": "Feature", "properties": { "location": "4200 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209368650864704, 39.973560098316199 ] } }, +{ "type": "Feature", "properties": { "location": "7300 BELDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068232, 40.052922 ] } }, +{ "type": "Feature", "properties": { "location": "2000 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1783, 39.937977 ] } }, +{ "type": "Feature", "properties": { "location": "300 CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138813, 39.955788 ] } }, +{ "type": "Feature", "properties": { "location": "800 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160925, 39.918155 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162667, 39.964685 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154769384778206, 39.993146815762302 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169808, 39.939473 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "3095 POTTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117251945440998, 39.994913960077199 ] } }, +{ "type": "Feature", "properties": { "location": "4000 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090753, 40.006672 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170475, 39.949225 ] } }, +{ "type": "Feature", "properties": { "location": "2300 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "9606 HOFF ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.031757189451795, 40.085665048050799 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156607, 39.987573 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160235, 39.960007 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16514, 39.935325 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147438, 39.935668 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158253, 39.962758 ] } }, +{ "type": "Feature", "properties": { "location": "1532 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16913, 39.940435 ] } }, +{ "type": "Feature", "properties": { "location": "8000 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.055855, 40.06197 ] } }, +{ "type": "Feature", "properties": { "location": "515 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120082654988195, 39.9995991366238 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 16TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163809086506504, 39.966836996444997 ] } }, +{ "type": "Feature", "properties": { "location": "2800 D ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122490065810396, 39.991795209483001 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.242699575852001, 39.980564852828898 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166445, 39.942508 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155188, 39.92075 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156408, 39.959748 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13934, 39.959045 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166648, 39.95427 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16914, 39.94715 ] } }, +{ "type": "Feature", "properties": { "location": "3500 G ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114418369115398, 40.0015963270829 ] } }, +{ "type": "Feature", "properties": { "location": "2900 TULIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114132687092393, 39.9860914464182 ] } }, +{ "type": "Feature", "properties": { "location": "400 W WELLENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130180988995207, 40.031163364334603 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S FRAZIER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235294379826698, 39.944535239797801 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178453, 39.96815 ] } }, +{ "type": "Feature", "properties": { "location": "4200 SILVERWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220297, 40.025147 ] } }, +{ "type": "Feature", "properties": { "location": "700 N FRONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13782, 39.964978 ] } }, +{ "type": "Feature", "properties": { "location": "900 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153498, 39.959632 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151265, 39.941437 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151088546391193, 39.941419223855597 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172385, 39.947013 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171925, 39.939725 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169805, 39.939472 ] } }, +{ "type": "Feature", "properties": { "location": "2200 DELANCEY PL", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179133, 39.948115 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14046, 39.965002 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "5800 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121478040567496, 40.039243066232899 ] } }, +{ "type": "Feature", "properties": { "location": "100 WIDENER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121441781882893, 40.040545052844003 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164585, 39.943925 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FAIRHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.920273 ] } }, +{ "type": "Feature", "properties": { "location": "4314 N PENN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.089737680997999, 40.012953291553202 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1745592450647, 39.935958819506297 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138743, 39.964338 ] } }, +{ "type": "Feature", "properties": { "location": "5500 RISING SUN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.110455, 40.038958 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162733, 39.938605 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168163, 39.939677 ] } }, +{ "type": "Feature", "properties": { "location": "400 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130470366894897, 40.032227804018802 ] } }, +{ "type": "Feature", "properties": { "location": "2314 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175112, 39.964898 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164127, 39.943308 ] } }, +{ "type": "Feature", "properties": { "location": "2900 RUTLEDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124318691473107, 39.993970860403799 ] } }, +{ "type": "Feature", "properties": { "location": "822 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241536944999297, 39.948522011361398 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197275, 39.95962 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155665, 39.929647 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155618, 39.929822 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1769, 39.921625 ] } }, +{ "type": "Feature", "properties": { "location": "6000 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241540167869601, 39.961263417181897 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15718, 39.942298 ] } }, +{ "type": "Feature", "properties": { "location": "605 S 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157152, 39.942358 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15557, 39.964302 ] } }, +{ "type": "Feature", "properties": { "location": "6600 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073054678703699, 40.041780568123997 ] } }, +{ "type": "Feature", "properties": { "location": "4300 BENNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.061040059802195, 40.022384366156501 ] } }, +{ "type": "Feature", "properties": { "location": "900 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143060030768794, 40.008191789944298 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 7TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154023, 39.941805 ] } }, +{ "type": "Feature", "properties": { "location": "500 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156133019332003, 39.9187939060904 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158732, 39.920343 ] } }, +{ "type": "Feature", "properties": { "location": "3815 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197863, 39.959988 ] } }, +{ "type": "Feature", "properties": { "location": "1848 S 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170752, 39.927105 ] } }, +{ "type": "Feature", "properties": { "location": "1400 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167025, 39.943372 ] } }, +{ "type": "Feature", "properties": { "location": "200 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150097, 39.929415 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142292, 39.970157 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142522, 39.969093 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FAIRHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156433, 39.920225 ] } }, +{ "type": "Feature", "properties": { "location": "3100 W CUMBERLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182737203127999, 39.994403651361502 ] } }, +{ "type": "Feature", "properties": { "location": "1200 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166327, 39.922722 ] } }, +{ "type": "Feature", "properties": { "location": "1200 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16634, 39.922707 ] } }, +{ "type": "Feature", "properties": { "location": "500 S SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161403, 39.94332 ] } }, +{ "type": "Feature", "properties": { "location": "1732 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17365, 39.929052 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196217, 39.957195 ] } }, +{ "type": "Feature", "properties": { "location": "269 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155993, 39.959012 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155605, 39.959335 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154332, 39.926985 ] } }, +{ "type": "Feature", "properties": { "location": "600 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156423238159604, 39.927220948577698 ] } }, +{ "type": "Feature", "properties": { "location": "232 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1264943359743, 39.9992864705073 ] } }, +{ "type": "Feature", "properties": { "location": "100 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.935985 ] } }, +{ "type": "Feature", "properties": { "location": "600 S LEITHGOW ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149862, 39.940883 ] } }, +{ "type": "Feature", "properties": { "location": "2225 WALLACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174863, 39.966795 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E LIPPINCOTT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114393, 39.99593 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15332, 39.942488 ] } }, +{ "type": "Feature", "properties": { "location": "3400 POWELTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192458, 39.959988 ] } }, +{ "type": "Feature", "properties": { "location": "900 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158937, 39.934712 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153133, 39.942483 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15257, 39.942383 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155267, 39.984388 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16839, 39.949152 ] } }, +{ "type": "Feature", "properties": { "location": "1401 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169269724172295, 39.928085368665201 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 43RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20869, 39.954918 ] } }, +{ "type": "Feature", "properties": { "location": "1012 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156688, 39.95466 ] } }, +{ "type": "Feature", "properties": { "location": "2044 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171778, 39.967292 ] } }, +{ "type": "Feature", "properties": { "location": "800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113921102918198, 39.998649280475497 ] } }, +{ "type": "Feature", "properties": { "location": "4099 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204513, 39.960075 ] } }, +{ "type": "Feature", "properties": { "location": "5100 N 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136928790448707, 40.030189670414799 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 39.952622 ] } }, +{ "type": "Feature", "properties": { "location": "1500 LUDLOW ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166602, 39.95232 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168413, 39.94364 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152483, 39.942422 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CLEVELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174034306340999, 39.937287882450697 ] } }, +{ "type": "Feature", "properties": { "location": "1800 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173645, 39.936792 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175097, 39.922515 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146728, 40.029535 ] } }, +{ "type": "Feature", "properties": { "location": "3600 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195343, 39.953142 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174805, 39.952443 ] } }, +{ "type": "Feature", "properties": { "location": "900 FITZWATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157613, 39.940862 ] } }, +{ "type": "Feature", "properties": { "location": "3400 ENGLEWOOD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.043255, 40.03732 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175785, 39.948048 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191962, 39.955578 ] } }, +{ "type": "Feature", "properties": { "location": "800 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181900742187693, 39.970805606270901 ] } }, +{ "type": "Feature", "properties": { "location": "7000 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.06948, 40.047557 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176917336998798, 39.928852042414398 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16075, 39.958852 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160099296902004, 39.983849577512302 ] } }, +{ "type": "Feature", "properties": { "location": "1900 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173028, 39.952073 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 13TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163487, 39.942922 ] } }, +{ "type": "Feature", "properties": { "location": "5800 ARCH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236811181670802, 39.9630881187448 ] } }, +{ "type": "Feature", "properties": { "location": "218 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124695974647196, 40.044583159159998 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161932, 39.971765 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166683, 39.953267 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166608, 39.95333 ] } }, +{ "type": "Feature", "properties": { "location": "4500 SILVERWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224102, 40.030292 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160658, 39.958793 ] } }, +{ "type": "Feature", "properties": { "location": "600 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152432, 39.944488 ] } }, +{ "type": "Feature", "properties": { "location": "1527 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153565, 39.929033 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154958, 39.929222 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176105, 39.952803 ] } }, +{ "type": "Feature", "properties": { "location": "200 HOWELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.106416551154197, 40.047784474725802 ] } }, +{ "type": "Feature", "properties": { "location": "6100 LUDLOW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243243866227303, 39.961476011197398 ] } }, +{ "type": "Feature", "properties": { "location": "4025 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203841274006905, 39.954267028178599 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134345, 39.972373 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09115, 40.00728 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1 W HIGHLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206637, 40.075807 ] } }, +{ "type": "Feature", "properties": { "location": "100 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134935, 39.977273 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160492, 39.926858 ] } }, +{ "type": "Feature", "properties": { "location": "444 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1543505694506, 39.921919685602901 ] } }, +{ "type": "Feature", "properties": { "location": "4744 MERIDIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.027962010602593, 40.032894661117197 ] } }, +{ "type": "Feature", "properties": { "location": "201 N 34TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190907, 39.95888 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ROSELYN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145814194491393, 40.045429064107303 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156103, 39.961183 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.089767, 40.009487 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156403, 39.960293 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156413, 39.960335 ] } }, +{ "type": "Feature", "properties": { "location": "3744 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143160572971993, 40.0090212659629 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183619473665203, 39.975309191876697 ] } }, +{ "type": "Feature", "properties": { "location": "4300 WAYNE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157749776061394, 40.018552045343398 ] } }, +{ "type": "Feature", "properties": { "location": "6200 PASCHALL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229683221714595, 39.926968566455301 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 57TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234950051921004, 39.960846575109898 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WARNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163438, 39.925847 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188888, 39.943152 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159287, 39.976692 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NEW MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138773, 39.965025 ] } }, +{ "type": "Feature", "properties": { "location": "1201 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15722, 39.933968 ] } }, +{ "type": "Feature", "properties": { "location": "4100 TERRACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216698, 40.024937 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CHURCHVIEW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216838, 40.024982 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PRESTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203772, 39.96024 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PRESTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203781769331002, 39.960880000049897 ] } }, +{ "type": "Feature", "properties": { "location": "100 N WOODSTOCK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173053, 39.957315 ] } }, +{ "type": "Feature", "properties": { "location": "4600 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1481, 40.023293 ] } }, +{ "type": "Feature", "properties": { "location": "2000 OAKFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178154846917295, 39.936649105467403 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197157, 39.954483 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S HICKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171529307727397, 39.926497961230901 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 62ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227716645364794, 39.925860546484401 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228197, 40.028398 ] } }, +{ "type": "Feature", "properties": { "location": "500 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145439531803007, 39.970246914864198 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.196953, 39.960807 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228215, 40.028337 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227962, 40.028262 ] } }, +{ "type": "Feature", "properties": { "location": "309 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205751356792106, 39.951250393516098 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227018414596103, 39.942084266968202 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KENILWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.942217 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150183, 40.003698 ] } }, +{ "type": "Feature", "properties": { "location": "2100 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174097, 39.96266 ] } }, +{ "type": "Feature", "properties": { "location": "900 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15986, 39.929713 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 13TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163528, 39.942963 ] } }, +{ "type": "Feature", "properties": { "location": "1913 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17666, 39.922652 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165435, 39.918643 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154893, 39.929448 ] } }, +{ "type": "Feature", "properties": { "location": "3800 SPRING GARDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.198317405410506, 39.962165895704999 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191827, 39.956825 ] } }, +{ "type": "Feature", "properties": { "location": "300 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152917232308994, 39.917092675955402 ] } }, +{ "type": "Feature", "properties": { "location": "2200 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17691, 39.957172 ] } }, +{ "type": "Feature", "properties": { "location": "57 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183803208680601, 40.044362678079104 ] } }, +{ "type": "Feature", "properties": { "location": "5401 WEBSTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232140940282605, 39.949042244151698 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159395, 39.976338 ] } }, +{ "type": "Feature", "properties": { "location": "118 N MOLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165007, 39.955798 ] } }, +{ "type": "Feature", "properties": { "location": "2300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178877, 39.951902 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 54TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227955, 39.966025 ] } }, +{ "type": "Feature", "properties": { "location": "4235 RHAWN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.027170504795194, 40.039073585015601 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164107, 39.93236 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S HUTCHINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162375, 39.92345 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S JUNIPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166843, 39.93283 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156897, 39.928157 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156798, 39.928193 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156808, 39.92812 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156838, 39.928182 ] } }, +{ "type": "Feature", "properties": { "location": "199 DUPONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22573, 40.029683 ] } }, +{ "type": "Feature", "properties": { "location": "600 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209785213627597, 40.0337570562289 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "1651 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154637, 39.962115 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156967, 39.928175 ] } }, +{ "type": "Feature", "properties": { "location": "4300 FLEMING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218418514643105, 40.0271391879539 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155287, 39.959683 ] } }, +{ "type": "Feature", "properties": { "location": "501 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155788, 39.921217 ] } }, +{ "type": "Feature", "properties": { "location": "1228 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158218, 39.962747 ] } }, +{ "type": "Feature", "properties": { "location": "1228 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158125, 39.962735 ] } }, +{ "type": "Feature", "properties": { "location": "1228 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158195, 39.962787 ] } }, +{ "type": "Feature", "properties": { "location": "1521 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163963, 39.96234 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158182, 39.962797 ] } }, +{ "type": "Feature", "properties": { "location": "5316 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226547591533901, 39.963373653187404 ] } }, +{ "type": "Feature", "properties": { "location": "2432 CARPENTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183907, 39.941282 ] } }, +{ "type": "Feature", "properties": { "location": "1247 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176962018839504, 39.936080429270703 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163517, 39.949903 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 6TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151963, 39.943818 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3100 POTTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114924971536098, 39.996205261446804 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177790549099996, 39.993006007408503 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OREGON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176452183596894, 39.917415980250802 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DRURY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162552, 39.950115 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158025, 39.924908 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157895, 39.924973 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171882, 39.922663 ] } }, +{ "type": "Feature", "properties": { "location": "1332 ARROTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086996525744595, 40.018308464117702 ] } }, +{ "type": "Feature", "properties": { "location": "100 RECTOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220487, 40.025095 ] } }, +{ "type": "Feature", "properties": { "location": "2042 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172123, 39.96589 ] } }, +{ "type": "Feature", "properties": { "location": "800 N BAMBREY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178895, 39.9714 ] } }, +{ "type": "Feature", "properties": { "location": "1430 S 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165825, 39.93195 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135038, 39.973298 ] } }, +{ "type": "Feature", "properties": { "location": "500 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145563, 39.969185 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SPRING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158482, 39.956288 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160941366333802, 39.968544012042102 ] } }, +{ "type": "Feature", "properties": { "location": "2205 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177507, 39.950705 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132993, 39.96909 ] } }, +{ "type": "Feature", "properties": { "location": "4199 TERRACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216873, 40.025037 ] } }, +{ "type": "Feature", "properties": { "location": "117 S 43RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208545, 39.955582 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 41ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204133, 39.956907 ] } }, +{ "type": "Feature", "properties": { "location": "1000 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160615, 39.935135 ] } }, +{ "type": "Feature", "properties": { "location": "6100 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.242425232232904, 39.9653451695144 ] } }, +{ "type": "Feature", "properties": { "location": "300 W WELLENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130180988995207, 40.031163364334603 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225805, 40.026472 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139253, 39.959192 ] } }, +{ "type": "Feature", "properties": { "location": "4400 MAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226373, 40.026578 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143927, 39.969742 ] } }, +{ "type": "Feature", "properties": { "location": "700 S ALDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237962069280897, 39.949912412608001 ] } }, +{ "type": "Feature", "properties": { "location": "1920 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163448, 39.983057 ] } }, +{ "type": "Feature", "properties": { "location": "1920 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163465, 39.983013 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "300 TREE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152771958573894, 39.920484775020199 ] } }, +{ "type": "Feature", "properties": { "location": "2638 E LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114404947942205, 39.978160705314103 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168727, 39.966175 ] } }, +{ "type": "Feature", "properties": { "location": "7200 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065833, 40.050338 ] } }, +{ "type": "Feature", "properties": { "location": "900 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15734, 39.943105 ] } }, +{ "type": "Feature", "properties": { "location": "6100 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "125 KRAMS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227115676315805, 40.029488736130801 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160765, 39.959078 ] } }, +{ "type": "Feature", "properties": { "location": "1430 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1595, 39.975098 ] } }, +{ "type": "Feature", "properties": { "location": "1034 MONTROSE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160592, 39.938732 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170435, 39.965735 ] } }, +{ "type": "Feature", "properties": { "location": "4199 TERRACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216778, 40.025042 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160957, 39.968375 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179715, 39.973803 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S ROSEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169093, 39.930468 ] } }, +{ "type": "Feature", "properties": { "location": "2100 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177995, 39.945492 ] } }, +{ "type": "Feature", "properties": { "location": "2201 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167854304503294, 39.995659356769202 ] } }, +{ "type": "Feature", "properties": { "location": "1626 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17002, 39.943248 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153132, 39.938135 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146635, 39.936885 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172317, 39.948408 ] } }, +{ "type": "Feature", "properties": { "location": "193 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15086, 40.0047 ] } }, +{ "type": "Feature", "properties": { "location": "7200 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041697, 40.036228 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122946882127707, 39.980510210651303 ] } }, +{ "type": "Feature", "properties": { "location": "4701 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132605243709804, 40.022877930401798 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155323, 39.959665 ] } }, +{ "type": "Feature", "properties": { "location": "1200 TREE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167817, 39.922523 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W OLNEY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143465, 40.038738 ] } }, +{ "type": "Feature", "properties": { "location": "600 E RAYMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112056349455401, 40.017840758811801 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176758235139502, 39.937035952880201 ] } }, +{ "type": "Feature", "properties": { "location": "7000 CALVERT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.059473990595194, 40.041338288584001 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221623809056894, 39.956159122193299 ] } }, +{ "type": "Feature", "properties": { "location": "427 N 64TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.247360879059798, 39.969852440477503 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165757, 39.932105 ] } }, +{ "type": "Feature", "properties": { "location": "4900 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219136358215906, 39.963889040961703 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196865, 39.960887 ] } }, +{ "type": "Feature", "properties": { "location": "6300 W COLUMBIA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.248858022990802, 39.9804374685231 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171162396795694, 39.925619608740199 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205317, 39.948472 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 39TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200037899589006, 39.960810576640597 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228395, 40.028405 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228289459865294, 40.028513298887397 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169045, 39.918288 ] } }, +{ "type": "Feature", "properties": { "location": "503 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155134991948003, 39.925788626509402 ] } }, +{ "type": "Feature", "properties": { "location": "100 RECTOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220295, 40.025137 ] } }, +{ "type": "Feature", "properties": { "location": "3700 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.195308, 39.959627 ] } }, +{ "type": "Feature", "properties": { "location": "3700 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.195308, 39.959693 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225155, 40.027217 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225992799238, 39.927020613403698 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145852, 39.97019 ] } }, +{ "type": "Feature", "properties": { "location": "803 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145667, 39.971518 ] } }, +{ "type": "Feature", "properties": { "location": "309 S 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168225, 39.947093 ] } }, +{ "type": "Feature", "properties": { "location": "10236 JEANES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.029526518499097, 40.111042077143999 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DYRE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.081702, 40.022677 ] } }, +{ "type": "Feature", "properties": { "location": "6200 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246078, 39.984512 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155665, 39.929428 ] } }, +{ "type": "Feature", "properties": { "location": "900 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153552, 39.959585 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 35TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.192352, 39.958623 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CHERRY ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1646, 39.955313 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 24TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17937, 39.95248 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170213, 39.93728 ] } }, +{ "type": "Feature", "properties": { "location": "2700 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175481259077003, 39.996888638528198 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157337, 39.92644 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155705, 39.929697 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "1430 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159363, 39.975025 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179773, 39.973418 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164211094318503, 39.926614023905799 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159555, 39.976 ] } }, +{ "type": "Feature", "properties": { "location": "532 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154680050836603, 39.927844419666698 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WENSLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117861770118196, 39.999497995092298 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W RUSH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15389, 39.995945 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073523, 40.043668 ] } }, +{ "type": "Feature", "properties": { "location": "6100 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125911479585994, 40.043983907694198 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124144188884202, 40.040619243780696 ] } }, +{ "type": "Feature", "properties": { "location": "5202 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070571837352503, 40.015432619831302 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164142, 39.932413 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159902, 39.978752 ] } }, +{ "type": "Feature", "properties": { "location": "2500 ASPEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17855, 39.968825 ] } }, +{ "type": "Feature", "properties": { "location": "800 GAUL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126245, 39.976125 ] } }, +{ "type": "Feature", "properties": { "location": "501 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155997, 39.92132 ] } }, +{ "type": "Feature", "properties": { "location": "921 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183702050635304, 39.973542504934699 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S MOLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171202680219693, 39.9302186466291 ] } }, +{ "type": "Feature", "properties": { "location": "715 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159105, 39.920582 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159028, 39.920538 ] } }, +{ "type": "Feature", "properties": { "location": "5800 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226106699183305, 39.932338541675101 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15559, 39.92938 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155615, 39.929203 ] } }, +{ "type": "Feature", "properties": { "location": "4700 RISING SUN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124397, 40.023033 ] } }, +{ "type": "Feature", "properties": { "location": "1550 S OPAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177317, 39.931885 ] } }, +{ "type": "Feature", "properties": { "location": "600 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155567, 39.932668 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "255 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16002, 39.958358 ] } }, +{ "type": "Feature", "properties": { "location": "400 W WYOMING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132583, 40.022628 ] } }, +{ "type": "Feature", "properties": { "location": "10604 COWDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.012860196107596, 40.101428496541203 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "1003 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139368165322793, 40.032879619642003 ] } }, +{ "type": "Feature", "properties": { "location": "4200 STATION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21987, 40.024072 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134393, 39.9724 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134235, 39.972363 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160678, 39.958682 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W ERIE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149452888609204, 40.009023130776399 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162703, 39.963843 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166068, 39.964172 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088508, 40.010878 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130866449841903, 40.025984921224399 ] } }, +{ "type": "Feature", "properties": { "location": "2412 N 19TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163343050527303, 39.991147137313902 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157727, 39.92531 ] } }, +{ "type": "Feature", "properties": { "location": "1 CHRISTIAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144465, 39.935317 ] } }, +{ "type": "Feature", "properties": { "location": "199 SUMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207339592961702, 40.018091950062697 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225587, 40.026963 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 36TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19389, 39.957813 ] } }, +{ "type": "Feature", "properties": { "location": "6300 HAVERFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245438987587505, 39.971925583226302 ] } }, +{ "type": "Feature", "properties": { "location": "1100 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160682, 39.942747 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108779703617003, 39.996269105585199 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108779703617003, 39.996269105585199 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212368, 40.021625 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234334356912299, 39.926551786869403 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "7800 MICHENER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163194727199894, 40.072692823884701 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164715, 39.964857 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127298235565505, 39.995328587683701 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169018329613905, 39.929306198693098 ] } }, +{ "type": "Feature", "properties": { "location": "300 W RUSCOMB ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130146415643793, 40.026977021534996 ] } }, +{ "type": "Feature", "properties": { "location": "6000 BELFIELD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170946925446401, 40.046630571460199 ] } }, +{ "type": "Feature", "properties": { "location": "1828 ELSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146455306917304, 40.0647585757198 ] } }, +{ "type": "Feature", "properties": { "location": "6100 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226582568443902, 39.926219003183597 ] } }, +{ "type": "Feature", "properties": { "location": "6700 BUIST AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231751826874103, 39.919045028464197 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 64TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231634273024895, 39.925225472959497 ] } }, +{ "type": "Feature", "properties": { "location": "501 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155828, 39.921292 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155675, 39.929718 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1471, 39.967043 ] } }, +{ "type": "Feature", "properties": { "location": "5900 BELMAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232404639496195, 39.935625107893401 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 69TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234423229857896, 39.916792894052001 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157363, 39.949292 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168512, 39.934083 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134328, 39.972547 ] } }, +{ "type": "Feature", "properties": { "location": "1300 LAWRENCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143843, 39.971352 ] } }, +{ "type": "Feature", "properties": { "location": "309 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157017801052902, 39.9576419838642 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N HOWARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133754831907893, 39.982565998832001 ] } }, +{ "type": "Feature", "properties": { "location": "2300 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17875, 39.953397 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214613238467905, 40.028512966070998 ] } }, +{ "type": "Feature", "properties": { "location": "4300 PECHIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215743069008198, 40.028984195871502 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROCK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206186511698206, 40.021404775790799 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228278, 40.028543 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228035, 40.02826 ] } }, +{ "type": "Feature", "properties": { "location": "100 DUPONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227750074937902, 40.028285816233797 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "3600 MANAYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208627542216703, 40.017007339487598 ] } }, +{ "type": "Feature", "properties": { "location": "199 SUMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207339592961702, 40.018091950062697 ] } }, +{ "type": "Feature", "properties": { "location": "300 LYCEUM AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219956696157595, 40.029184889785903 ] } }, +{ "type": "Feature", "properties": { "location": "4300 MITCHELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213701096702195, 40.029421824970903 ] } }, +{ "type": "Feature", "properties": { "location": "700 LIVEZEY LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219287344054806, 40.0454264352352 ] } }, +{ "type": "Feature", "properties": { "location": "7000 VALLEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219314418937898, 40.044461697376398 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "535 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "2024 S PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161772083382701, 39.923764960639403 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S BEULAH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159672571765, 39.918604543700397 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.069926599667994, 40.0466266245245 ] } }, +{ "type": "Feature", "properties": { "location": "119 FERN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120887658402097, 40.042541723495297 ] } }, +{ "type": "Feature", "properties": { "location": "100 W INDIANA AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130199697560101, 39.995495403139799 ] } }, +{ "type": "Feature", "properties": { "location": "300 E INDIANA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125693361915495, 39.9949131545753 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132292, 40.027878 ] } }, +{ "type": "Feature", "properties": { "location": "2700 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177816934622399, 39.997755626709598 ] } }, +{ "type": "Feature", "properties": { "location": "4200 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209368650864704, 39.973560098316199 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SWAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164153397583902, 39.967866122955101 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177430918820804, 39.9339415854758 ] } }, +{ "type": "Feature", "properties": { "location": "300 N SIMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.248783390947906, 39.967899780288903 ] } }, +{ "type": "Feature", "properties": { "location": "5301 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227147609813898, 39.960276140384302 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176398, 39.923927 ] } }, +{ "type": "Feature", "properties": { "location": "3305 POWELTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190160809927306, 39.960286023559597 ] } }, +{ "type": "Feature", "properties": { "location": "600 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156412, 39.924017 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ELLA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127298235565505, 39.995328587683701 ] } }, +{ "type": "Feature", "properties": { "location": "4307 OAKMONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.033477347449093, 40.036267504261602 ] } }, +{ "type": "Feature", "properties": { "location": "181 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "197 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "211 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "2015 DELANCEY PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17525, 39.947548 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142821154925102, 40.010562233606002 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152397, 40.007448 ] } }, +{ "type": "Feature", "properties": { "location": "2027 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173295, 39.925458 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17333, 39.92557 ] } }, +{ "type": "Feature", "properties": { "location": "2234 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158702, 39.92044 ] } }, +{ "type": "Feature", "properties": { "location": "2700 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131266217413199, 39.991752396303198 ] } }, +{ "type": "Feature", "properties": { "location": "199 JAMESTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21856, 40.023575 ] } }, +{ "type": "Feature", "properties": { "location": "199 JAMESTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218615, 40.02348 ] } }, +{ "type": "Feature", "properties": { "location": "6526 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230045163023405, 39.921006059095497 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "4000 COTTMAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.040265, 40.03625 ] } }, +{ "type": "Feature", "properties": { "location": "5725 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237167968744203, 39.977461788746801 ] } }, +{ "type": "Feature", "properties": { "location": "2300 SEARS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181549547984602, 39.935508384998897 ] } }, +{ "type": "Feature", "properties": { "location": "3100 RUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115007045035895, 39.995025697998699 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155127, 39.954392 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155988, 39.921278 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22822, 40.028462 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174383, 39.952817 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134367, 39.972373 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1439, 39.969783 ] } }, +{ "type": "Feature", "properties": { "location": "3813 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197595, 39.960055 ] } }, +{ "type": "Feature", "properties": { "location": "40 S REDFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239685884943697, 39.960653830849502 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15683, 39.92818 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174538, 39.953123 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.929522 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "2030 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "6140 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243886108039106, 39.961554576993997 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174658, 39.950793 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166062, 39.923063 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "2010 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150553, 39.942525 ] } }, +{ "type": "Feature", "properties": { "location": "2128 CATHARINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178517, 39.942333 ] } }, +{ "type": "Feature", "properties": { "location": "100 VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176525, 39.95207 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156445109110393, 39.985492335870703 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178817690940704, 39.993132392268002 ] } }, +{ "type": "Feature", "properties": { "location": "6100 MCCALLUM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180982963768102, 40.039728472431896 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E BIRCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117624145460198, 39.9916361934024 ] } }, +{ "type": "Feature", "properties": { "location": "2100 DIAMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168377748959898, 39.986255635617297 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156445109110393, 39.985492335870703 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S FALLON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211021775104399, 39.940821847371197 ] } }, +{ "type": "Feature", "properties": { "location": "17 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "17 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "9900 BRIDLE RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.037463646566195, 40.105161508049399 ] } }, +{ "type": "Feature", "properties": { "location": "445 JEANES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.029613761430198, 40.115432045406202 ] } }, +{ "type": "Feature", "properties": { "location": "191 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "193 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "533 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164257, 39.943272 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164048, 39.943273 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139362, 39.959178 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WYOMING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117437, 40.020667 ] } }, +{ "type": "Feature", "properties": { "location": "300 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216233997078703, 40.027777327623603 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163932, 39.91849 ] } }, +{ "type": "Feature", "properties": { "location": "1400 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134232, 39.972582 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "599 N WANAMAKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236181594397095, 39.969467678062301 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173681509071301, 39.923993053768399 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164211094318503, 39.926614023905799 ] } }, +{ "type": "Feature", "properties": { "location": "1400 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168752253412705, 39.930519072595303 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N 54TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2299122673531, 39.9813032724525 ] } }, +{ "type": "Feature", "properties": { "location": "2000 TITAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177549853521896, 39.9359178058968 ] } }, +{ "type": "Feature", "properties": { "location": "2000 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177549853521896, 39.9359178058968 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S HICKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170223298584304, 39.932606403333402 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15782, 39.958305 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N DELAWARE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132363, 39.966045 ] } }, +{ "type": "Feature", "properties": { "location": "500 S SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161363, 39.9434 ] } }, +{ "type": "Feature", "properties": { "location": "1000 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089406024067102, 40.0359479395254 ] } }, +{ "type": "Feature", "properties": { "location": "1000 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089406024067102, 40.0359479395254 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153485, 39.929372 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234334356912299, 39.926551786869403 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 61ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225992799238, 39.927020613403698 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "6791 CHESTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241658908483103, 39.926501138598098 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "1910 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169422, 39.965462 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHANCELLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2253, 39.95624 ] } }, +{ "type": "Feature", "properties": { "location": "700 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154963, 39.942725 ] } }, +{ "type": "Feature", "properties": { "location": "7200 REVERE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.053265, 40.043693 ] } }, +{ "type": "Feature", "properties": { "location": "600 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101522990646799, 40.039475632516002 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15541, 39.98458 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BACH PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165778, 39.94799 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16399, 39.945582 ] } }, +{ "type": "Feature", "properties": { "location": "6268 ALGARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057882359731906, 40.023646616197901 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228037, 40.028303 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22805, 40.028245 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143862, 39.969707 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14387, 39.969662 ] } }, +{ "type": "Feature", "properties": { "location": "4089 FORD RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214227098523097, 40.0008008022632 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1531 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169657158035093, 39.9696331656287 ] } }, +{ "type": "Feature", "properties": { "location": "107 N MOLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165742, 39.955988 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155525, 39.927682 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155625, 39.92992 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180864860096406, 39.942508322481601 ] } }, +{ "type": "Feature", "properties": { "location": "600 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15501, 39.937395 ] } }, +{ "type": "Feature", "properties": { "location": "820 CAMERON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166568065882103, 39.968816360528002 ] } }, +{ "type": "Feature", "properties": { "location": "200 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146775, 39.937985 ] } }, +{ "type": "Feature", "properties": { "location": "105 ROXBOROUGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221862, 40.025098 ] } }, +{ "type": "Feature", "properties": { "location": "4000 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136392314811204, 40.012809841857496 ] } }, +{ "type": "Feature", "properties": { "location": "4800 WALTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220118574760406, 39.948942652061298 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 36TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193963, 39.957778 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 60TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230020523147402, 39.932357952319698 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147855, 39.939545 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220372, 40.024835 ] } }, +{ "type": "Feature", "properties": { "location": "262 W CLAPIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167738455206802, 40.024263692138398 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126407, 39.972717 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1548418851402, 39.923474786287002 ] } }, +{ "type": "Feature", "properties": { "location": "3142 BIRCH RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.984218743453297, 40.098590357652803 ] } }, +{ "type": "Feature", "properties": { "location": "3500 J ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108361439712496, 40.000714353228503 ] } }, +{ "type": "Feature", "properties": { "location": "2200 E FLETCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128220215800994, 39.979189544465697 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173387, 39.925067 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173413, 39.925058 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162747, 39.9824 ] } }, +{ "type": "Feature", "properties": { "location": "1913 MCKEAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177675572415396, 39.926661451651597 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176308, 39.9214 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E CAYUGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107072981184899, 40.014602834197497 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146708, 39.96931 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "4200 SILVERWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220253, 40.025205 ] } }, +{ "type": "Feature", "properties": { "location": "1900 STERLING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149464295844496, 40.067772126999103 ] } }, +{ "type": "Feature", "properties": { "location": "541 W ERIE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138340326725498, 40.007584995559903 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SANSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213555, 39.95627 ] } }, +{ "type": "Feature", "properties": { "location": "700 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160045, 39.921863 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153672, 39.960553 ] } }, +{ "type": "Feature", "properties": { "location": "2111 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176297, 39.951723 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163672, 39.927245 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167388, 39.917665 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S FELTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230552201313998, 39.9272865233917 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W SCHOOL HOUSE LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186658, 40.023677 ] } }, +{ "type": "Feature", "properties": { "location": "2000 OAKFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173425, 39.924992 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173383, 39.925068 ] } }, +{ "type": "Feature", "properties": { "location": "500 CATHARINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151905, 39.938597 ] } }, +{ "type": "Feature", "properties": { "location": "500 CATHARINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151932, 39.938585 ] } }, +{ "type": "Feature", "properties": { "location": "500 CATHARINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151892, 39.938642 ] } }, +{ "type": "Feature", "properties": { "location": "600 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156423238159604, 39.927220948577698 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "100 WIDENER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121441781882893, 40.040545052844003 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153945060507994, 39.982820771933397 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W ROCKLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142277543801299, 40.0270048020679 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143294809954398, 40.027899861025901 ] } }, +{ "type": "Feature", "properties": { "location": "1 N FELTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245872, 39.962938 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164658498483007, 39.981444208252597 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N GRATZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164658498483007, 39.981444208252597 ] } }, +{ "type": "Feature", "properties": { "location": "855 STRAHLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072011580633003, 40.078232779421398 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170637, 39.923403 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224408, 40.028098 ] } }, +{ "type": "Feature", "properties": { "location": "3600 CALUMET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194024682651303, 40.012527821737997 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156098, 39.961182 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22808, 40.028288 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22827, 40.028377 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154983, 39.949065 ] } }, +{ "type": "Feature", "properties": { "location": "1149 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173443, 39.937112 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W SCHOOL HOUSE LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186753, 40.02368 ] } }, +{ "type": "Feature", "properties": { "location": "2513 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173382083977401, 39.995283103063301 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "5300 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218930283757999, 39.9373820931892 ] } }, +{ "type": "Feature", "properties": { "location": "613 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156512714226906, 39.926852111975499 ] } }, +{ "type": "Feature", "properties": { "location": "1813 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170782, 39.951278 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165678, 39.940363 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W OXFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160254334670697, 39.977541513740697 ] } }, +{ "type": "Feature", "properties": { "location": "3300 H ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.112876475067694, 39.998283943193002 ] } }, +{ "type": "Feature", "properties": { "location": "2408 E BOSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123761101400106, 39.978010073027001 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222978, 40.027623 ] } }, +{ "type": "Feature", "properties": { "location": "1200 JOHNSTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16949, 39.91528 ] } }, +{ "type": "Feature", "properties": { "location": "921 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156463, 39.937848 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N SYDENHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160802, 39.977608 ] } }, +{ "type": "Feature", "properties": { "location": "700 S MOLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168297, 39.942962 ] } }, +{ "type": "Feature", "properties": { "location": "9200 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.00448, 40.05485 ] } }, +{ "type": "Feature", "properties": { "location": "100 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213953, 40.021008 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WILLINGTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161732, 39.979838 ] } }, +{ "type": "Feature", "properties": { "location": "1724 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13352, 39.975228 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1581, 39.923367 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158683, 39.920545 ] } }, +{ "type": "Feature", "properties": { "location": "5860 ADDISON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239358129497901, 39.954141056685202 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 35TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192448, 39.958792 ] } }, +{ "type": "Feature", "properties": { "location": "7800 ERDRICK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.030487862368204, 40.038969648293197 ] } }, +{ "type": "Feature", "properties": { "location": "800 S VOGDES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234251080547693, 39.947719467894899 ] } }, +{ "type": "Feature", "properties": { "location": "9300 NEIL RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.043093581883198, 40.085036880182798 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 60TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243779395997706, 39.947511619780997 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N NEWKIRK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175516428937001, 40.005323661629902 ] } }, +{ "type": "Feature", "properties": { "location": "7100 STATE RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.034914901316995, 40.024162382782897 ] } }, +{ "type": "Feature", "properties": { "location": "7100 STATE RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.034914901316995, 40.024162382782897 ] } }, +{ "type": "Feature", "properties": { "location": "7100 STATE RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.034914901316995, 40.024162382782897 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14378, 40.042905 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138755, 39.96448 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146612, 39.936907 ] } }, +{ "type": "Feature", "properties": { "location": "5500 ARCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230834904233404, 39.962348157631297 ] } }, +{ "type": "Feature", "properties": { "location": "1699 ORTHODOX ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.084618, 40.01435 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0912, 40.007645 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183419604886694, 39.974802665553199 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228635075555999, 39.9365864545656 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12814, 39.967232 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176562, 39.922747 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107525136222904, 39.998658280984301 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159285, 39.976862 ] } }, +{ "type": "Feature", "properties": { "location": "6100 ARCH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.242742457301702, 39.963822645039002 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155262, 39.954438 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153678, 39.960257 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19112, 39.956 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228047, 40.028282 ] } }, +{ "type": "Feature", "properties": { "location": "1040 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141963, 39.967682 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "4200 GLENDALE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100596991993797, 40.011387851311902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N NEWKIRK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175516428937001, 40.005323661629902 ] } }, +{ "type": "Feature", "properties": { "location": "1500 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168812, 39.940777 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156492, 39.95941 ] } }, +{ "type": "Feature", "properties": { "location": "200 TROTTERS ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144438, 39.948752 ] } }, +{ "type": "Feature", "properties": { "location": "200 TROTTERS ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14421, 39.948862 ] } }, +{ "type": "Feature", "properties": { "location": "OPP218 S 51ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223607, 39.956113 ] } }, +{ "type": "Feature", "properties": { "location": "3300 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185788266778999, 39.997973176228498 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168423, 39.94361 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160295, 39.928232 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 3RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143032, 39.962615 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 3RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143118, 39.96253 ] } }, +{ "type": "Feature", "properties": { "location": "705 N 3RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14314, 39.962505 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224382, 40.028137 ] } }, +{ "type": "Feature", "properties": { "location": "10006 JEANES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.033539967124398, 40.106743685046801 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145537, 39.971858 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168145, 39.939787 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205318, 39.952775 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175378, 39.94348 ] } }, +{ "type": "Feature", "properties": { "location": "200 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225538, 40.030565 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157938, 39.924997 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N LEITHGOW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13156, 40.024563 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168340278154304, 39.999657792467197 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179722, 39.97391 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179807, 39.973627 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179677, 39.973902 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179692, 39.973908 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146603, 39.93637 ] } }, +{ "type": "Feature", "properties": { "location": "5503 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227076508861003, 39.9400228175314 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086265, 40.013778 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W RUSSELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145993942462695, 40.004414968980299 ] } }, +{ "type": "Feature", "properties": { "location": "2200 SHIELDS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235631033326896, 39.923731297543199 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142821154925102, 40.010562233606002 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149452888609204, 40.009023130776399 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160282, 39.946407 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ARLINGTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163407, 39.983512 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160082, 39.92047 ] } }, +{ "type": "Feature", "properties": { "location": "2399 W SEDGLEY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171382524472307, 39.991028065496401 ] } }, +{ "type": "Feature", "properties": { "location": "600 W TIOGA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139913267155293, 40.004620495513798 ] } }, +{ "type": "Feature", "properties": { "location": "13 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "617 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139241261315107, 40.007702724037003 ] } }, +{ "type": "Feature", "properties": { "location": "1013 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "4700 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128236836093194, 40.022465817052399 ] } }, +{ "type": "Feature", "properties": { "location": "300 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143758, 39.963672 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151903171246701, 39.966261014450403 ] } }, +{ "type": "Feature", "properties": { "location": "400 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146497, 39.963633 ] } }, +{ "type": "Feature", "properties": { "location": "174 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150517, 39.982638 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146757, 39.969293 ] } }, +{ "type": "Feature", "properties": { "location": "2600 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174956638260696, 39.995566750383901 ] } }, +{ "type": "Feature", "properties": { "location": "6300 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229337034842004, 39.924330545924001 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 3RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145898, 39.949418 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221922, 40.025843 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151980759244196, 39.982571050684598 ] } }, +{ "type": "Feature", "properties": { "location": "5600 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234182550131493, 39.959587991555303 ] } }, +{ "type": "Feature", "properties": { "location": "5819 WALTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239994780185597, 39.951074446819199 ] } }, +{ "type": "Feature", "properties": { "location": "4100 BALTIMORE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206449208973694, 39.949809653444099 ] } }, +{ "type": "Feature", "properties": { "location": "2100 DORRANCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177152, 39.925047 ] } }, +{ "type": "Feature", "properties": { "location": "1130 S FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146126490514405, 39.931517430836301 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228322, 40.028572 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12997, 39.973738 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174052, 39.952902 ] } }, +{ "type": "Feature", "properties": { "location": "7600 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.060697, 40.057113 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139038652727706, 39.9974064037863 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155763, 39.929745 ] } }, +{ "type": "Feature", "properties": { "location": "6400 SAYBROOK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233106210006298, 39.925505904378497 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15929, 39.976698 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159527, 39.958758 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159858, 39.973307 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W OLNEY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138127, 40.037593 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176997, 39.953622 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104597, 39.996597 ] } }, +{ "type": "Feature", "properties": { "location": "1200 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165655, 39.930133 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153265, 39.934218 ] } }, +{ "type": "Feature", "properties": { "location": "100 PENSDALE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218502, 40.024723 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170222, 39.942402 ] } }, +{ "type": "Feature", "properties": { "location": "3100 G ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1157129466242, 39.9954894751273 ] } }, +{ "type": "Feature", "properties": { "location": "3127 F ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117533000249296, 39.996340136029701 ] } }, +{ "type": "Feature", "properties": { "location": "7037 OLD YORK RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137728699734197, 40.060192478512 ] } }, +{ "type": "Feature", "properties": { "location": "515 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164107, 39.94399 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174695, 39.93931 ] } }, +{ "type": "Feature", "properties": { "location": "3300 FREDERICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19397, 40.010073 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150223, 40.003717 ] } }, +{ "type": "Feature", "properties": { "location": "162 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "4700 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128272, 40.02212 ] } }, +{ "type": "Feature", "properties": { "location": "1119 MOORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164233, 39.927405 ] } }, +{ "type": "Feature", "properties": { "location": "3500 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192615, 39.958022 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225488, 40.026963 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228295, 40.028545 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14275, 39.961302 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 45TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211067547121701, 39.947524226695499 ] } }, +{ "type": "Feature", "properties": { "location": "200 BERKLEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162244399438904, 40.022121445159399 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156973, 39.935307 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157855, 39.961292 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMITAGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229252, 40.032067 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152569392695199, 39.935608871022403 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.069926599667994, 40.0466266245245 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134903, 39.974057 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161728, 39.928247 ] } }, +{ "type": "Feature", "properties": { "location": "500 W LUZERNE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136198231987507, 40.012026523666897 ] } }, +{ "type": "Feature", "properties": { "location": "2700 N TAYLOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171621811166702, 39.996962426509697 ] } }, +{ "type": "Feature", "properties": { "location": "5100 GRISCOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.080245, 40.021887 ] } }, +{ "type": "Feature", "properties": { "location": "2200 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175632, 39.965043 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228068, 40.028322 ] } }, +{ "type": "Feature", "properties": { "location": "2640 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233394290358703, 39.916809360825901 ] } }, +{ "type": "Feature", "properties": { "location": "4200 MAYWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099188672810698, 40.011204897964099 ] } }, +{ "type": "Feature", "properties": { "location": "1322 LOCUST ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162872277543499, 39.947999965756402 ] } }, +{ "type": "Feature", "properties": { "location": "1941 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1199 S 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178658, 39.937628 ] } }, +{ "type": "Feature", "properties": { "location": "1300 PRATT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.080555, 40.023827 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174252, 39.953 ] } }, +{ "type": "Feature", "properties": { "location": "1740 S 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172022, 39.928762 ] } }, +{ "type": "Feature", "properties": { "location": "5837 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240841675804504, 39.947002722368403 ] } }, +{ "type": "Feature", "properties": { "location": "3600 ELDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149402, 40.00764 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E AUBURN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115374822024805, 39.985192824258903 ] } }, +{ "type": "Feature", "properties": { "location": "100 E LURAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12443, 40.02071 ] } }, +{ "type": "Feature", "properties": { "location": "4700 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128283, 40.022098 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157925, 39.949407 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150242, 40.003727 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170857, 39.934622 ] } }, +{ "type": "Feature", "properties": { "location": "715 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159133, 39.920635 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228047, 40.028323 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228038, 40.028375 ] } }, +{ "type": "Feature", "properties": { "location": "1334 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168595, 39.933317 ] } }, +{ "type": "Feature", "properties": { "location": "3900 MAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216692, 40.020898 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152977, 39.924753 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W RUSH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399356008104, 39.995740695418299 ] } }, +{ "type": "Feature", "properties": { "location": "1 N EDGEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241295, 39.962265 ] } }, +{ "type": "Feature", "properties": { "location": "300 PENSDALE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215160633489702, 40.0263734390021 ] } }, +{ "type": "Feature", "properties": { "location": "3900 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197775, 39.960737 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157453, 39.955897 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170358, 39.920532 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14678, 39.969385 ] } }, +{ "type": "Feature", "properties": { "location": "600 THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146547, 39.971673 ] } }, +{ "type": "Feature", "properties": { "location": "500 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146263, 39.971605 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142323, 39.970185 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142272, 39.970257 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130307, 39.972067 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130603, 39.972455 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130715, 39.972675 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ATLANTIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149183, 40.006358 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086363, 40.015228 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159988, 39.924858 ] } }, +{ "type": "Feature", "properties": { "location": "100 MARKLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214212, 40.0229 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170186833699304, 39.930086581871301 ] } }, +{ "type": "Feature", "properties": { "location": "3600 STOKLEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182278, 40.020948 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191602042293795, 39.931811227138503 ] } }, +{ "type": "Feature", "properties": { "location": "5000 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.222787312603998, 39.955443893626999 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170723, 39.948397 ] } }, +{ "type": "Feature", "properties": { "location": "4000 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205237, 39.94847 ] } }, +{ "type": "Feature", "properties": { "location": "4700 HAZEL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217830993623295, 39.950149293054103 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E FLETCHER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124405, 39.973228 ] } }, +{ "type": "Feature", "properties": { "location": "249 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205468, 39.952692 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168888, 39.920405 ] } }, +{ "type": "Feature", "properties": { "location": "1209 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173785, 39.936323 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170768, 39.935795 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191762, 39.954623 ] } }, +{ "type": "Feature", "properties": { "location": "426 E CLEARFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122815867009095, 39.996075181273298 ] } }, +{ "type": "Feature", "properties": { "location": "623 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153083, 39.94253 ] } }, +{ "type": "Feature", "properties": { "location": "623 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152998, 39.942463 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073522, 40.04363 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134287, 39.972378 ] } }, +{ "type": "Feature", "properties": { "location": "623 E ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.118493, 39.99728 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WARNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16356, 39.925315 ] } }, +{ "type": "Feature", "properties": { "location": "6600 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235898990721395, 39.9244707588648 ] } }, +{ "type": "Feature", "properties": { "location": "1135 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166233, 39.9201 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 6TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1507, 39.94858 ] } }, +{ "type": "Feature", "properties": { "location": "850 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151814472821897, 39.966859140845997 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151903171246701, 39.966261014450403 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22561, 40.027877 ] } }, +{ "type": "Feature", "properties": { "location": "2200 NAUDAIN ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179112, 39.945952 ] } }, +{ "type": "Feature", "properties": { "location": "300 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144422, 39.963813 ] } }, +{ "type": "Feature", "properties": { "location": "1600 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1603648318994, 39.986322712978101 ] } }, +{ "type": "Feature", "properties": { "location": "800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113921102918198, 39.998649280475497 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234334356912299, 39.926551786869403 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 27TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178159149981994, 39.984592578310902 ] } }, +{ "type": "Feature", "properties": { "location": "1920 N 27TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177357436266007, 39.985098386991602 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156412, 39.95804 ] } }, +{ "type": "Feature", "properties": { "location": "2000 FRALEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.066285483562794, 40.0151199223641 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KENILWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163073, 39.941995 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W WILLARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175625107271003, 40.006139995705098 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123928205195398, 40.023486721435098 ] } }, +{ "type": "Feature", "properties": { "location": "2549 E NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124837, 39.975295 ] } }, +{ "type": "Feature", "properties": { "location": "190 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122597094140701, 40.044310069466398 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156738, 39.952633 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152525, 39.942143 ] } }, +{ "type": "Feature", "properties": { "location": "1500 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168665, 39.938132 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155243, 39.92077 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115747, 39.995077 ] } }, +{ "type": "Feature", "properties": { "location": "1 E ALLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135222, 39.9655 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164158, 39.94325 ] } }, +{ "type": "Feature", "properties": { "location": "5300 W THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228275118201694, 39.972728474650403 ] } }, +{ "type": "Feature", "properties": { "location": "3726 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143160572971993, 40.0090212659629 ] } }, +{ "type": "Feature", "properties": { "location": "3736 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143160572971993, 40.0090212659629 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134382, 39.972568 ] } }, +{ "type": "Feature", "properties": { "location": "3100 S LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158513, 39.90368 ] } }, +{ "type": "Feature", "properties": { "location": "1626 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170113, 39.943312 ] } }, +{ "type": "Feature", "properties": { "location": "1626 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17004, 39.94325 ] } }, +{ "type": "Feature", "properties": { "location": "1626 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169948, 39.943297 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 55TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229306935870099, 39.9429622730378 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 55TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229306935870099, 39.9429622730378 ] } }, +{ "type": "Feature", "properties": { "location": "900 N PENN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135112, 39.962618 ] } }, +{ "type": "Feature", "properties": { "location": "7126 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.067746600068503, 40.048324678195499 ] } }, +{ "type": "Feature", "properties": { "location": "1 SUMMER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140363, 39.954235 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141257, 39.952893 ] } }, +{ "type": "Feature", "properties": { "location": "600 WILLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149258, 39.958618 ] } }, +{ "type": "Feature", "properties": { "location": "5700 CHARLES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068283297670703, 40.0223232312199 ] } }, +{ "type": "Feature", "properties": { "location": "5400 THOMAS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230686975734997, 39.945825744648701 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 22ND ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176018, 39.956005 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225090148463295, 40.028901944853203 ] } }, +{ "type": "Feature", "properties": { "location": "4000 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204512, 39.959018 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225375, 40.02722 ] } }, +{ "type": "Feature", "properties": { "location": "123 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213525, 39.95625 ] } }, +{ "type": "Feature", "properties": { "location": "130 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21353, 39.956185 ] } }, +{ "type": "Feature", "properties": { "location": "4729 N 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131491903020702, 40.023248445009401 ] } }, +{ "type": "Feature", "properties": { "location": "129 E ROOSEVELT BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122333, 40.026132 ] } }, +{ "type": "Feature", "properties": { "location": "5000 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079907, 40.021048 ] } }, +{ "type": "Feature", "properties": { "location": "159 GREEN LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225093, 40.0284 ] } }, +{ "type": "Feature", "properties": { "location": "5500 BELMAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226665671444493, 39.939662556292902 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1526, 39.942457 ] } }, +{ "type": "Feature", "properties": { "location": "4600 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213353, 39.946555 ] } }, +{ "type": "Feature", "properties": { "location": "119 E ALLEGHENY AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128944823326904, 39.99850033717 ] } }, +{ "type": "Feature", "properties": { "location": "700 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159625, 39.916667 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174070073437704, 39.930786988212702 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153247, 39.942518 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156373, 39.960307 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "800 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16116, 39.91685 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177523, 39.942802 ] } }, +{ "type": "Feature", "properties": { "location": "1 CHRISTIAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144323, 39.935278 ] } }, +{ "type": "Feature", "properties": { "location": "1900 ARCH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172775, 39.956072 ] } }, +{ "type": "Feature", "properties": { "location": "3200 BOUDINOT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1220673724047, 39.998428102884098 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224345, 40.028307 ] } }, +{ "type": "Feature", "properties": { "location": "4408 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157178, 39.942323 ] } }, +{ "type": "Feature", "properties": { "location": "1 E HIGHLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206233, 40.076202 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073762, 40.043323 ] } }, +{ "type": "Feature", "properties": { "location": "100 E WYOMING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123386616843007, 40.021434458019897 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146697, 39.936417 ] } }, +{ "type": "Feature", "properties": { "location": "3900 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202773, 39.951237 ] } }, +{ "type": "Feature", "properties": { "location": "1774 S AVONDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240181023861297, 39.929679972394403 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N FELTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244370963723995, 39.974672494528903 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228257, 40.02843 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140962, 40.03934 ] } }, +{ "type": "Feature", "properties": { "location": "6400 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.248013604181594, 39.969154917799997 ] } }, +{ "type": "Feature", "properties": { "location": "300 CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138867, 39.955753 ] } }, +{ "type": "Feature", "properties": { "location": "199 N 21ST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174125, 39.95737 ] } }, +{ "type": "Feature", "properties": { "location": "107 W GODFREY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.120461636993198, 40.044602770932599 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123275, 39.97342 ] } }, +{ "type": "Feature", "properties": { "location": "6738 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072454617014998, 40.043343221884101 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218593, 40.023442 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LARDNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0795396301408, 40.035554269592197 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 6TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150688, 39.948462 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143842, 39.969625 ] } }, +{ "type": "Feature", "properties": { "location": "1741 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171383, 39.945372 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168213, 39.94711 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166925, 39.953067 ] } }, +{ "type": "Feature", "properties": { "location": "6003 REACH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104370460730905, 40.047555071050901 ] } }, +{ "type": "Feature", "properties": { "location": "500 ELKINS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132253, 40.037417 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N FRONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135665, 39.97027 ] } }, +{ "type": "Feature", "properties": { "location": "2000 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170468, 39.971513 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175465, 39.947142 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155432, 39.990417 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159288, 39.97692 ] } }, +{ "type": "Feature", "properties": { "location": "1007 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163403864120397, 39.924809253297802 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170468, 39.96555 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228115, 40.028288 ] } }, +{ "type": "Feature", "properties": { "location": "400 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137727, 39.95802 ] } }, +{ "type": "Feature", "properties": { "location": "200 N ALDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234860645026004, 39.964797187948498 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171381161608906, 39.993215653026702 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167082, 39.940575 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166982, 39.940525 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167127, 39.940535 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.089823, 40.009533 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W ERIE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149452888609204, 40.009023130776399 ] } }, +{ "type": "Feature", "properties": { "location": "2000 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163457, 39.950623 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163505, 39.950003 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17233, 39.948125 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152405, 39.942463 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.060648, 40.057108 ] } }, +{ "type": "Feature", "properties": { "location": "2400 ASPEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177382, 39.968828 ] } }, +{ "type": "Feature", "properties": { "location": "1731 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13346, 39.975458 ] } }, +{ "type": "Feature", "properties": { "location": "2403 NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127315, 39.976703 ] } }, +{ "type": "Feature", "properties": { "location": "2403 NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127247, 39.976637 ] } }, +{ "type": "Feature", "properties": { "location": "5517 SPRAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158822438163995, 40.046837955202101 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182707, 39.9707 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170198, 39.936278 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171118, 39.923388 ] } }, +{ "type": "Feature", "properties": { "location": "3500 RYAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041257, 40.037758 ] } }, +{ "type": "Feature", "properties": { "location": "1400 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166387, 39.94337 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090947, 40.007545 ] } }, +{ "type": "Feature", "properties": { "location": "4600 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213003880532, 39.946654764117703 ] } }, +{ "type": "Feature", "properties": { "location": "3500 COTTMAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041462, 40.037097 ] } }, +{ "type": "Feature", "properties": { "location": "E 200TH GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133628, 39.969015 ] } }, +{ "type": "Feature", "properties": { "location": "100 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133617, 39.968998 ] } }, +{ "type": "Feature", "properties": { "location": "40 N YEWDALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229074391941097, 39.961320764846398 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206387, 39.956168 ] } }, +{ "type": "Feature", "properties": { "location": "715 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159145, 39.920605 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184468, 39.955615 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182937, 39.956597 ] } }, +{ "type": "Feature", "properties": { "location": "100 MANHEIM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1673254840738, 40.028259431388697 ] } }, +{ "type": "Feature", "properties": { "location": "102 DURFOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149776944048597, 39.918809227849799 ] } }, +{ "type": "Feature", "properties": { "location": "400 LINDLEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132037, 40.028698 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158648, 39.920377 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155582, 39.929418 ] } }, +{ "type": "Feature", "properties": { "location": "600 ORIANNA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147997, 39.941477 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "2600 BUCKIUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071080647313394, 40.002295166573901 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 7TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153208, 39.945165 ] } }, +{ "type": "Feature", "properties": { "location": "100 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173938611328893, 40.038159691523902 ] } }, +{ "type": "Feature", "properties": { "location": "1 N PRESTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203418, 39.95737 ] } }, +{ "type": "Feature", "properties": { "location": "4153 JAMESTOWN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216717, 40.025008 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181051182569703, 39.941664478312198 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178862, 39.920485 ] } }, +{ "type": "Feature", "properties": { "location": "600 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153497, 39.941773 ] } }, +{ "type": "Feature", "properties": { "location": "700 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155587, 39.939557 ] } }, +{ "type": "Feature", "properties": { "location": "5300 HEDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.074747708484196, 40.022134073615099 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FRALEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064564938326498, 40.0105521783182 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1752, 39.94396 ] } }, +{ "type": "Feature", "properties": { "location": "2050 E HAGERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127800598397201, 39.983536952425602 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22807, 40.028315 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228, 40.028267 ] } }, +{ "type": "Feature", "properties": { "location": "1712 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171698, 39.940288 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173872, 39.94882 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 20TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170212, 39.966905 ] } }, +{ "type": "Feature", "properties": { "location": "4900 RENO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219485482144293, 39.966638893961701 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162646862229295, 39.9721612594712 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159823, 39.929455 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176028, 39.953753 ] } }, +{ "type": "Feature", "properties": { "location": "5200 SAYBROOK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216127391859501, 39.937834875387097 ] } }, +{ "type": "Feature", "properties": { "location": "3600 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195368, 39.953202 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157902, 39.924937 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088552, 40.01096 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOMRATH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089978, 40.008732 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.086192, 40.01375 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192205, 39.952752 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 38TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199077, 39.953157 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197027, 39.950992 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19702, 39.951073 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196908, 39.951035 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19196, 39.953625 ] } }, +{ "type": "Feature", "properties": { "location": "1300 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164492, 39.943118 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17067, 39.920742 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212367, 40.021693 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149443, 40.005263 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164167, 39.94265 ] } }, +{ "type": "Feature", "properties": { "location": "623 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164143, 39.942845 ] } }, +{ "type": "Feature", "properties": { "location": "4000 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204132, 39.953118 ] } }, +{ "type": "Feature", "properties": { "location": "2900 A ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128156246065501, 39.994476132626097 ] } }, +{ "type": "Feature", "properties": { "location": "3900 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200316548392394, 39.960534383626403 ] } }, +{ "type": "Feature", "properties": { "location": "2100 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169875744500203, 39.978119187698901 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176387582127603, 39.931294245249298 ] } }, +{ "type": "Feature", "properties": { "location": "3600 EMERALD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.101159003916905, 39.999540802152602 ] } }, +{ "type": "Feature", "properties": { "location": "5811 WALTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239994780185597, 39.951074446819199 ] } }, +{ "type": "Feature", "properties": { "location": "2700 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175481259077003, 39.996888638528198 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091027, 40.007205 ] } }, +{ "type": "Feature", "properties": { "location": "1399 W TABOR RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143773, 40.037978 ] } }, +{ "type": "Feature", "properties": { "location": "4700 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12412, 40.02288 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166403252086198, 39.9511677407707 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N DARIEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141419388586598, 40.011928406579102 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17413, 39.946212 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175227, 39.94721 ] } }, +{ "type": "Feature", "properties": { "location": "1200 BIGLER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169213, 39.91394 ] } }, +{ "type": "Feature", "properties": { "location": "519 S 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157038, 39.942818 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160242, 39.966388 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160225, 39.966475 ] } }, +{ "type": "Feature", "properties": { "location": "1213 CREASE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132933, 39.96984 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176215, 39.939925 ] } }, +{ "type": "Feature", "properties": { "location": "2448 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166985, 39.919047 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127365, 39.976945 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164225, 39.932403 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14393, 39.969745 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143907, 39.969757 ] } }, +{ "type": "Feature", "properties": { "location": "8000 CASTOR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.055475, 40.062263 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MOUNT VERNON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16086, 39.964033 ] } }, +{ "type": "Feature", "properties": { "location": "4600 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085453, 40.01479 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140354590774606, 39.994504961216897 ] } }, +{ "type": "Feature", "properties": { "location": "900 N HANCOCK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139977, 39.963812 ] } }, +{ "type": "Feature", "properties": { "location": "900 N HANCOCK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13994, 39.963833 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CARDINAL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.24005, 39.992025 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 37TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195097, 39.958615 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181967, 39.974385 ] } }, +{ "type": "Feature", "properties": { "location": "4800 E ROOSEVELT BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.097023112691502, 40.026825319431403 ] } }, +{ "type": "Feature", "properties": { "location": "7500 COTTAGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.033331266787897, 40.035597517156297 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "3900 BALTIMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202877, 39.949975 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W CLARKSON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13987, 40.03605 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227973, 40.02824 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22435, 40.028202 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224447, 40.028128 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17043, 39.965592 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170562, 39.965682 ] } }, +{ "type": "Feature", "properties": { "location": "300 N SALFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.239000713482994, 39.967260945880497 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160887, 39.958743 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157738, 39.949058 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073783, 40.043412 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W CABOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1663508153664, 39.973704263833497 ] } }, +{ "type": "Feature", "properties": { "location": "3100 RUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115007045035895, 39.995025697998699 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208937, 39.943827 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15496, 39.929582 ] } }, +{ "type": "Feature", "properties": { "location": "300 GRAPE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218368, 40.028173 ] } }, +{ "type": "Feature", "properties": { "location": "200 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13395, 39.9705 ] } }, +{ "type": "Feature", "properties": { "location": "5400 DISCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080774113352902, 40.028712277559798 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MORRIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168113, 39.929247 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157955, 39.95813 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1722, 39.928442 ] } }, +{ "type": "Feature", "properties": { "location": "3433 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.192065679650696, 39.9577459670815 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17525, 39.921315 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156955, 39.958202 ] } }, +{ "type": "Feature", "properties": { "location": "2401 W ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169421185236303, 40.003722144331697 ] } }, +{ "type": "Feature", "properties": { "location": "168 FARISTON DR", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116243766531198, 40.048681225098498 ] } }, +{ "type": "Feature", "properties": { "location": "4100 RENO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207234926472594, 39.9674904970894 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22181, 40.030388 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09096, 40.007167 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1422, 39.966568 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160287, 39.966505 ] } }, +{ "type": "Feature", "properties": { "location": "500 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156065, 39.92082 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155758, 39.928923 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155522, 39.929955 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155558, 39.929858 ] } }, +{ "type": "Feature", "properties": { "location": "609 CROSS ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155757, 39.929328 ] } }, +{ "type": "Feature", "properties": { "location": "200 S PERTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154133, 39.946672 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175128, 39.936995 ] } }, +{ "type": "Feature", "properties": { "location": "5019 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227845428385095, 39.989302851079799 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134302, 39.9725 ] } }, +{ "type": "Feature", "properties": { "location": "1499 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134105, 39.972932 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153448, 39.928892 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.069926599667994, 40.0466266245245 ] } }, +{ "type": "Feature", "properties": { "location": "700 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154908, 39.939488 ] } }, +{ "type": "Feature", "properties": { "location": "800 N WATTS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159037014983795, 39.969397942893998 ] } }, +{ "type": "Feature", "properties": { "location": "3321 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111371859365207, 39.998630400763197 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S SALFORD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228943301849299, 39.932395025751099 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175045, 39.922483 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14224, 40.039497 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134272, 39.972367 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174885, 39.947152 ] } }, +{ "type": "Feature", "properties": { "location": "4102 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2141765375261, 40.024378012395402 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123055, 39.973723 ] } }, +{ "type": "Feature", "properties": { "location": "454 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157812, 39.960727 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 52ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226281231835699, 39.953269611319101 ] } }, +{ "type": "Feature", "properties": { "location": "900 W LUZERNE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142057937716899, 40.012750528419097 ] } }, +{ "type": "Feature", "properties": { "location": "3900 PINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203212, 39.95064 ] } }, +{ "type": "Feature", "properties": { "location": "1222 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164388, 39.935853 ] } }, +{ "type": "Feature", "properties": { "location": "499 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15801, 39.960017 ] } }, +{ "type": "Feature", "properties": { "location": "100 COTTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220297, 40.026593 ] } }, +{ "type": "Feature", "properties": { "location": "530 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151022, 39.944753 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PARRISH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169849341646994, 39.970221850758499 ] } }, +{ "type": "Feature", "properties": { "location": "501 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155311119101796, 39.925000671885002 ] } }, +{ "type": "Feature", "properties": { "location": "2100 APPLETREE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1751, 39.956445 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089493502317296, 40.033440277255202 ] } }, +{ "type": "Feature", "properties": { "location": "3300 F ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117011306597504, 39.998810500751901 ] } }, +{ "type": "Feature", "properties": { "location": "900 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089113493495404, 40.033841531766797 ] } }, +{ "type": "Feature", "properties": { "location": "724S CHADWICK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170033, 39.942595 ] } }, +{ "type": "Feature", "properties": { "location": "726 CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170083, 39.942672 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15389, 39.929107 ] } }, +{ "type": "Feature", "properties": { "location": "600 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118095923580299, 40.001848406580002 ] } }, +{ "type": "Feature", "properties": { "location": "1 E WALNUT LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177749940883601, 40.041264956891801 ] } }, +{ "type": "Feature", "properties": { "location": "100 GREEN LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226433, 40.027602 ] } }, +{ "type": "Feature", "properties": { "location": "5400 N PENN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.076847, 40.027405 ] } }, +{ "type": "Feature", "properties": { "location": "7100 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.067746600068503, 40.048324678195499 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163922, 39.926182 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16354, 39.949832 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168928, 39.94441 ] } }, +{ "type": "Feature", "properties": { "location": "234 N HOBART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237320189141499, 39.965490709786202 ] } }, +{ "type": "Feature", "properties": { "location": "1662 N 60TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240371617279195, 39.976646813192303 ] } }, +{ "type": "Feature", "properties": { "location": "500 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155745258905995, 39.923039893692 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 21ST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176732, 39.946555 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15554, 39.929743 ] } }, +{ "type": "Feature", "properties": { "location": "1800 COTTMAN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.069105, 40.053067 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146622, 39.929072 ] } }, +{ "type": "Feature", "properties": { "location": "6639 LEEDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.252923928820707, 39.9752150457075 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127298235565505, 39.995328587683701 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158632, 39.920677 ] } }, +{ "type": "Feature", "properties": { "location": "300 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153017474320606, 39.919676186059803 ] } }, +{ "type": "Feature", "properties": { "location": "1127 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15698, 39.935257 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166792, 39.948902 ] } }, +{ "type": "Feature", "properties": { "location": "500 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127148, 39.970128 ] } }, +{ "type": "Feature", "properties": { "location": "2128 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173272, 39.966122 ] } }, +{ "type": "Feature", "properties": { "location": "2126 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173205, 39.96609 ] } }, +{ "type": "Feature", "properties": { "location": "2100 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173227, 39.966135 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156787, 39.960822 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228003, 40.02829 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174637, 39.95066 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160488, 39.95885 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16079, 39.958847 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154227, 39.933552 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 3RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147502, 39.941752 ] } }, +{ "type": "Feature", "properties": { "location": "4300 PECHIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216903, 40.030088 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ARROTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085098, 40.017233 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SAINT JAMES ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16128, 39.948178 ] } }, +{ "type": "Feature", "properties": { "location": "S1119 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157393, 39.960402 ] } }, +{ "type": "Feature", "properties": { "location": "2213 S JUNIPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169168, 39.922463 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "800 AMERICAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141607, 39.96451 ] } }, +{ "type": "Feature", "properties": { "location": "3300 FREDERICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194312, 40.010175 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132635, 40.027213 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163043, 39.937467 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077812, 40.02205 ] } }, +{ "type": "Feature", "properties": { "location": "500 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127529782160295, 39.9699148527218 ] } }, +{ "type": "Feature", "properties": { "location": "400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146338, 39.96213 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142427, 39.961222 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "5600 ROSEHILL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.116107, 40.03462 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091018, 40.0071 ] } }, +{ "type": "Feature", "properties": { "location": "300 N RANDOLPH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148312, 39.956627 ] } }, +{ "type": "Feature", "properties": { "location": "1305 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16365, 39.943835 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19396, 39.957682 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193963, 39.957747 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19389, 39.957747 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "6150 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "1800 HARLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1654980533432, 39.975754247430899 ] } }, +{ "type": "Feature", "properties": { "location": "6000 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232050332724398, 39.933274611828203 ] } }, +{ "type": "Feature", "properties": { "location": "2128 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173353, 39.966073 ] } }, +{ "type": "Feature", "properties": { "location": "2128 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173228, 39.966202 ] } }, +{ "type": "Feature", "properties": { "location": "2128 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173362, 39.966148 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N SPANGLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184234966975396, 40.004986586991201 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157862, 39.923398 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134352, 39.974608 ] } }, +{ "type": "Feature", "properties": { "location": "633 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156512714226906, 39.926852111975499 ] } }, +{ "type": "Feature", "properties": { "location": "3000 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130304536388607, 39.9962686634804 ] } }, +{ "type": "Feature", "properties": { "location": "1708 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170758, 39.944868 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228278, 40.028523 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144413, 39.96878 ] } }, +{ "type": "Feature", "properties": { "location": "229 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "1498 STIRLING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.076969519537698, 40.038242627138303 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ELLA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127298235565505, 39.995328587683701 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CARDINAL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239997, 39.992118 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228005, 40.02822 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191053, 39.960913 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191072, 39.960783 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191063, 39.960788 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1810 N 25TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175170301262099, 39.983364277305299 ] } }, +{ "type": "Feature", "properties": { "location": "5700 WYNNEFIELD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239843, 39.992012 ] } }, +{ "type": "Feature", "properties": { "location": "1 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143029053656704, 39.934967324072602 ] } }, +{ "type": "Feature", "properties": { "location": "123 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21348, 39.956217 ] } }, +{ "type": "Feature", "properties": { "location": "123 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213468, 39.956328 ] } }, +{ "type": "Feature", "properties": { "location": "600 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209785213627597, 40.0337570562289 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROCKLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13098, 40.02553 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14445, 39.968348 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15514, 39.929252 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086478, 40.013995 ] } }, +{ "type": "Feature", "properties": { "location": "1530 E SUSQUEHANNA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127233, 39.976687 ] } }, +{ "type": "Feature", "properties": { "location": "1528 E SUSQUEHANNA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127173, 39.976592 ] } }, +{ "type": "Feature", "properties": { "location": "2500 E NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124838, 39.975213 ] } }, +{ "type": "Feature", "properties": { "location": "2500 E NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124872, 39.975297 ] } }, +{ "type": "Feature", "properties": { "location": "7124 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.067746600068503, 40.048324678195499 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090655, 40.007827 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151903171246701, 39.966261014450403 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WILLINGTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161683, 39.979838 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088465, 40.010898 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234334356912299, 39.926551786869403 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089493502317296, 40.033440277255202 ] } }, +{ "type": "Feature", "properties": { "location": "737 HUTCHINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158422, 39.93991 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192523, 39.956732 ] } }, +{ "type": "Feature", "properties": { "location": "300 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124432700743697, 40.001088087994901 ] } }, +{ "type": "Feature", "properties": { "location": "6800 LEBANON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.254978119912195, 39.975593321194197 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1589, 39.934218 ] } }, +{ "type": "Feature", "properties": { "location": "1500 E HOWARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135985, 39.973303 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 39.940552 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179722, 39.973742 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KENILWORTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162807, 39.94214 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "5100 WESTMINSTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223329566063896, 39.968328111354403 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156013, 39.921347 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156037, 39.921288 ] } }, +{ "type": "Feature", "properties": { "location": "1599 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086372, 40.015175 ] } }, +{ "type": "Feature", "properties": { "location": "3210 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188205, 39.958187 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163152, 39.980933 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHANCELLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225487, 39.956418 ] } }, +{ "type": "Feature", "properties": { "location": "4400 SANSOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.210188, 39.95468 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 33RD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191587, 39.950357 ] } }, +{ "type": "Feature", "properties": { "location": "300 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149013735926701, 39.936576386752598 ] } }, +{ "type": "Feature", "properties": { "location": "300 N ORIANNA ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145202, 39.95586 ] } }, +{ "type": "Feature", "properties": { "location": "106 S 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167335, 39.951125 ] } }, +{ "type": "Feature", "properties": { "location": "5200 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226097, 39.96015 ] } }, +{ "type": "Feature", "properties": { "location": "200 S ALLISON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232693318506904, 39.956366162241899 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173725, 39.928738 ] } }, +{ "type": "Feature", "properties": { "location": "900 MCKEAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161547093388705, 39.924564651826699 ] } }, +{ "type": "Feature", "properties": { "location": "200 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147558, 39.93274 ] } }, +{ "type": "Feature", "properties": { "location": "600 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159457, 39.916667 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MARSHALL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15848, 39.91659 ] } }, +{ "type": "Feature", "properties": { "location": "800 ORIANNA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143778, 39.963627 ] } }, +{ "type": "Feature", "properties": { "location": "600 N PARK AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159137947790498, 39.9654846231048 ] } }, +{ "type": "Feature", "properties": { "location": "354 MECHANIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173755198171605, 40.042510158841097 ] } }, +{ "type": "Feature", "properties": { "location": "300 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149013735926701, 39.936576386752598 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161247, 39.930788 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W YORK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179875682317203, 39.992506743654097 ] } }, +{ "type": "Feature", "properties": { "location": "5700 THOMAS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2358226110603, 39.943071419791998 ] } }, +{ "type": "Feature", "properties": { "location": "3300 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192537, 39.963158 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MEMPHIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129872, 39.975303 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1793, 39.971372 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156577, 39.958137 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "2046 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "3500 JOYCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103260830131603, 39.997525905188297 ] } }, +{ "type": "Feature", "properties": { "location": "900 BUTTONWOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153708, 39.960682 ] } }, +{ "type": "Feature", "properties": { "location": "1800 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176880902379196, 39.9240259849634 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MANTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169787674368393, 39.935656382748398 ] } }, +{ "type": "Feature", "properties": { "location": "1214 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178768, 39.937148 ] } }, +{ "type": "Feature", "properties": { "location": "1505 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172702, 39.91961 ] } }, +{ "type": "Feature", "properties": { "location": "257 ROXBOROUGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217104438720995, 40.0273909235638 ] } }, +{ "type": "Feature", "properties": { "location": "500 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120564702101504, 39.999661712703201 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1607147061424, 39.973624990325398 ] } }, +{ "type": "Feature", "properties": { "location": "6600 UPLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238190089314699, 39.925888608565401 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "200 N SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16071, 39.935715 ] } }, +{ "type": "Feature", "properties": { "location": "1100 OXFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131113, 39.969895 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "1000 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15611, 39.96013 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155268, 39.989538 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15528, 39.989597 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155308, 39.989663 ] } }, +{ "type": "Feature", "properties": { "location": "4000 N REESE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136392314811204, 40.012809841857496 ] } }, +{ "type": "Feature", "properties": { "location": "800 ALLEGHENY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115393, 39.996603 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167037, 39.919005 ] } }, +{ "type": "Feature", "properties": { "location": "1421 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146767, 40.033837 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224693, 39.97243 ] } }, +{ "type": "Feature", "properties": { "location": "6723 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071889001903699, 40.043025600234699 ] } }, +{ "type": "Feature", "properties": { "location": "6700 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071889001903699, 40.043025600234699 ] } }, +{ "type": "Feature", "properties": { "location": "6700 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071889001903699, 40.043025600234699 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154883, 39.960147 ] } }, +{ "type": "Feature", "properties": { "location": "6725 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071889001903699, 40.043025600234699 ] } }, +{ "type": "Feature", "properties": { "location": "6700 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071889001903699, 40.043025600234699 ] } }, +{ "type": "Feature", "properties": { "location": "3254 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100094324512995, 39.984507948654802 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162068, 39.927117 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162027, 39.927127 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157567, 39.92571 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157615, 39.92576 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157513, 39.925688 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156808, 39.925628 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MASCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135403, 39.979025 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165063, 39.918653 ] } }, +{ "type": "Feature", "properties": { "location": "900 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089113493495404, 40.033841531766797 ] } }, +{ "type": "Feature", "properties": { "location": "191 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "191 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "911 S 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164180823317906, 39.939565042835902 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191923, 39.965718 ] } }, +{ "type": "Feature", "properties": { "location": "5901 COLGATE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100958489884505, 40.0439880401454 ] } }, +{ "type": "Feature", "properties": { "location": "100 N MOLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165653, 39.956372 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132315, 40.02806 ] } }, +{ "type": "Feature", "properties": { "location": "601 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100624372943301, 40.040243907613302 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "847 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687857051997, 39.922383040809997 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160942, 39.94223 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S CLEVELAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175095, 39.932423 ] } }, +{ "type": "Feature", "properties": { "location": "2300 SEPVIVA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127858, 39.979833 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151903171246701, 39.966261014450403 ] } }, +{ "type": "Feature", "properties": { "location": "4600 C ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.118272, 40.02074 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BUTTONWOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162218, 39.961803 ] } }, +{ "type": "Feature", "properties": { "location": "5800 CEDAR AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239787492408297, 39.952068670958802 ] } }, +{ "type": "Feature", "properties": { "location": "500 JAMESTOWN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216035, 40.034183 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 13TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163542, 39.942933 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164153397583902, 39.967866122955101 ] } }, +{ "type": "Feature", "properties": { "location": "1900 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174407, 39.945347 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228237, 40.028497 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228247, 40.028495 ] } }, +{ "type": "Feature", "properties": { "location": "2200 WALLACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174193, 39.966783 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171938, 39.948412 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E AUBURN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115374822024805, 39.985192824258903 ] } }, +{ "type": "Feature", "properties": { "location": "5461 CEDAR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2324224598418, 39.951142567748001 ] } }, +{ "type": "Feature", "properties": { "location": "5461 CEDAR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2324224598418, 39.951142567748001 ] } }, +{ "type": "Feature", "properties": { "location": "199 N CARLISLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165143, 39.955208 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 37TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195117, 39.958613 ] } }, +{ "type": "Feature", "properties": { "location": "5719 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237714612176106, 39.952377929466302 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218545, 40.023455 ] } }, +{ "type": "Feature", "properties": { "location": "6000 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241083990567006, 39.962000396657899 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168147, 39.939703 ] } }, +{ "type": "Feature", "properties": { "location": "1580 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225907424880603, 39.978578447106401 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164355, 39.955828 ] } }, +{ "type": "Feature", "properties": { "location": "200 HIGBEE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104877687808496, 40.048435673475097 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150893, 40.004535 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174916350542503, 39.970854053890299 ] } }, +{ "type": "Feature", "properties": { "location": "6600 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235898990721395, 39.9244707588648 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161190173410105, 39.980683206781798 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175273, 39.921252 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153528, 39.928992 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127520391343793, 40.003642017451597 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N LEE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128130843304106, 40.000796716246199 ] } }, +{ "type": "Feature", "properties": { "location": "3419 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1175767096166, 40.000987289979797 ] } }, +{ "type": "Feature", "properties": { "location": "121 E INDIANA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129179308565, 39.995367294663701 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 19TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173277, 39.945613 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159073, 39.949157 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W WESTMORELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15424, 40.003333 ] } }, +{ "type": "Feature", "properties": { "location": "6300 ALGON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085743302797397, 40.043150411282497 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PRATT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0688868020017, 40.0042757393838 ] } }, +{ "type": "Feature", "properties": { "location": "311 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157017801052902, 39.9576419838642 ] } }, +{ "type": "Feature", "properties": { "location": "476 PINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1499436946213, 39.943684924513398 ] } }, +{ "type": "Feature", "properties": { "location": "700 LIVEZEY LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219287344054806, 40.0454264352352 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205193, 39.953657 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156092, 39.921338 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15191, 39.941498 ] } }, +{ "type": "Feature", "properties": { "location": "480 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148469555098401, 39.959888287155003 ] } }, +{ "type": "Feature", "properties": { "location": "2400 TULIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125894657574904, 39.979943300684099 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148185, 39.970492 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W CHAMPLOST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13807, 40.043658 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134347, 39.972417 ] } }, +{ "type": "Feature", "properties": { "location": "100 W ROOSEVELT BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127133, 40.024787 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 19TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170085, 39.960092 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 19TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170268, 39.959928 ] } }, +{ "type": "Feature", "properties": { "location": "6050 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2427440219207, 39.957331646289802 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "5100 N 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136928790448707, 40.030189670414799 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1531, 39.942517 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228173, 40.028393 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 42ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206208, 39.955288 ] } }, +{ "type": "Feature", "properties": { "location": "1600 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169048, 39.94769 ] } }, +{ "type": "Feature", "properties": { "location": "2200 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174753, 39.964058 ] } }, +{ "type": "Feature", "properties": { "location": "21 S ROBINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244102357559498, 39.961977842896999 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179692, 39.97416 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134262, 39.972487 ] } }, +{ "type": "Feature", "properties": { "location": "1300 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159732, 39.970178 ] } }, +{ "type": "Feature", "properties": { "location": "1300 LOCUST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16358, 39.947938 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154813, 39.954452 ] } }, +{ "type": "Feature", "properties": { "location": "252 N PEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226730480195101, 39.964176361052502 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167532, 39.950657 ] } }, +{ "type": "Feature", "properties": { "location": "330 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188056889150701, 40.0402060406388 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073437, 40.043602 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0862, 40.013835 ] } }, +{ "type": "Feature", "properties": { "location": "800 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159787, 39.96959 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160087, 39.95836 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160197, 39.958517 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150978, 39.933327 ] } }, +{ "type": "Feature", "properties": { "location": "200 TROTTERS ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144368, 39.948787 ] } }, +{ "type": "Feature", "properties": { "location": "600 OREGON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158775, 39.915263 ] } }, +{ "type": "Feature", "properties": { "location": "3400 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191585, 39.96079 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158211866833994, 40.010971387071102 ] } }, +{ "type": "Feature", "properties": { "location": "6100 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179103, 40.04116 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177497, 39.926707 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174057, 39.940523 ] } }, +{ "type": "Feature", "properties": { "location": "223 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162407902534397, 40.032409377693597 ] } }, +{ "type": "Feature", "properties": { "location": "5200 SAYBROOK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216127391859501, 39.937834875387097 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FRALEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064564938326498, 40.0105521783182 ] } }, +{ "type": "Feature", "properties": { "location": "600 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117794328362294, 39.999825298996598 ] } }, +{ "type": "Feature", "properties": { "location": "926 FARRAGUT TER", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215278668577199, 39.948083951348998 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2282, 40.028442 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228117, 40.028345 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224007, 40.02841 ] } }, +{ "type": "Feature", "properties": { "location": "199 N CARLISLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164243, 39.955538 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115377, 39.994832 ] } }, +{ "type": "Feature", "properties": { "location": "5600 N FAIRHILL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131592, 40.036622 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158017, 39.959222 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 34TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191203, 39.96219 ] } }, +{ "type": "Feature", "properties": { "location": "9300 JAMISON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041870312275506, 40.085113831834498 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13019, 39.96894 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162222, 39.948228 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086437, 40.013932 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16155, 39.958652 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181922, 39.922187 ] } }, +{ "type": "Feature", "properties": { "location": "2500 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105488, 39.983497 ] } }, +{ "type": "Feature", "properties": { "location": "3100 MERCER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.10568, 39.983912 ] } }, +{ "type": "Feature", "properties": { "location": "1131 PINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160678, 39.945035 ] } }, +{ "type": "Feature", "properties": { "location": "300 W WELLENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130180988995207, 40.031163364334603 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158703, 39.923475 ] } }, +{ "type": "Feature", "properties": { "location": "195 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17085, 39.929535 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224223, 40.028258 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 10TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154757, 39.960192 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162547, 39.948753 ] } }, +{ "type": "Feature", "properties": { "location": "1920 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177357436266007, 39.985098386991602 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179827, 39.923062 ] } }, +{ "type": "Feature", "properties": { "location": "4659 N PENN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085738, 40.017368 ] } }, +{ "type": "Feature", "properties": { "location": "1115 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15634, 39.964378 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S DEWEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224655460147702, 39.925107035872202 ] } }, +{ "type": "Feature", "properties": { "location": "3600 FREELAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206277587557295, 40.018020776558899 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166592, 39.953363 ] } }, +{ "type": "Feature", "properties": { "location": "2500 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178331543988193, 39.970147694148501 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WOOD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168727, 39.95951 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.07375, 40.043407 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124015, 39.977197 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168258, 39.943525 ] } }, +{ "type": "Feature", "properties": { "location": "100 E WILLARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127753579804505, 39.999446325658496 ] } }, +{ "type": "Feature", "properties": { "location": "900 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153733, 39.960123 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158203, 39.923408 ] } }, +{ "type": "Feature", "properties": { "location": "720 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15859, 39.92339 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157033, 39.927637 ] } }, +{ "type": "Feature", "properties": { "location": "6100 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227529884946094, 39.926954104333802 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165275, 39.920018 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S ALDER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164758, 39.917332 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164193, 39.917252 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 13TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162156545231994, 39.9488822580171 ] } }, +{ "type": "Feature", "properties": { "location": "5233 MARLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.074638069172096, 40.020073629063802 ] } }, +{ "type": "Feature", "properties": { "location": "6300 PASCHALL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231199102596705, 39.925915427359598 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1288, 39.969458 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208925, 39.943802 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168257, 39.925418 ] } }, +{ "type": "Feature", "properties": { "location": "640 W ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141863027330402, 40.000166437822799 ] } }, +{ "type": "Feature", "properties": { "location": "7237 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.037265041886897, 40.031326052479699 ] } }, +{ "type": "Feature", "properties": { "location": "1200 REED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164605, 39.932538 ] } }, +{ "type": "Feature", "properties": { "location": "1100 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12788, 39.969873 ] } }, +{ "type": "Feature", "properties": { "location": "300 E CLEARFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125373913372599, 39.996403244488498 ] } }, +{ "type": "Feature", "properties": { "location": "5900 LUDLOW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.239277255042595, 39.9609851847447 ] } }, +{ "type": "Feature", "properties": { "location": "1344 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165437, 39.940463 ] } }, +{ "type": "Feature", "properties": { "location": "1700 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172994257574501, 39.935731232886901 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15936, 39.917955 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152572, 39.94243 ] } }, +{ "type": "Feature", "properties": { "location": "1341 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "5437 NORFOLK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232239623768095, 39.948581513477997 ] } }, +{ "type": "Feature", "properties": { "location": "5837 NORFOLK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240309921115198, 39.949583748659897 ] } }, +{ "type": "Feature", "properties": { "location": "200 S HUTCHINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162068, 39.924575 ] } }, +{ "type": "Feature", "properties": { "location": "322 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163819117113107, 39.946055966018598 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.108418, 39.98672 ] } }, +{ "type": "Feature", "properties": { "location": "3100 CEDAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.108297, 39.986872 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175892, 39.926255 ] } }, +{ "type": "Feature", "properties": { "location": "4131 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101648997886997, 40.009898994380002 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143278, 40.039685 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159528, 39.975273 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172245, 39.935642 ] } }, +{ "type": "Feature", "properties": { "location": "1138 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132882, 39.96886 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CECIL B MOORE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164357, 39.979533 ] } }, +{ "type": "Feature", "properties": { "location": "400 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "501 MONTROSE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152454084555501, 39.936796986182301 ] } }, +{ "type": "Feature", "properties": { "location": "426 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122198, 39.997543 ] } }, +{ "type": "Feature", "properties": { "location": "426 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122168, 39.997585 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12192, 39.99772 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228080711070206, 39.925256005062799 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134262, 39.972415 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170595, 39.965655 ] } }, +{ "type": "Feature", "properties": { "location": "2900 MCKINLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064390454573299, 40.029071760878502 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176637, 39.922747 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154825, 39.929507 ] } }, +{ "type": "Feature", "properties": { "location": "1 CHRISTIAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144373, 39.93519 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157808, 39.931508 ] } }, +{ "type": "Feature", "properties": { "location": "6000 CHESTNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242988, 39.960757 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154767, 39.95437 ] } }, +{ "type": "Feature", "properties": { "location": "2700 PARRISH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181348365320005, 39.971651771260802 ] } }, +{ "type": "Feature", "properties": { "location": "2700 S 68TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231376008158605, 39.916777052913197 ] } }, +{ "type": "Feature", "properties": { "location": "3400 MARKET ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19274, 39.95719 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157343, 39.954572 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155518, 39.92992 ] } }, +{ "type": "Feature", "properties": { "location": "2843 W CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176340025879398, 40.0035320270309 ] } }, +{ "type": "Feature", "properties": { "location": "600 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15195, 39.945137 ] } }, +{ "type": "Feature", "properties": { "location": "188 W ALBANUS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125711342926095, 40.026266140617601 ] } }, +{ "type": "Feature", "properties": { "location": "6218 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227625596527005, 39.924901286655498 ] } }, +{ "type": "Feature", "properties": { "location": "5600 STEWART ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234729604511102, 39.977733102029603 ] } }, +{ "type": "Feature", "properties": { "location": "1149 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163348, 39.936152 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138708, 39.964492 ] } }, +{ "type": "Feature", "properties": { "location": "300 HOWELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105149277885403, 40.047166552726203 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15567, 39.92136 ] } }, +{ "type": "Feature", "properties": { "location": "1900 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178731893034495, 39.921696007393003 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMITAGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229095, 40.03208 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156198, 39.931833 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S BANCROFT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173681509071301, 39.923993053768399 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212367, 40.0217 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "4200 REGENT SQ", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207405, 39.947517 ] } }, +{ "type": "Feature", "properties": { "location": "1528 E SUSQUEHANNA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127147, 39.976568 ] } }, +{ "type": "Feature", "properties": { "location": "1626 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17, 39.94331 ] } }, +{ "type": "Feature", "properties": { "location": "1626 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169957, 39.943337 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182507815898106, 39.942707927609703 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176852, 39.947975 ] } }, +{ "type": "Feature", "properties": { "location": "330 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188056889150701, 40.0402060406388 ] } }, +{ "type": "Feature", "properties": { "location": "330 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188056889150701, 40.0402060406388 ] } }, +{ "type": "Feature", "properties": { "location": "1923 ELSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148170297024706, 40.064983101419301 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 63RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228887226671304, 39.925009362716899 ] } }, +{ "type": "Feature", "properties": { "location": "799 S FRAZIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236668, 39.948937 ] } }, +{ "type": "Feature", "properties": { "location": "6700 BUIST AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231751826874103, 39.919045028464197 ] } }, +{ "type": "Feature", "properties": { "location": "4372 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219908017018099, 40.028584215348602 ] } }, +{ "type": "Feature", "properties": { "location": "203 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "4100 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2141765375261, 40.024378012395402 ] } }, +{ "type": "Feature", "properties": { "location": "500 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "100 DUPONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227750074937902, 40.028285816233797 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225143718712303, 40.0262565643012 ] } }, +{ "type": "Feature", "properties": { "location": "2605 S SHERIDAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159155792147104, 39.9158995132168 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N NEWKIRK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175516428937001, 40.005323661629902 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N 12TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150408835876405, 39.995306240013399 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228055, 40.028343 ] } }, +{ "type": "Feature", "properties": { "location": "5200 D ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115310585506407, 40.029786393706402 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N FAIRHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137331893647996, 40.0113932669937 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N FRANKLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140618592106193, 40.010278884957003 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139257856402295, 40.019511668466897 ] } }, +{ "type": "Feature", "properties": { "location": "3160 JASPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.113133202730793, 39.9946918352545 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113420125276093, 39.995497400423197 ] } }, +{ "type": "Feature", "properties": { "location": "200 W ERIE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132796000391295, 40.006875836912599 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N REESE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136055476295695, 40.014344838483602 ] } }, +{ "type": "Feature", "properties": { "location": "6200 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149786129488604, 40.049179571233999 ] } }, +{ "type": "Feature", "properties": { "location": "400 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219414247957999, 40.033588351021997 ] } }, +{ "type": "Feature", "properties": { "location": "3914 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142493253426693, 40.012049921577798 ] } }, +{ "type": "Feature", "properties": { "location": "3000 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130304536388607, 39.9962686634804 ] } }, +{ "type": "Feature", "properties": { "location": "3000 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130304536388607, 39.9962686634804 ] } }, +{ "type": "Feature", "properties": { "location": "525 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120778210986799, 39.997449826340002 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "500 W ERIE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137355174587398, 40.007457919026002 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170273, 39.9294 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153443, 39.929302 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167002, 39.965302 ] } }, +{ "type": "Feature", "properties": { "location": "2700 LEFEVRE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071843145022498, 39.999734534193401 ] } }, +{ "type": "Feature", "properties": { "location": "5000 D ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115780040451398, 40.025731907777804 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158732075490207, 39.982669015578502 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139177, 39.959212 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 44TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209598, 39.957268 ] } }, +{ "type": "Feature", "properties": { "location": "318 E ALLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129646826684805, 39.967286394784303 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228247, 40.028475 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127405, 39.976857 ] } }, +{ "type": "Feature", "properties": { "location": "1724 DORRANCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176203125650602, 39.929610684963002 ] } }, +{ "type": "Feature", "properties": { "location": "400 EARP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152, 39.931768 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150293, 39.928897 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162695, 39.964318 ] } }, +{ "type": "Feature", "properties": { "location": "3200 GAUL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.104933, 39.987103 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153723, 39.928907 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 39.928912 ] } }, +{ "type": "Feature", "properties": { "location": "400 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152406257072897, 39.9283781564611 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159462, 39.924282 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180862254271503, 39.972224469599801 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208907, 39.943752 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 56TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234238886985096, 39.983897020870401 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "6044 DELANCEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242990759656806, 39.956139112432098 ] } }, +{ "type": "Feature", "properties": { "location": "7700 LEON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.034450804616696, 40.041427807807501 ] } }, +{ "type": "Feature", "properties": { "location": "5216 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070571837352503, 40.015432619831302 ] } }, +{ "type": "Feature", "properties": { "location": "300 ROXBOROUGH AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216233997078703, 40.027777327623603 ] } }, +{ "type": "Feature", "properties": { "location": "4000 E ROOSEVELT BLVD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109049315959197, 40.028507665299202 ] } }, +{ "type": "Feature", "properties": { "location": "200 E LUZERNE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124052313179604, 40.010486128679602 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143683, 39.969645 ] } }, +{ "type": "Feature", "properties": { "location": "625 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140067226837402, 40.007806233138801 ] } }, +{ "type": "Feature", "properties": { "location": "5628 OSAGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235326030036305, 39.954114231492703 ] } }, +{ "type": "Feature", "properties": { "location": "100 WIDENER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121441781882893, 40.040545052844003 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E COLUMBIA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129815, 39.969005 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ELLA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127298235565505, 39.995328587683701 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225825, 40.029648 ] } }, +{ "type": "Feature", "properties": { "location": "400 CHRISTIAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151723, 39.937278 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13228, 40.028687 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 66TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232732559218704, 39.9223113872699 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1575, 39.933443 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134333, 39.972367 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N 30TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178757664091904, 40.0036146836961 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROCKLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "5000 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215464542720099, 39.9407983157963 ] } }, +{ "type": "Feature", "properties": { "location": "400 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144528, 39.968093 ] } }, +{ "type": "Feature", "properties": { "location": "3400 J ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108647631428298, 39.999417190862502 ] } }, +{ "type": "Feature", "properties": { "location": "300 W SPENCER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126478210481196, 40.043793984429598 ] } }, +{ "type": "Feature", "properties": { "location": "200 LEVERING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221863, 40.027328 ] } }, +{ "type": "Feature", "properties": { "location": "4300 WAYNE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157749776061394, 40.018552045343398 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 18TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171858, 39.944762 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 13TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156905, 39.95787 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174933, 39.947238 ] } }, +{ "type": "Feature", "properties": { "location": "1800 ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112178, 39.99534 ] } }, +{ "type": "Feature", "properties": { "location": "400 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153957, 39.927345 ] } }, +{ "type": "Feature", "properties": { "location": "3531 N 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153389220480094, 40.007133217060101 ] } }, +{ "type": "Feature", "properties": { "location": "1504 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159362, 39.976283 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160885, 39.953587 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143793, 39.969755 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224657809221597, 40.026676130210802 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E RUSH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.119366028773499, 39.988779596169302 ] } }, +{ "type": "Feature", "properties": { "location": "6138 MORTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175814052560597, 40.0450989945098 ] } }, +{ "type": "Feature", "properties": { "location": "3400 ORMES ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123963183298102, 40.001817288000602 ] } }, +{ "type": "Feature", "properties": { "location": "400 E MENTOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117137416837593, 40.021592070998203 ] } }, +{ "type": "Feature", "properties": { "location": "4000 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137665405192195, 40.012973252589703 ] } }, +{ "type": "Feature", "properties": { "location": "500 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120564702101504, 39.999661712703201 ] } }, +{ "type": "Feature", "properties": { "location": "100 E ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128286657062503, 40.001581418141598 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N FRANKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138624302309196, 40.019426015622997 ] } }, +{ "type": "Feature", "properties": { "location": "4900 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220047818769203, 39.974005181985099 ] } }, +{ "type": "Feature", "properties": { "location": "9308 NEIL RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043093581883198, 40.085036880182798 ] } }, +{ "type": "Feature", "properties": { "location": "201 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140261951790094, 39.954926794402901 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1621, 39.927033 ] } }, +{ "type": "Feature", "properties": { "location": "7022 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "3815 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197788, 39.960027 ] } }, +{ "type": "Feature", "properties": { "location": "800 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181900742187693, 39.970805606270901 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N SYDENHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160703, 39.977865 ] } }, +{ "type": "Feature", "properties": { "location": "2200 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170647212636496, 39.983441726800699 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174528211598698, 39.9862664838342 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152512414976997, 39.970858426983803 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162438804761706, 39.982378840837796 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FONTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159171103156694, 39.984406357063001 ] } }, +{ "type": "Feature", "properties": { "location": "700 AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14201, 39.963262 ] } }, +{ "type": "Feature", "properties": { "location": "3821 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141750794813106, 40.010422561389902 ] } }, +{ "type": "Feature", "properties": { "location": "4400 MARPLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.032036699456896, 40.0355206249573 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156368, 39.958185 ] } }, +{ "type": "Feature", "properties": { "location": "700 S DELHI ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159005, 39.94004 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N CORLIES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182574268210701, 39.988997206978198 ] } }, +{ "type": "Feature", "properties": { "location": "199 W ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132306442274398, 40.002102485289903 ] } }, +{ "type": "Feature", "properties": { "location": "199 W ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132306442274398, 40.002102485289903 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158948, 39.926742 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162503586970502, 39.9839303398605 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160933121139607, 39.983727267426097 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161493, 39.984635 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162503586970502, 39.9839303398605 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "3100 AMBER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.111763544473803, 39.991090516147999 ] } }, +{ "type": "Feature", "properties": { "location": "1599 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08633, 40.015202 ] } }, +{ "type": "Feature", "properties": { "location": "1127 S 61ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246231073302596, 39.945457310654703 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227018414596103, 39.942084266968202 ] } }, +{ "type": "Feature", "properties": { "location": "6800 PASCHALL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238028287658807, 39.9211161758017 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 64TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232793876573197, 39.926199203883598 ] } }, +{ "type": "Feature", "properties": { "location": "4300 LEVICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.055182345957803, 40.025423231458497 ] } }, +{ "type": "Feature", "properties": { "location": "6800 N GRATZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1480700945325, 40.057915823356097 ] } }, +{ "type": "Feature", "properties": { "location": "315 SEARS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150201093883695, 39.931466153491797 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228032, 40.028243 ] } }, +{ "type": "Feature", "properties": { "location": "5300 REINHARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220459404589107, 39.938675671415801 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175173, 39.947138 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225628, 40.026812 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175055, 39.922452 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17498, 39.922468 ] } }, +{ "type": "Feature", "properties": { "location": "95 FERN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120887658402097, 40.042541723495297 ] } }, +{ "type": "Feature", "properties": { "location": "1300 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078220703432194, 40.0430232889412 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "6700 TRINITY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242470104929197, 39.926860459911197 ] } }, +{ "type": "Feature", "properties": { "location": "6300 WHEELER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229337034842004, 39.924330545924001 ] } }, +{ "type": "Feature", "properties": { "location": "4600 GRISCOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085958648686201, 40.015717492021899 ] } }, +{ "type": "Feature", "properties": { "location": "604 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209785213627597, 40.0337570562289 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17616, 39.952688 ] } }, +{ "type": "Feature", "properties": { "location": "6100 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226582568443902, 39.926219003183597 ] } }, +{ "type": "Feature", "properties": { "location": "4200 ROMAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091384460604601, 40.009247004961601 ] } }, +{ "type": "Feature", "properties": { "location": "54 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164298523013301, 40.030578741590404 ] } }, +{ "type": "Feature", "properties": { "location": "5300 WAYNE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1730666403963, 40.0283701181217 ] } }, +{ "type": "Feature", "properties": { "location": "6640 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237171487061502, 39.924554080226997 ] } }, +{ "type": "Feature", "properties": { "location": "5648 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228507048455796, 39.939002284704699 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W DAKOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182244536234094, 39.991612862350998 ] } }, +{ "type": "Feature", "properties": { "location": "4200 MAIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221745, 40.024705 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22544, 40.027148 ] } }, +{ "type": "Feature", "properties": { "location": "4200 LAWNSIDE RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -74.969417140032803, 40.082153065857902 ] } }, +{ "type": "Feature", "properties": { "location": "2110 WELSH RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.036279135125397, 40.077175498488003 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070515, 40.046437 ] } }, +{ "type": "Feature", "properties": { "location": "5100 GRISCOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.080207, 40.021955 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3301 MARKET ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18978, 39.955788 ] } }, +{ "type": "Feature", "properties": { "location": "5556 BALTIMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235429120251197, 39.946916628513797 ] } }, +{ "type": "Feature", "properties": { "location": "900 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154627271757306, 39.958003745633199 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILLINGS ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146833976907502, 39.946356562499503 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 3RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146410083126696, 39.946869919780497 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LENOX AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153038, 40.008467 ] } }, +{ "type": "Feature", "properties": { "location": "800 PERKIOMEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166293, 39.969572 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "2800 S ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165589043426607, 39.914072457367702 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157883631379804, 39.938820267002903 ] } }, +{ "type": "Feature", "properties": { "location": "6200 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149786129488604, 40.049179571233999 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 32ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1875100852873, 39.959154514589798 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "309 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157017801052902, 39.9576419838642 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234550547919994, 39.925419874465199 ] } }, +{ "type": "Feature", "properties": { "location": "314 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188162990061599, 39.9614348925003 ] } }, +{ "type": "Feature", "properties": { "location": "2900 MCKINLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064390454573299, 40.029071760878502 ] } }, +{ "type": "Feature", "properties": { "location": "2049 WAKELING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073522196325598, 40.013131515642499 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FRALEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064564938326498, 40.0105521783182 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FRALEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064564938326498, 40.0105521783182 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FRALEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064564938326498, 40.0105521783182 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FRALEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064564938326498, 40.0105521783182 ] } }, +{ "type": "Feature", "properties": { "location": "6800 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.042733900604702, 40.024023093309701 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FRALEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064564938326498, 40.0105521783182 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 59TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237863046152995, 39.972319213451598 ] } }, +{ "type": "Feature", "properties": { "location": "4200 SALMON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078490627482395, 39.9957967629921 ] } }, +{ "type": "Feature", "properties": { "location": "5000 LEIPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.081705, 40.022652 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170255, 39.942377 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164153397583902, 39.967866122955101 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W STILES ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185757601967694, 39.975488012413798 ] } }, +{ "type": "Feature", "properties": { "location": "4000 MAYWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099859312723595, 40.0080927294159 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155985, 39.92127 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157298450452998, 39.919587715279 ] } }, +{ "type": "Feature", "properties": { "location": "500 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156675014976798, 39.916299874743999 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163775748443996, 39.9369371381934 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163775748443996, 39.9369371381934 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176917336998798, 39.928852042414398 ] } }, +{ "type": "Feature", "properties": { "location": "1500 LARDNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077558639952699, 40.0344540415023 ] } }, +{ "type": "Feature", "properties": { "location": "596 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "6600 CASTOR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.074736315953302, 40.042243009859803 ] } }, +{ "type": "Feature", "properties": { "location": "1817 WIDENER PL", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150830191015501, 40.0443485102642 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159233, 39.9767 ] } }, +{ "type": "Feature", "properties": { "location": "4200 WHITING RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -74.968805601249201, 40.082568262979798 ] } }, +{ "type": "Feature", "properties": { "location": "7200 HAVERFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.260486634940406, 39.974671196886398 ] } }, +{ "type": "Feature", "properties": { "location": "2100 DREER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130809495986895, 39.979643120718002 ] } }, +{ "type": "Feature", "properties": { "location": "3900 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202005987957406, 39.972928587684798 ] } }, +{ "type": "Feature", "properties": { "location": "366 MECHANIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173755198171605, 40.042510158841097 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164178, 39.943137 ] } }, +{ "type": "Feature", "properties": { "location": "500 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RUAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088965, 40.010197 ] } }, +{ "type": "Feature", "properties": { "location": "5701 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142247, 40.039677 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142188, 40.039618 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173893, 39.966952 ] } }, +{ "type": "Feature", "properties": { "location": "311 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162923, 39.94608 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165308, 39.919358 ] } }, +{ "type": "Feature", "properties": { "location": "7000 UPLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243918168666099, 39.921758051460799 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W GRANGE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141182, 40.04093 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230961993812997, 39.927926697768399 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155828, 39.929018 ] } }, +{ "type": "Feature", "properties": { "location": "6300 REGENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236871199504506, 39.928633872123797 ] } }, +{ "type": "Feature", "properties": { "location": "6326 REGENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236871199504506, 39.928633872123797 ] } }, +{ "type": "Feature", "properties": { "location": "5800 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231318782024701, 39.937021854286101 ] } }, +{ "type": "Feature", "properties": { "location": "6600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236328265977804, 39.924866610348701 ] } }, +{ "type": "Feature", "properties": { "location": "600 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148862, 39.961177 ] } }, +{ "type": "Feature", "properties": { "location": "3500 FREELAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205807967244795, 40.017365855831997 ] } }, +{ "type": "Feature", "properties": { "location": "3200 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125991912432795, 39.998672429988602 ] } }, +{ "type": "Feature", "properties": { "location": "263 S 55TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231866490415001, 39.9556343916421 ] } }, +{ "type": "Feature", "properties": { "location": "3400 REACH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1152831300316, 40.000689465926001 ] } }, +{ "type": "Feature", "properties": { "location": "3401 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N FRANKLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140291153033303, 40.011780171947102 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138987682111505, 40.014720665919299 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N DELHI ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143625973239196, 40.009082352479403 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 53RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229224212659602, 39.9488694553946 ] } }, +{ "type": "Feature", "properties": { "location": "3231 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133066926182394, 39.999851607906699 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WENSLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117861770118196, 39.999497995092298 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145267336748802, 40.004048937249998 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WENSLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117861770118196, 39.999497995092298 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WENSLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117861770118196, 39.999497995092298 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WENSLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117861770118196, 39.999497995092298 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WENSLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117861770118196, 39.999497995092298 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167107, 39.954198 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163727, 39.950138 ] } }, +{ "type": "Feature", "properties": { "location": "600 ELKINS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132337, 40.037485 ] } }, +{ "type": "Feature", "properties": { "location": "900 CORINTHIAN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170517, 39.971715 ] } }, +{ "type": "Feature", "properties": { "location": "300 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222438, 40.029542 ] } }, +{ "type": "Feature", "properties": { "location": "2351 N 30TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181233138902897, 39.9925088353231 ] } }, +{ "type": "Feature", "properties": { "location": "3317 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111371859365207, 39.998630400763197 ] } }, +{ "type": "Feature", "properties": { "location": "3315 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111371859365207, 39.998630400763197 ] } }, +{ "type": "Feature", "properties": { "location": "3358 RAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112259104921804, 39.998744998128601 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "3400 H ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.112543819182605, 39.999816451823499 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129247445420305, 39.996142068136997 ] } }, +{ "type": "Feature", "properties": { "location": "4200 MAYWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099188672810698, 40.011204897964099 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 64TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232793876573197, 39.926199203883598 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167968, 39.936445 ] } }, +{ "type": "Feature", "properties": { "location": "200 W SEYMOUR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167831235997895, 40.025183377169697 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N GARNET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162581302363506, 39.997377906645497 ] } }, +{ "type": "Feature", "properties": { "location": "1300 COLWYN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148522016405096, 40.015496781898001 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "129 FERN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120887658402097, 40.042541723495297 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 13TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159265, 39.961533 ] } }, +{ "type": "Feature", "properties": { "location": "200 SULIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128950785266298, 40.025807844805797 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 39TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201336030854193, 39.972252909109699 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176143, 39.941698 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1552, 39.958848 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "7100 ANDREWS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149618270901101, 40.062725435494897 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1533 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170117, 39.9362 ] } }, +{ "type": "Feature", "properties": { "location": "2900 SECANE DR", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.977585563784402, 40.099898321387897 ] } }, +{ "type": "Feature", "properties": { "location": "1100 LAVENDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143685, 39.96927 ] } }, +{ "type": "Feature", "properties": { "location": "5400 SAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077898, 40.027787 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165670230887102, 39.918099470480101 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165517, 39.967198 ] } }, +{ "type": "Feature", "properties": { "location": "713 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159088, 39.920555 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160941366333802, 39.968544012042102 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180528, 39.971582 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 30TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185045949345707, 39.975013534715302 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168618, 39.966928 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169269724172295, 39.928085368665201 ] } }, +{ "type": "Feature", "properties": { "location": "900 W NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148587, 39.98209 ] } }, +{ "type": "Feature", "properties": { "location": "2199 S 18TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17639, 39.924037 ] } }, +{ "type": "Feature", "properties": { "location": "1228 N CONESTOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229847593186605, 39.971769654472403 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172292, 39.92084 ] } }, +{ "type": "Feature", "properties": { "location": "5800 ADDISON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239358129497901, 39.954141056685202 ] } }, +{ "type": "Feature", "properties": { "location": "7100 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238803325954194, 39.914886643081502 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156178461314695, 39.957776657981 ] } }, +{ "type": "Feature", "properties": { "location": "2200 W SEDGLEY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169175598743607, 39.9921566701938 ] } }, +{ "type": "Feature", "properties": { "location": "2200 W SEDGLEY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169175598743607, 39.9921566701938 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237293441597501, 39.916219986919103 ] } }, +{ "type": "Feature", "properties": { "location": "1400 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168977, 39.931805 ] } }, +{ "type": "Feature", "properties": { "location": "3200 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125991912432795, 39.998672429988602 ] } }, +{ "type": "Feature", "properties": { "location": "3313 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151528, 40.002842 ] } }, +{ "type": "Feature", "properties": { "location": "314 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18816, 39.961163 ] } }, +{ "type": "Feature", "properties": { "location": "3200 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189338, 39.960338 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143713, 39.96962 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154018246213298, 39.919580634062001 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15951, 39.97614 ] } }, +{ "type": "Feature", "properties": { "location": "4200 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089493, 40.010247 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152157, 39.924668 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152117, 39.924612 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225803, 40.026472 ] } }, +{ "type": "Feature", "properties": { "location": "1900 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1522557009867, 40.047901113238403 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151695, 39.937332 ] } }, +{ "type": "Feature", "properties": { "location": "1529 S 5TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153642, 39.92896 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156622, 39.936692 ] } }, +{ "type": "Feature", "properties": { "location": "2300 CORAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130244542957399, 39.9829246914639 ] } }, +{ "type": "Feature", "properties": { "location": "600 OREGON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15874, 39.915242 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16381, 39.944547 ] } }, +{ "type": "Feature", "properties": { "location": "200 N NATRONA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188423, 39.958873 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241146572393106, 39.950428894535001 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BUTTONWOOD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156232, 39.960865 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CROSKEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176665, 39.956937 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128158, 39.967253 ] } }, +{ "type": "Feature", "properties": { "location": "5700 STEWART ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.237167968744203, 39.977461788746801 ] } }, +{ "type": "Feature", "properties": { "location": "200 BENNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104444536098498, 40.048879143714601 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22814, 40.02835 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22827, 40.02852 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228067, 40.028315 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226407, 40.027703 ] } }, +{ "type": "Feature", "properties": { "location": "2500 E ANN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109912, 39.983285 ] } }, +{ "type": "Feature", "properties": { "location": "2230 S BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170183, 39.922315 ] } }, +{ "type": "Feature", "properties": { "location": "441 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203072, 39.961128 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155588, 39.929403 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155622, 39.929398 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155612, 39.929273 ] } }, +{ "type": "Feature", "properties": { "location": "2856 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182267062393805, 39.951585629799801 ] } }, +{ "type": "Feature", "properties": { "location": "1529 S 5TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.928977 ] } }, +{ "type": "Feature", "properties": { "location": "1527 DICKINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170579793144796, 39.932026547983 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160933121139607, 39.983727267426097 ] } }, +{ "type": "Feature", "properties": { "location": "1400 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134187, 39.972562 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182848487988693, 39.995189741029698 ] } }, +{ "type": "Feature", "properties": { "location": "1927 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224405, 40.028153 ] } }, +{ "type": "Feature", "properties": { "location": "800 BIGLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162414522484596, 39.913026877883198 ] } }, +{ "type": "Feature", "properties": { "location": "800 BIGLER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162072, 39.913042 ] } }, +{ "type": "Feature", "properties": { "location": "624 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1567015653129, 39.925995053138003 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152885, 39.942523 ] } }, +{ "type": "Feature", "properties": { "location": "100 DUPONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225797, 40.029623 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166538, 39.942452 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170493, 39.965655 ] } }, +{ "type": "Feature", "properties": { "location": "300 SAINT MARKS SQ", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207952, 39.952348 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161182, 39.916787 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S BEULAH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159948083084302, 39.917362829854099 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E SUSQUEHANNA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127492, 39.976977 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073548, 40.043683 ] } }, +{ "type": "Feature", "properties": { "location": "4000 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203567, 39.963883 ] } }, +{ "type": "Feature", "properties": { "location": "100 SHURS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217092, 40.022948 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KENILWORTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16285, 39.942122 ] } }, +{ "type": "Feature", "properties": { "location": "900 LELAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166931517383603, 39.971319676039201 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16775, 39.918717 ] } }, +{ "type": "Feature", "properties": { "location": "400 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152565, 39.933455 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154885, 39.92951 ] } }, +{ "type": "Feature", "properties": { "location": "600 ROSALIE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099698519485102, 40.0410411268061 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158662, 39.920725 ] } }, +{ "type": "Feature", "properties": { "location": "517 S 62ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.246514216038193, 39.953834980581 ] } }, +{ "type": "Feature", "properties": { "location": "1900 PLYMOUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148280061441994, 40.064492167381502 ] } }, +{ "type": "Feature", "properties": { "location": "6100 LUDLOW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243243866227303, 39.961476011197398 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160622, 39.958447 ] } }, +{ "type": "Feature", "properties": { "location": "400 S TANEY ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183308, 39.947687 ] } }, +{ "type": "Feature", "properties": { "location": "200 E WALNUT LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175640254225797, 40.043141257328202 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W LOUDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147015, 40.026043 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "900 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164197, 39.917292 ] } }, +{ "type": "Feature", "properties": { "location": "4100 MAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218805847387003, 40.022581086505198 ] } }, +{ "type": "Feature", "properties": { "location": "2070 PICKWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099535089900897, 39.998453397460104 ] } }, +{ "type": "Feature", "properties": { "location": "1727 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224385, 40.028223 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13224, 40.027972 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225415, 40.026998 ] } }, +{ "type": "Feature", "properties": { "location": "1018 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155668, 39.960103 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "237 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132582, 39.969575 ] } }, +{ "type": "Feature", "properties": { "location": "7200 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.036389218332303, 40.030285109192 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228232, 40.02847 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W YORK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179875682317203, 39.992506743654097 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126487, 39.975138 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 41ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205708, 39.948232 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E COLUMBIA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131208, 39.971642 ] } }, +{ "type": "Feature", "properties": { "location": "2046 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171808, 39.967262 ] } }, +{ "type": "Feature", "properties": { "location": "1400 ARCH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164028061880103, 39.954523022470497 ] } }, +{ "type": "Feature", "properties": { "location": "3740 SHARP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212973, 40.019818 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144978, 39.970073 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PENNSYLVANIA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176208, 39.964398 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169612, 39.928132 ] } }, +{ "type": "Feature", "properties": { "location": "3700 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.195338, 39.959793 ] } }, +{ "type": "Feature", "properties": { "location": "1900 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173067, 39.952093 ] } }, +{ "type": "Feature", "properties": { "location": "6700 PASCHALL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235947746142699, 39.922570376817198 ] } }, +{ "type": "Feature", "properties": { "location": "100 FARISTON DR", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116243766531198, 40.048681225098498 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1613, 39.98219 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243917315478598, 39.956531971859597 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N LEITHGOW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128072426923296, 40.041649823845198 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N LEITHGOW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128072426923296, 40.041649823845198 ] } }, +{ "type": "Feature", "properties": { "location": "600 S AMERICAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146832, 39.94107 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225588, 40.026942 ] } }, +{ "type": "Feature", "properties": { "location": "2044 APPLETREE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173908, 39.956228 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140493, 39.96909 ] } }, +{ "type": "Feature", "properties": { "location": "3819 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199407, 39.955327 ] } }, +{ "type": "Feature", "properties": { "location": "3819 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199577, 39.955238 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193862, 39.957968 ] } }, +{ "type": "Feature", "properties": { "location": "300 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146253, 39.954152 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S YEWDALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220070945941004, 39.936575323897401 ] } }, +{ "type": "Feature", "properties": { "location": "1732 S YEWDALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220070945941004, 39.936575323897401 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15721, 39.952638 ] } }, +{ "type": "Feature", "properties": { "location": "2000 OGDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170703, 39.970912 ] } }, +{ "type": "Feature", "properties": { "location": "1527 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153582, 39.928983 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139635, 39.95761 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170865, 39.934567 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SEARS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179926768635696, 39.935303896537498 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183173801630204, 39.993697260569 ] } }, +{ "type": "Feature", "properties": { "location": "400 TABOR RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129928, 40.034385 ] } }, +{ "type": "Feature", "properties": { "location": "113 DEVEREAUX AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102918147449998, 40.0509788557085 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S WILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217348447121694, 39.938485532708398 ] } }, +{ "type": "Feature", "properties": { "location": "170 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161517, 39.92956 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178383, 39.968212 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157678, 39.925342 ] } }, +{ "type": "Feature", "properties": { "location": "3813 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197708, 39.960018 ] } }, +{ "type": "Feature", "properties": { "location": "500 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164413, 39.943533 ] } }, +{ "type": "Feature", "properties": { "location": "6800 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233286425901596, 39.917966129545299 ] } }, +{ "type": "Feature", "properties": { "location": "6800 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233286425901596, 39.917966129545299 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "6700 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237143885711703, 39.923581589033702 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 38TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197242, 39.962362 ] } }, +{ "type": "Feature", "properties": { "location": "5100 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224886612534803, 39.955095042371497 ] } }, +{ "type": "Feature", "properties": { "location": "6500 LEBANON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.250636274262604, 39.977910171534397 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172963089617795, 39.926053879925099 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073765, 40.04342 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170728, 39.964233 ] } }, +{ "type": "Feature", "properties": { "location": "335 E THAYER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124299488179204, 40.000669345173598 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S CLEVELAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188167134195, 39.9319880793742 ] } }, +{ "type": "Feature", "properties": { "location": "1800 GREYMONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.018752215126199, 40.102153838560199 ] } }, +{ "type": "Feature", "properties": { "location": "6217 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.245057755271105, 39.962495105725097 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165587, 39.935417 ] } }, +{ "type": "Feature", "properties": { "location": "4264 GRISCOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091124205938598, 40.010428290281801 ] } }, +{ "type": "Feature", "properties": { "location": "376 RENNARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.028185858613597, 40.121126098998801 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19693, 39.960798 ] } }, +{ "type": "Feature", "properties": { "location": "5200 D ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115310585506407, 40.029786393706402 ] } }, +{ "type": "Feature", "properties": { "location": "108 W ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129394343910505, 40.001730742374598 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153945060507994, 39.982820771933397 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086238, 40.013833 ] } }, +{ "type": "Feature", "properties": { "location": "3600 FREDERICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193507, 40.009903 ] } }, +{ "type": "Feature", "properties": { "location": "3400 OAKMONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.037055829576701, 40.0410014486297 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139535, 39.95694 ] } }, +{ "type": "Feature", "properties": { "location": "2700 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172307299794795, 39.996476439681999 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179835, 39.97341 ] } }, +{ "type": "Feature", "properties": { "location": "3100 JANNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109234090987698, 39.989766051176296 ] } }, +{ "type": "Feature", "properties": { "location": "3100 JANNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109234090987698, 39.989766051176296 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OLD YORK RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146687, 40.026118 ] } }, +{ "type": "Feature", "properties": { "location": "200 LINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1252341452102, 40.041518434815799 ] } }, +{ "type": "Feature", "properties": { "location": "3314 POTTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.110218032110495, 39.998833109565197 ] } }, +{ "type": "Feature", "properties": { "location": "3312 POTTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.110218032110495, 39.998833109565197 ] } }, +{ "type": "Feature", "properties": { "location": "3348 POTTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.110218032110495, 39.998833109565197 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182848487988693, 39.995189741029698 ] } }, +{ "type": "Feature", "properties": { "location": "2429 W MONTGOMERY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174882579617503, 39.982453402879301 ] } }, +{ "type": "Feature", "properties": { "location": "1117 W CUMBERLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150197773120993, 39.990209422094502 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1958 STERLING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149464295844496, 40.067772126999103 ] } }, +{ "type": "Feature", "properties": { "location": "1958 STERLING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149464295844496, 40.067772126999103 ] } }, +{ "type": "Feature", "properties": { "location": "1958 STERLING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149464295844496, 40.067772126999103 ] } }, +{ "type": "Feature", "properties": { "location": "330 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188056889150701, 40.0402060406388 ] } }, +{ "type": "Feature", "properties": { "location": "330 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188056889150701, 40.0402060406388 ] } }, +{ "type": "Feature", "properties": { "location": "330 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188056889150701, 40.0402060406388 ] } }, +{ "type": "Feature", "properties": { "location": "200 PIERCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150703067394403, 39.926093786297201 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171669897472199, 39.938163345933901 ] } }, +{ "type": "Feature", "properties": { "location": "4599 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225805, 40.029625 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073757, 40.043412 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178089557315005, 39.971246140363597 ] } }, +{ "type": "Feature", "properties": { "location": "845 N BEECHWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172805202028897, 39.9711802702071 ] } }, +{ "type": "Feature", "properties": { "location": "10770 HEATHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.029315648378798, 40.113039384847497 ] } }, +{ "type": "Feature", "properties": { "location": "701 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150459593357496, 39.962375121383801 ] } }, +{ "type": "Feature", "properties": { "location": "849 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146181205373594, 39.9653496038922 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155313, 39.92877 ] } }, +{ "type": "Feature", "properties": { "location": "5322 WESTMINSTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227395573224001, 39.967919651055297 ] } }, +{ "type": "Feature", "properties": { "location": "1925 POINT BREEZE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185307, 39.928348 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "200 VINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142578, 39.955625 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170058, 39.960593 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170095, 39.960723 ] } }, +{ "type": "Feature", "properties": { "location": "5500 SPRING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.230805323485498, 39.964305711840602 ] } }, +{ "type": "Feature", "properties": { "location": "300 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22024, 40.028905 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214613238467905, 40.028512966070998 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225223, 40.027038 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225385, 40.027448 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155622, 39.929868 ] } }, +{ "type": "Feature", "properties": { "location": "2700 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130843160057196, 39.991144740182499 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166632, 39.942452 ] } }, +{ "type": "Feature", "properties": { "location": "300 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148455, 39.94049 ] } }, +{ "type": "Feature", "properties": { "location": "300 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148422, 39.940563 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118463779973595, 39.996643697457102 ] } }, +{ "type": "Feature", "properties": { "location": "2900 RUTLEDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124318691473107, 39.993970860403799 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118463779973595, 39.996643697457102 ] } }, +{ "type": "Feature", "properties": { "location": "5600 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132325, 40.03746 ] } }, +{ "type": "Feature", "properties": { "location": "2000 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176843, 39.937783 ] } }, +{ "type": "Feature", "properties": { "location": "936 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143048, 39.966267 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146658, 39.93644 ] } }, +{ "type": "Feature", "properties": { "location": "3600 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195262, 39.953313 ] } }, +{ "type": "Feature", "properties": { "location": "3600 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19513, 39.953588 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158979083660498, 39.9634602048801 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143475, 40.034933 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129643, 39.972963 ] } }, +{ "type": "Feature", "properties": { "location": "845 ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114322, 39.996652 ] } }, +{ "type": "Feature", "properties": { "location": "2000 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170512, 39.971625 ] } }, +{ "type": "Feature", "properties": { "location": "1801 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165975943438994, 39.975404671037801 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ALLISON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231761826565901, 39.971558712223697 ] } }, +{ "type": "Feature", "properties": { "location": "4900 B ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.119718847768894, 40.024620784515299 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172887, 39.948442 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "6804 PASCHALL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238028287658807, 39.9211161758017 ] } }, +{ "type": "Feature", "properties": { "location": "6800 PASCHALL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238028287658807, 39.9211161758017 ] } }, +{ "type": "Feature", "properties": { "location": "2500 ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104588, 39.9868 ] } }, +{ "type": "Feature", "properties": { "location": "1200 PASSMORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081054820826594, 40.042708851536901 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168188, 39.943618 ] } }, +{ "type": "Feature", "properties": { "location": "4000 MARKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099294947135903, 40.008023178686798 ] } }, +{ "type": "Feature", "properties": { "location": "3000 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130304536388607, 39.9962686634804 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086257, 40.01378 ] } }, +{ "type": "Feature", "properties": { "location": "400 PINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149543, 39.943657 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "1025 FARRAGUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213752, 39.946753 ] } }, +{ "type": "Feature", "properties": { "location": "2215 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168373670162595, 39.9957297379202 ] } }, +{ "type": "Feature", "properties": { "location": "1300 LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143622, 39.972355 ] } }, +{ "type": "Feature", "properties": { "location": "500 E GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128383, 39.971057 ] } }, +{ "type": "Feature", "properties": { "location": "6700 BOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180167529920098, 40.057279049364098 ] } }, +{ "type": "Feature", "properties": { "location": "4500 RITCHIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225335, 40.028615 ] } }, +{ "type": "Feature", "properties": { "location": "4500 RITCHIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22532, 40.028605 ] } }, +{ "type": "Feature", "properties": { "location": "2800 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180531871089798, 39.986569237567302 ] } }, +{ "type": "Feature", "properties": { "location": "300 S BOUVIER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171025, 39.94685 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143955, 39.969767 ] } }, +{ "type": "Feature", "properties": { "location": "1000 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160598, 39.9352 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153672, 39.959707 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153717, 39.959732 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 53RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228752, 39.951238 ] } }, +{ "type": "Feature", "properties": { "location": "501 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156023, 39.921297 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234550547919994, 39.925419874465199 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1882, 39.961095 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169511398190494, 39.986715387695199 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158665, 39.92055 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090868, 40.00764 ] } }, +{ "type": "Feature", "properties": { "location": "1920 N 27TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177357436266007, 39.985098386991602 ] } }, +{ "type": "Feature", "properties": { "location": "6800 VANDIKE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044138, 40.02476 ] } }, +{ "type": "Feature", "properties": { "location": "6800 RODNEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155849863779494, 40.056619075706102 ] } }, +{ "type": "Feature", "properties": { "location": "500 CAMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139575, 39.9952 ] } }, +{ "type": "Feature", "properties": { "location": "400 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137752, 39.957978 ] } }, +{ "type": "Feature", "properties": { "location": "498 W RUSCOMB ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132035418510597, 40.0272140262839 ] } }, +{ "type": "Feature", "properties": { "location": "700 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15562, 39.939552 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JOHN F KENNEDY BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163633, 39.953515 ] } }, +{ "type": "Feature", "properties": { "location": "812 S 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157622, 39.939393 ] } }, +{ "type": "Feature", "properties": { "location": "5100 LOCUST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225557, 39.955822 ] } }, +{ "type": "Feature", "properties": { "location": "900 BUTTONWOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153557, 39.960662 ] } }, +{ "type": "Feature", "properties": { "location": "544 VAN KIRK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102108960261106, 40.043679069465803 ] } }, +{ "type": "Feature", "properties": { "location": "5900 GREENE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179166683238293, 40.035758279164199 ] } }, +{ "type": "Feature", "properties": { "location": "1231 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172212, 39.935605 ] } }, +{ "type": "Feature", "properties": { "location": "1710 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172817, 39.935768 ] } }, +{ "type": "Feature", "properties": { "location": "3200 A ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127221840921806, 39.998828921672597 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179828, 39.973382 ] } }, +{ "type": "Feature", "properties": { "location": "3100 W YORK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183059100285007, 39.992918031673 ] } }, +{ "type": "Feature", "properties": { "location": "3900 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.201197, 39.959157 ] } }, +{ "type": "Feature", "properties": { "location": "2800 TULIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116318037436898, 39.984950395319402 ] } }, +{ "type": "Feature", "properties": { "location": "400 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137777, 39.957972 ] } }, +{ "type": "Feature", "properties": { "location": "426 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122163, 39.997722 ] } }, +{ "type": "Feature", "properties": { "location": "700 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151958, 39.940353 ] } }, +{ "type": "Feature", "properties": { "location": "708 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151995, 39.940515 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139907, 39.952318 ] } }, +{ "type": "Feature", "properties": { "location": "3500 ENGLEWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.04318, 40.037153 ] } }, +{ "type": "Feature", "properties": { "location": "4300 SANSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208702, 39.955608 ] } }, +{ "type": "Feature", "properties": { "location": "66 N MILLICK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241831081871396, 39.962901917289201 ] } }, +{ "type": "Feature", "properties": { "location": "3100 RICHMOND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.103802, 39.981692 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105435, 39.983358 ] } }, +{ "type": "Feature", "properties": { "location": "600 E TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.118095923580299, 40.001848406580002 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154785, 39.929497 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154963, 39.929508 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154972, 39.929542 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154997, 39.929593 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165788, 39.965032 ] } }, +{ "type": "Feature", "properties": { "location": "600 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155735, 39.9297 ] } }, +{ "type": "Feature", "properties": { "location": "600 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "2027 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17567, 39.9472 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 21ST ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176307, 39.947597 ] } }, +{ "type": "Feature", "properties": { "location": "5321 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228652044392504, 39.978088478015501 ] } }, +{ "type": "Feature", "properties": { "location": "429 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150822, 39.9387 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169598, 39.917985 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163302, 39.926042 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225442, 40.027233 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164688, 39.922455 ] } }, +{ "type": "Feature", "properties": { "location": "4400 SILVERWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223267, 40.029117 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175108, 39.922548 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162438804761706, 39.982378840837796 ] } }, +{ "type": "Feature", "properties": { "location": "4700 MASCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126103, 40.02171 ] } }, +{ "type": "Feature", "properties": { "location": "300 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222436389011804, 40.032189448434401 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "6100 MASCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.121702373416497, 40.043427085826302 ] } }, +{ "type": "Feature", "properties": { "location": "2901 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178890950877502, 39.997080498819898 ] } }, +{ "type": "Feature", "properties": { "location": "3600 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195148, 39.953815 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179732, 39.973922 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179712, 39.973902 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160099296902004, 39.983849577512302 ] } }, +{ "type": "Feature", "properties": { "location": "506 N 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153062, 39.960898 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179783, 39.973633 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148428, 40.021763 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166208, 39.942837 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1557, 39.957702 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155658, 39.957745 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160815, 39.95951 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16064, 39.959495 ] } }, +{ "type": "Feature", "properties": { "location": "754S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17022, 39.941833 ] } }, +{ "type": "Feature", "properties": { "location": "200 W SEYMOUR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167831235997895, 40.025183377169697 ] } }, +{ "type": "Feature", "properties": { "location": "1800 BRUNNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156296739037103, 40.0182251000466 ] } }, +{ "type": "Feature", "properties": { "location": "638 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15347, 39.942527 ] } }, +{ "type": "Feature", "properties": { "location": "3500 OLD YORK RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14826, 40.00578 ] } }, +{ "type": "Feature", "properties": { "location": "199 W GODFREY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123187432803505, 40.044943820478998 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1774, 39.926733 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154943, 39.937383 ] } }, +{ "type": "Feature", "properties": { "location": "3300 FREDERICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193898, 40.010065 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091003, 40.007112 ] } }, +{ "type": "Feature", "properties": { "location": "100 E LOUDON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12436, 40.023037 ] } }, +{ "type": "Feature", "properties": { "location": "200 E LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128003465859507, 39.990514464275201 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17053, 39.944587 ] } }, +{ "type": "Feature", "properties": { "location": "1500 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167065, 39.944485 ] } }, +{ "type": "Feature", "properties": { "location": "4901 N 20TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156599737261999, 40.029628530529997 ] } }, +{ "type": "Feature", "properties": { "location": "900 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154378, 39.959508 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162808, 39.982452 ] } }, +{ "type": "Feature", "properties": { "location": "1921 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163423, 39.983042 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "239 WALLACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175288, 39.96684 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143317, 40.039727 ] } }, +{ "type": "Feature", "properties": { "location": "600 WILLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149147, 39.958585 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069145, 40.046908 ] } }, +{ "type": "Feature", "properties": { "location": "199 GRAPE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222942, 40.026125 ] } }, +{ "type": "Feature", "properties": { "location": "199 GRAPE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222943, 40.026067 ] } }, +{ "type": "Feature", "properties": { "location": "1448 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089493502317296, 40.033440277255202 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "900 WYNNEWOOD RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.247615401777495, 39.979071800635303 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090908, 40.007522 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12829, 39.967212 ] } }, +{ "type": "Feature", "properties": { "location": "3000 POTTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117251945440998, 39.994913960077199 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170507, 39.96556 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W GRANGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140575, 40.040863 ] } }, +{ "type": "Feature", "properties": { "location": "300 GREENE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144517, 39.961635 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142932, 39.963473 ] } }, +{ "type": "Feature", "properties": { "location": "3600 S DARIEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165152099142503, 39.901914586137401 ] } }, +{ "type": "Feature", "properties": { "location": "723 S SCHELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156943, 39.940995 ] } }, +{ "type": "Feature", "properties": { "location": "2700 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166577, 39.914887 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113921102918198, 39.998649280475497 ] } }, +{ "type": "Feature", "properties": { "location": "733 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DIAMOND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152127, 39.984055 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155685, 39.928123 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155758, 39.928042 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123943002634107, 40.042163244840197 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136618439084998, 40.025504211425499 ] } }, +{ "type": "Feature", "properties": { "location": "2800 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126977588820495, 39.993104615507796 ] } }, +{ "type": "Feature", "properties": { "location": "2800 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126977588820495, 39.993104615507796 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "921 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183702050635304, 39.973542504934699 ] } }, +{ "type": "Feature", "properties": { "location": "1328 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164487, 39.943968 ] } }, +{ "type": "Feature", "properties": { "location": "430 N SIMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.248350360537202, 39.969974513525699 ] } }, +{ "type": "Feature", "properties": { "location": "4300 WAYNE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157749776061394, 40.018552045343398 ] } }, +{ "type": "Feature", "properties": { "location": "300 SOMERVILLE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129218, 40.033123 ] } }, +{ "type": "Feature", "properties": { "location": "728 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154903, 39.94286 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138627654377899, 39.976670140001701 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196062, 39.957082 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "2073 KINGSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101405860742702, 39.997359615725401 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13245, 40.028007 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175728109180199, 39.930615822206299 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175728109180199, 39.930615822206299 ] } }, +{ "type": "Feature", "properties": { "location": "3400 F ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116703, 40.000173 ] } }, +{ "type": "Feature", "properties": { "location": "400 ASHDALE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132285, 40.028018 ] } }, +{ "type": "Feature", "properties": { "location": "9611 HAYDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.040479305294895, 40.089958897065202 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179813, 39.973533 ] } }, +{ "type": "Feature", "properties": { "location": "2302 S 67TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235491657138397, 39.922595659158098 ] } }, +{ "type": "Feature", "properties": { "location": "4133 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090867, 40.00698 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182109731762694, 39.973180199325 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165952465918807, 39.971734483319302 ] } }, +{ "type": "Feature", "properties": { "location": "330 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188056889150701, 40.0402060406388 ] } }, +{ "type": "Feature", "properties": { "location": "1500 STONEY LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044882459920998, 40.083737844062497 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.190887, 39.958283 ] } }, +{ "type": "Feature", "properties": { "location": "4425 DEVEREAUX AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057740034720396, 40.0218537649802 ] } }, +{ "type": "Feature", "properties": { "location": "2000 BELLMORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115393693707205, 39.990027729513201 ] } }, +{ "type": "Feature", "properties": { "location": "5800 BINGHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100718274320698, 40.041296691824499 ] } }, +{ "type": "Feature", "properties": { "location": "5900 BELDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.084905771329602, 40.035050261132 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17619, 39.952713 ] } }, +{ "type": "Feature", "properties": { "location": "51 E COULTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169779097302097, 40.033949939361101 ] } }, +{ "type": "Feature", "properties": { "location": "1600 E MOUNT AIRY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170837326106493, 40.079895222686901 ] } }, +{ "type": "Feature", "properties": { "location": "6300 FARISTON DR", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113566258108307, 40.046152528494702 ] } }, +{ "type": "Feature", "properties": { "location": "1400 ARCH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164028061880103, 39.954523022470497 ] } }, +{ "type": "Feature", "properties": { "location": "10947 AVON TER", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.028961120571495, 40.114800424312598 ] } }, +{ "type": "Feature", "properties": { "location": "10958 AVON TER", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.028961120571495, 40.114800424312598 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153402, 39.937665 ] } }, +{ "type": "Feature", "properties": { "location": "1928 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17398, 39.94627 ] } }, +{ "type": "Feature", "properties": { "location": "13 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "48 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "9312 NEIL RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043093581883198, 40.085036880182798 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167957, 39.917757 ] } }, +{ "type": "Feature", "properties": { "location": "300 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131443785731804, 39.969843175205398 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15279, 39.942382 ] } }, +{ "type": "Feature", "properties": { "location": "1800 KENTWOOD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.017299944716996, 40.101648287333397 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "7700 LEON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.034450804616696, 40.041427807807501 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILDEY ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143747, 39.966805 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "1363 S MELVILLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207951954694096, 39.943743181238403 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1722, 39.928563 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1400 ARCH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164028061880103, 39.954523022470497 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169018329613905, 39.929306198693098 ] } }, +{ "type": "Feature", "properties": { "location": "4500 LORING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.033175380411706, 40.033217517670401 ] } }, +{ "type": "Feature", "properties": { "location": "6300 STENTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1650281576525, 40.059293959359799 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16432, 39.917285 ] } }, +{ "type": "Feature", "properties": { "location": "3900 JASPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.093328, 40.005083 ] } }, +{ "type": "Feature", "properties": { "location": "900 BRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091110372165204, 40.031755364597203 ] } }, +{ "type": "Feature", "properties": { "location": "900 BRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091110372165204, 40.031755364597203 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205565, 39.951952 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.20556, 39.952678 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225592, 40.026913 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22709, 40.028393 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174185, 39.918633 ] } }, +{ "type": "Feature", "properties": { "location": "2252 RUFFNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166315488031501, 40.011524398684003 ] } }, +{ "type": "Feature", "properties": { "location": "606 S DELHI ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158118, 39.942435 ] } }, +{ "type": "Feature", "properties": { "location": "608 S DELHI ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158167, 39.942445 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147522, 39.935655 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147558, 39.935505 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LARDNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0795396301408, 40.035554269592197 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 36TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194008, 39.961207 ] } }, +{ "type": "Feature", "properties": { "location": "600 S BROAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16575, 39.942942 ] } }, +{ "type": "Feature", "properties": { "location": "800 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159838, 39.96918 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143885, 39.969702 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15927, 39.976877 ] } }, +{ "type": "Feature", "properties": { "location": "3817 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197757, 39.959987 ] } }, +{ "type": "Feature", "properties": { "location": "3821 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197943, 39.960077 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.196962, 39.959977 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162982, 39.956518 ] } }, +{ "type": "Feature", "properties": { "location": "450 S 50TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222512944480897, 39.951901237442499 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N PENN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077942, 40.026147 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N 3RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126890934902406, 40.039538269936699 ] } }, +{ "type": "Feature", "properties": { "location": "904 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158382, 39.938325 ] } }, +{ "type": "Feature", "properties": { "location": "902 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158343, 39.938402 ] } }, +{ "type": "Feature", "properties": { "location": "1251 MARLBOROUGH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13249, 39.970962 ] } }, +{ "type": "Feature", "properties": { "location": "300 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151747, 39.925745 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15925, 39.976785 ] } }, +{ "type": "Feature", "properties": { "location": "1700 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165015, 39.970793 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191938, 39.956722 ] } }, +{ "type": "Feature", "properties": { "location": "300 E WYOMING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.119185, 40.020985 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153695, 39.960258 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224322, 40.026557 ] } }, +{ "type": "Feature", "properties": { "location": "3000 TREMONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.017359063687394, 40.0582866176658 ] } }, +{ "type": "Feature", "properties": { "location": "934 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155418, 39.937207 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159602, 39.97601 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 59TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232248012542499, 39.936745311179003 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 13TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163372, 39.942915 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086155, 40.013778 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086133, 40.013903 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N HOWARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133754831907893, 39.982565998832001 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130127, 39.968962 ] } }, +{ "type": "Feature", "properties": { "location": "5700 HUNTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "5700 HUNTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "1226 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235120007146406, 39.971185535528598 ] } }, +{ "type": "Feature", "properties": { "location": "200 E STELLA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126541988791701, 39.9957922514157 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ELLA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127298235565505, 39.995328587683701 ] } }, +{ "type": "Feature", "properties": { "location": "200 E CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127982921392999, 39.993679328318599 ] } }, +{ "type": "Feature", "properties": { "location": "114 DURFOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149776944048597, 39.918809227849799 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 60TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232426809248096, 39.934387797642003 ] } }, +{ "type": "Feature", "properties": { "location": "6300 DICKENS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227216289912207, 39.923304005844102 ] } }, +{ "type": "Feature", "properties": { "location": "5527 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221227186100705, 39.9347843037743 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 66TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237666847365105, 39.9264632730589 ] } }, +{ "type": "Feature", "properties": { "location": "600 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152312, 39.944402 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SAINT DAVIDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228467, 40.030532 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224343, 40.026625 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MONUMENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162048, 39.98289 ] } }, +{ "type": "Feature", "properties": { "location": "3474 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103493, 39.99676 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164943, 39.962603 ] } }, +{ "type": "Feature", "properties": { "location": "2100 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17421, 39.962528 ] } }, +{ "type": "Feature", "properties": { "location": "1100 E WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125338, 39.970843 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125333, 39.970837 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "1406 HANSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211868595699201, 39.940945712542799 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086337, 40.013668 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213963, 40.023412 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "3000 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130304536388607, 39.9962686634804 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215242, 40.021855 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142312, 39.970267 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 6TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15209, 39.942747 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160099296902004, 39.983849577512302 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167572, 39.94346 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163107, 39.922275 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163162, 39.922298 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154495, 39.924888 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228065, 40.02838 ] } }, +{ "type": "Feature", "properties": { "location": "8000 CASTOR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.055488, 40.062272 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16008, 39.94985 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158903, 39.926757 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159872, 39.949695 ] } }, +{ "type": "Feature", "properties": { "location": "700 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148647, 39.97186 ] } }, +{ "type": "Feature", "properties": { "location": "700 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148632, 39.971855 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158728, 39.94284 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16367, 39.946423 ] } }, +{ "type": "Feature", "properties": { "location": "499 S 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197098, 39.961537 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155022, 39.929582 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154917, 39.929533 ] } }, +{ "type": "Feature", "properties": { "location": "3400 W LEHIGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187076134954907, 39.998132024716902 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164093397237195, 39.920459859598097 ] } }, +{ "type": "Feature", "properties": { "location": "600 WATKINS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155655, 39.92716 ] } }, +{ "type": "Feature", "properties": { "location": "600 WATKINS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155712, 39.927143 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S MILLICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223731760517197, 39.925799354806102 ] } }, +{ "type": "Feature", "properties": { "location": "400 PASSMORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09476, 40.050785 ] } }, +{ "type": "Feature", "properties": { "location": "5599 ARCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231822830559594, 39.962472031456002 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154063, 39.92743 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09066, 40.00753 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15874, 39.920678 ] } }, +{ "type": "Feature", "properties": { "location": "300 AMERICAN ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143287, 39.956153 ] } }, +{ "type": "Feature", "properties": { "location": "400 UNION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.201198071992295, 39.961008416040798 ] } }, +{ "type": "Feature", "properties": { "location": "2410 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171793385482303, 39.9950758319969 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BERKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131453, 39.977742 ] } }, +{ "type": "Feature", "properties": { "location": "667 E WENSLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117861770118196, 39.999497995092298 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 41ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205791424690702, 39.950411295187401 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 7TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153818, 39.942397 ] } }, +{ "type": "Feature", "properties": { "location": "2522 S ROSEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171597, 39.91877 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156785, 39.960823 ] } }, +{ "type": "Feature", "properties": { "location": "2500 E CLEMENTINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.106027, 39.985338 ] } }, +{ "type": "Feature", "properties": { "location": "2500 E CLEMENTINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.106027, 39.985458 ] } }, +{ "type": "Feature", "properties": { "location": "608 S 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161873, 39.942753 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225473, 40.02713 ] } }, +{ "type": "Feature", "properties": { "location": "4500 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22538, 40.027012 ] } }, +{ "type": "Feature", "properties": { "location": "100 VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176488, 39.951882 ] } }, +{ "type": "Feature", "properties": { "location": "OPPS 701 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17058, 39.943402 ] } }, +{ "type": "Feature", "properties": { "location": "1123 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163738, 39.930593 ] } }, +{ "type": "Feature", "properties": { "location": "100 LOUDON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124217, 40.023122 ] } }, +{ "type": "Feature", "properties": { "location": "4700 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12389, 40.022897 ] } }, +{ "type": "Feature", "properties": { "location": "1900 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17641, 39.934075 ] } }, +{ "type": "Feature", "properties": { "location": "4511 SILVERWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223738, 40.029713 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153668, 39.959618 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153647, 39.959713 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153683, 39.959832 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153695, 39.960627 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153647, 39.96039 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MONUMENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163225, 39.983018 ] } }, +{ "type": "Feature", "properties": { "location": "5700 CHARLES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068283297670703, 40.0223232312199 ] } }, +{ "type": "Feature", "properties": { "location": "1900 KIMBALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174723, 39.93971 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17605, 39.940793 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 40.028493 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228043, 40.028278 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158553, 39.958567 ] } }, +{ "type": "Feature", "properties": { "location": "600 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15473, 39.93121 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CHURCHVIEW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216832, 40.025032 ] } }, +{ "type": "Feature", "properties": { "location": "100 DAWSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212927, 40.018792 ] } }, +{ "type": "Feature", "properties": { "location": "2100 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177935, 39.942008 ] } }, +{ "type": "Feature", "properties": { "location": "1727 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "100 GRAPE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223038, 40.026017 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175067, 39.947288 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155487, 39.984568 ] } }, +{ "type": "Feature", "properties": { "location": "2555 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178493780818897, 39.994620483492398 ] } }, +{ "type": "Feature", "properties": { "location": "1399 W RUSH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153758, 39.996003 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15422, 40.003408 ] } }, +{ "type": "Feature", "properties": { "location": "2200 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182477, 39.942963 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22421, 40.028313 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225253, 40.027202 ] } }, +{ "type": "Feature", "properties": { "location": "100 W HAINES ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178833548111101, 40.036689758346697 ] } }, +{ "type": "Feature", "properties": { "location": "35 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15585, 40.003595 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E FLETCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124102, 39.972643 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123943, 39.972607 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129068, 39.972038 ] } }, +{ "type": "Feature", "properties": { "location": "699 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159032, 39.965838 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 24TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179303, 39.952157 ] } }, +{ "type": "Feature", "properties": { "location": "109 S 24TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179337, 39.952262 ] } }, +{ "type": "Feature", "properties": { "location": "4133 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090948, 40.007132 ] } }, +{ "type": "Feature", "properties": { "location": "700 S MARVINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161365, 39.94124 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E FIRTH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122922865162593, 39.981009483580003 ] } }, +{ "type": "Feature", "properties": { "location": "6208 CASTOR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.079574186440198, 40.0371963628494 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141327, 39.965428 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228068, 40.028288 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226368, 40.027683 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145403, 39.968187 ] } }, +{ "type": "Feature", "properties": { "location": "400 THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142857, 39.971198 ] } }, +{ "type": "Feature", "properties": { "location": "600 W THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14645, 39.971623 ] } }, +{ "type": "Feature", "properties": { "location": "4325 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217345841332801, 40.0282734007519 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226283, 40.02768 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 15TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164462, 39.954267 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192437, 39.957133 ] } }, +{ "type": "Feature", "properties": { "location": "2200 COLORADO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175565, 39.922535 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155618, 39.959412 ] } }, +{ "type": "Feature", "properties": { "location": "900 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153692, 39.95963 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149452, 40.005348 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15419, 40.041057 ] } }, +{ "type": "Feature", "properties": { "location": "612 S CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159852, 39.942657 ] } }, +{ "type": "Feature", "properties": { "location": "400 S HUTCHINSON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157497, 39.94444 ] } }, +{ "type": "Feature", "properties": { "location": "1599 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086325, 40.015205 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W BUTLER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151156079574093, 40.010871496931998 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172375, 39.945392 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214017, 40.023315 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OLD YORK RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14652, 40.027635 ] } }, +{ "type": "Feature", "properties": { "location": "6100 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "6100 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "1100 ANCHOR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.082240232316295, 40.029535444607099 ] } }, +{ "type": "Feature", "properties": { "location": "100 COTTAGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221035, 40.026225 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158115, 39.923358 ] } }, +{ "type": "Feature", "properties": { "location": "600 WILDER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154963, 39.930425 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172435, 39.919582 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17244, 39.919657 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1724, 39.919573 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169258, 39.941485 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155187, 39.920747 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155163, 39.920813 ] } }, +{ "type": "Feature", "properties": { "location": "504 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15561, 39.921445 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214613238467905, 40.028512966070998 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182507815898106, 39.942707927609703 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182507815898106, 39.942707927609703 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182507815898106, 39.942707927609703 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182507815898106, 39.942707927609703 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164153397583902, 39.967866122955101 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "217 S 42ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206682, 39.953455 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155087, 39.920788 ] } }, +{ "type": "Feature", "properties": { "location": "6715 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073517, 40.043723 ] } }, +{ "type": "Feature", "properties": { "location": "4600 MANSION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227398, 40.030552 ] } }, +{ "type": "Feature", "properties": { "location": "240 S 31ST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185445713889493, 39.954689375672501 ] } }, +{ "type": "Feature", "properties": { "location": "2417 S 64TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230254364625196, 39.924042063294202 ] } }, +{ "type": "Feature", "properties": { "location": "4720 N LAWRENCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132623661254996, 40.023404590296501 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205593, 39.953297 ] } }, +{ "type": "Feature", "properties": { "location": "3200 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189650203550102, 39.965468447461497 ] } }, +{ "type": "Feature", "properties": { "location": "414 N SICKELS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229061485178093, 39.967199097776003 ] } }, +{ "type": "Feature", "properties": { "location": "500 MORRIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155358, 39.927492 ] } }, +{ "type": "Feature", "properties": { "location": "500 MORRIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155407, 39.927507 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151535, 39.941542 ] } }, +{ "type": "Feature", "properties": { "location": "2100 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172610973840904, 39.970493961414697 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16559, 39.918615 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157078, 39.927678 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224355, 40.028113 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224423, 40.028067 ] } }, +{ "type": "Feature", "properties": { "location": "3500 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192698, 39.95807 ] } }, +{ "type": "Feature", "properties": { "location": "4200 MARKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.098631532917395, 40.011131985645299 ] } }, +{ "type": "Feature", "properties": { "location": "4200 MAYWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099188672810698, 40.011204897964099 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156658, 39.954603 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.24292, 39.961378 ] } }, +{ "type": "Feature", "properties": { "location": "4200 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207817, 39.953537 ] } }, +{ "type": "Feature", "properties": { "location": "714 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159193, 39.920527 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CRESTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080697456554702, 40.034334939438601 ] } }, +{ "type": "Feature", "properties": { "location": "1152 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152765792452499, 39.982670573241997 ] } }, +{ "type": "Feature", "properties": { "location": "299 S ALDER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158212, 39.946667 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170999467419605, 39.941218352587299 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15548, 39.984463 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N CAMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168340278154304, 39.999657792467197 ] } }, +{ "type": "Feature", "properties": { "location": "1300 NECTARINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160718, 39.961638 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156332, 39.960248 ] } }, +{ "type": "Feature", "properties": { "location": "300 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217640426211005, 40.029120525284299 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08619, 40.0138 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171692, 39.946743 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16118, 39.936997 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153775, 39.931017 ] } }, +{ "type": "Feature", "properties": { "location": "401 S 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168488, 39.945688 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "2500 E NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124788, 39.975223 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132278, 40.027888 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168002, 39.936393 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W SCHOOL HOUSE LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186753, 40.02364 ] } }, +{ "type": "Feature", "properties": { "location": "100 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221778065249694, 40.024906076604097 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MOUNT VERNON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160818, 39.964045 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S CARLISLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168353, 39.934253 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157875, 39.924533 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154262, 39.926993 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154027, 39.927817 ] } }, +{ "type": "Feature", "properties": { "location": "5200 LOCUST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225895, 39.955902 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157298450452998, 39.919587715279 ] } }, +{ "type": "Feature", "properties": { "location": "2039 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178957850700897, 39.9314059874349 ] } }, +{ "type": "Feature", "properties": { "location": "400 ASHDALE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13225, 40.028012 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12309, 39.973853 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 40TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202128, 39.960443 ] } }, +{ "type": "Feature", "properties": { "location": "6100 MEDIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241951298614893, 39.974145906010499 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153692, 39.959672 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155718, 39.934317 ] } }, +{ "type": "Feature", "properties": { "location": "4900 DISSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.039225, 40.022637 ] } }, +{ "type": "Feature", "properties": { "location": "300 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132423, 39.972938 ] } }, +{ "type": "Feature", "properties": { "location": "5558 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231991619159004, 39.960082144561703 ] } }, +{ "type": "Feature", "properties": { "location": "1012 FARRAGUT TER", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21406, 39.947012 ] } }, +{ "type": "Feature", "properties": { "location": "400 CHRISTIAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1509941596738, 39.937127511823299 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225473, 40.027153 ] } }, +{ "type": "Feature", "properties": { "location": "600 S ALDER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159087, 39.94252 ] } }, +{ "type": "Feature", "properties": { "location": "7200 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041667, 40.03626 ] } }, +{ "type": "Feature", "properties": { "location": "4600 GRISCOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086402, 40.015293 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 19TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172695, 39.94809 ] } }, +{ "type": "Feature", "properties": { "location": "4329 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100972325976898, 40.013035628016603 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107525136222904, 39.998658280984301 ] } }, +{ "type": "Feature", "properties": { "location": "5854 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2405297448299, 39.948518816909697 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149887, 40.00977 ] } }, +{ "type": "Feature", "properties": { "location": "623 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099698519485102, 40.0410411268061 ] } }, +{ "type": "Feature", "properties": { "location": "623 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099698519485102, 40.0410411268061 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15947, 39.923987 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173752, 39.966707 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SEPVIVA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131858, 39.975147 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179748, 39.973777 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15404, 39.96401 ] } }, +{ "type": "Feature", "properties": { "location": "1400 E SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12654, 39.975148 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170378, 39.92181 ] } }, +{ "type": "Feature", "properties": { "location": "6647 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.07414, 40.043108 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141247, 39.965402 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238531464519596, 39.953222984175603 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156182, 39.928098 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171218, 39.94011 ] } }, +{ "type": "Feature", "properties": { "location": "144 SHURS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2163, 40.023483 ] } }, +{ "type": "Feature", "properties": { "location": "221 E ELEANOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120960227366297, 40.023502219994199 ] } }, +{ "type": "Feature", "properties": { "location": "500 ASHDALE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132495, 40.02805 ] } }, +{ "type": "Feature", "properties": { "location": "200 SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160242, 39.947573 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173363, 39.922422 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15809, 39.93752 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 30TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185045949345707, 39.975013534715302 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 31ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187682, 39.964412 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126188235286605, 40.000543253065203 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160022, 39.924918 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1595, 39.924777 ] } }, +{ "type": "Feature", "properties": { "location": "448 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15477, 39.960507 ] } }, +{ "type": "Feature", "properties": { "location": "5500 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13973, 40.037012 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192143, 39.953473 ] } }, +{ "type": "Feature", "properties": { "location": "3500 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193728, 39.953728 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172968, 39.94849 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156408, 39.954538 ] } }, +{ "type": "Feature", "properties": { "location": "900 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15463, 39.95781 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073763, 40.04342 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 64TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231634273024895, 39.925225472959497 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159495, 39.924845 ] } }, +{ "type": "Feature", "properties": { "location": "5600 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229823199075497, 39.940110621942402 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153287, 39.938028 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 56TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.23332, 39.958688 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARPENTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161652, 39.938482 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181325803098304, 39.928825307017803 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17019, 39.94227 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157928, 39.958578 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091172, 40.007215 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22439, 40.028167 ] } }, +{ "type": "Feature", "properties": { "location": "6040 DELANCEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242990759656806, 39.956139112432098 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192372, 39.95868 ] } }, +{ "type": "Feature", "properties": { "location": "1980 STERLING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149464295844496, 40.067772126999103 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164155, 39.93978 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157311033737798, 39.923242256962801 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "164 N 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.242247300089005, 39.9645426757343 ] } }, +{ "type": "Feature", "properties": { "location": "2443 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162794419186, 39.991070700073301 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMITAGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229365, 40.031955 ] } }, +{ "type": "Feature", "properties": { "location": "500 W CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139855885162504, 39.995209061760498 ] } }, +{ "type": "Feature", "properties": { "location": "6828 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072358126949197, 40.044710103721897 ] } }, +{ "type": "Feature", "properties": { "location": "400 WILLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148817, 39.958567 ] } }, +{ "type": "Feature", "properties": { "location": "500 S SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161305, 39.943382 ] } }, +{ "type": "Feature", "properties": { "location": "900 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158968, 39.940905 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128292, 39.96718 ] } }, +{ "type": "Feature", "properties": { "location": "1433 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156432635917, 39.930807241555101 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162798, 39.964258 ] } }, +{ "type": "Feature", "properties": { "location": "14 N 58TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236743202564, 39.961783297774403 ] } }, +{ "type": "Feature", "properties": { "location": "101 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149947916850905, 39.9179971260616 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153687, 39.959787 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152517, 39.942372 ] } }, +{ "type": "Feature", "properties": { "location": "600 THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146393, 39.971692 ] } }, +{ "type": "Feature", "properties": { "location": "5800 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231318782024701, 39.937021854286101 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147278, 40.026423 ] } }, +{ "type": "Feature", "properties": { "location": "4900 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219136358215906, 39.963889040961703 ] } }, +{ "type": "Feature", "properties": { "location": "2341 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183989334270194, 39.932059867899603 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086232, 40.013698 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226785009021498, 39.937893641349397 ] } }, +{ "type": "Feature", "properties": { "location": "3800 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197277010237499, 39.960467515074001 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128113, 39.967373 ] } }, +{ "type": "Feature", "properties": { "location": "2024 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171498, 39.965752 ] } }, +{ "type": "Feature", "properties": { "location": "3400 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191063, 39.960228 ] } }, +{ "type": "Feature", "properties": { "location": "2545 GRAYS FERRY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186165, 39.941375 ] } }, +{ "type": "Feature", "properties": { "location": "2599 GRAYS FERRY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186105, 39.941315 ] } }, +{ "type": "Feature", "properties": { "location": "7451 E WALNUT LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152462822020397, 40.068274959795097 ] } }, +{ "type": "Feature", "properties": { "location": "800 N UBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168870127754005, 39.9695373923334 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159303, 39.925442 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15929, 39.925502 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15559, 39.929863 ] } }, +{ "type": "Feature", "properties": { "location": "2233 S JUNIPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16926, 39.922123 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15369, 39.959708 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROCKLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131032, 40.025615 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168268, 39.935355 ] } }, +{ "type": "Feature", "properties": { "location": "400 SEPVIVA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132023, 39.975095 ] } }, +{ "type": "Feature", "properties": { "location": "553 N 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235649316713193, 39.970076661507797 ] } }, +{ "type": "Feature", "properties": { "location": "100 LARUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139878, 39.96513 ] } }, +{ "type": "Feature", "properties": { "location": "2200 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177948, 39.951147 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173272, 39.923535 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133867, 39.972517 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROCKLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130938, 40.02562 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1579, 39.92453 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163658, 39.93467 ] } }, +{ "type": "Feature", "properties": { "location": "5100 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224886612534803, 39.955095042371497 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22624, 40.027695 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157435, 39.933383 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172672, 39.941305 ] } }, +{ "type": "Feature", "properties": { "location": "317 S 23RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177928, 39.947963 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163465, 39.983035 ] } }, +{ "type": "Feature", "properties": { "location": "199 SUMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207339592961702, 40.018091950062697 ] } }, +{ "type": "Feature", "properties": { "location": "300 DELMAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229240945874395, 40.035515168309402 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17485, 39.969683 ] } }, +{ "type": "Feature", "properties": { "location": "1 SUMMER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140123, 39.95475 ] } }, +{ "type": "Feature", "properties": { "location": "4400 PINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211582116368902, 39.951713845088399 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W WESTMORELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154267, 40.003377 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160837, 39.925613 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157007, 39.920715 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156178461314695, 39.957776657981 ] } }, +{ "type": "Feature", "properties": { "location": "6230 BUSTLETON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071795, 40.033885 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145927, 39.939705 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N WATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129427191176305, 39.993024234558597 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151297, 40.003295 ] } }, +{ "type": "Feature", "properties": { "location": "777 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152963, 39.939147 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179752, 39.973808 ] } }, +{ "type": "Feature", "properties": { "location": "200 WOLF ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150979565030497, 39.919411854106599 ] } }, +{ "type": "Feature", "properties": { "location": "4300 SILVERWOOD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221853, 40.027255 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225143718712303, 40.0262565643012 ] } }, +{ "type": "Feature", "properties": { "location": "1800 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175107323686404, 39.933446167026197 ] } }, +{ "type": "Feature", "properties": { "location": "200 CAMAC ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16176, 39.946913 ] } }, +{ "type": "Feature", "properties": { "location": "5433 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231141416693006, 39.978447410406197 ] } }, +{ "type": "Feature", "properties": { "location": "900 W NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148533, 39.98213 ] } }, +{ "type": "Feature", "properties": { "location": "300 GLADSTONE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153382250164697, 39.917991486003899 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192553, 39.956883 ] } }, +{ "type": "Feature", "properties": { "location": "2913 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178890950877502, 39.997080498819898 ] } }, +{ "type": "Feature", "properties": { "location": "100 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149115, 39.926727 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127298235565505, 39.995328587683701 ] } }, +{ "type": "Feature", "properties": { "location": "600 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154777, 39.937463 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151053, 39.933095 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15861, 39.920797 ] } }, +{ "type": "Feature", "properties": { "location": "625 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140067226837402, 40.007806233138801 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233186011450002, 39.919113482363798 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15264, 39.942242 ] } }, +{ "type": "Feature", "properties": { "location": "1200 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16666, 39.921408 ] } }, +{ "type": "Feature", "properties": { "location": "817 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1600724520966, 39.9685878006674 ] } }, +{ "type": "Feature", "properties": { "location": "1 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134058, 39.972957 ] } }, +{ "type": "Feature", "properties": { "location": "800 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "200 SPRING GARDEN ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142435, 39.96082 ] } }, +{ "type": "Feature", "properties": { "location": "203 W LAVEER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124512083998198, 40.045678415904099 ] } }, +{ "type": "Feature", "properties": { "location": "2147 S 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171509684181302, 39.9239744425848 ] } }, +{ "type": "Feature", "properties": { "location": "700 W CAYUGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138468085431697, 40.018639534269496 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132733, 39.975405 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154297, 39.927058 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155602, 39.92131 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155845, 39.9213 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.07769, 40.022002 ] } }, +{ "type": "Feature", "properties": { "location": "900 S WATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144812, 39.933608 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 44TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21066, 39.952488 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142307, 39.970072 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090948, 40.007183 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "OPP419 S 8TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155265, 39.94377 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "2200 W BERKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170647212636496, 39.983441726800699 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156808, 39.928193 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156873, 39.928135 ] } }, +{ "type": "Feature", "properties": { "location": "5500 W THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231430504010206, 39.972379036018701 ] } }, +{ "type": "Feature", "properties": { "location": "778 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180643, 39.969857 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N FRONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130211055352007, 39.994177508307303 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142537, 39.97242 ] } }, +{ "type": "Feature", "properties": { "location": "7000 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238704806655903, 39.917073900737897 ] } }, +{ "type": "Feature", "properties": { "location": "1770 TILGHMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136712, 39.977917 ] } }, +{ "type": "Feature", "properties": { "location": "2007 BRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071377901302796, 40.015698311252798 ] } }, +{ "type": "Feature", "properties": { "location": "1100 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165428, 39.926342 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134288, 39.972317 ] } }, +{ "type": "Feature", "properties": { "location": "6200 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246172, 39.984552 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170225, 39.949557 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DYRE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.082372, 40.022985 ] } }, +{ "type": "Feature", "properties": { "location": "1600 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169347, 39.948217 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161637, 39.929142 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161508, 39.929573 ] } }, +{ "type": "Feature", "properties": { "location": "4400 SPRUCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210635, 39.95273 ] } }, +{ "type": "Feature", "properties": { "location": "1931 ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111717, 39.994693 ] } }, +{ "type": "Feature", "properties": { "location": "2027 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171517, 39.965845 ] } }, +{ "type": "Feature", "properties": { "location": "2027 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171523, 39.965878 ] } }, +{ "type": "Feature", "properties": { "location": "100 BURNSIDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217107, 40.023123 ] } }, +{ "type": "Feature", "properties": { "location": "600 W ERIE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139241261315107, 40.007702724037003 ] } }, +{ "type": "Feature", "properties": { "location": "1413 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169018329613905, 39.929306198693098 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.932962 ] } }, +{ "type": "Feature", "properties": { "location": "3400 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191043, 39.960305 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147905, 39.971655 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152247, 39.942363 ] } }, +{ "type": "Feature", "properties": { "location": "200 TROTTERS ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14439, 39.948992 ] } }, +{ "type": "Feature", "properties": { "location": "200 TROTTERS ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144272, 39.948907 ] } }, +{ "type": "Feature", "properties": { "location": "281 S ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236582655652498, 39.956532687705803 ] } }, +{ "type": "Feature", "properties": { "location": "2700 W CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174436849519594, 40.002750158761998 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13434, 39.972528 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "2700 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180454892767301, 39.975204799598998 ] } }, +{ "type": "Feature", "properties": { "location": "814 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157568531559093, 39.936566484472003 ] } }, +{ "type": "Feature", "properties": { "location": "2400 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178057, 39.970127 ] } }, +{ "type": "Feature", "properties": { "location": "608 GREENWICH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15573, 39.929677 ] } }, +{ "type": "Feature", "properties": { "location": "5601 CHESTNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234182550131493, 39.959587991555303 ] } }, +{ "type": "Feature", "properties": { "location": "5347 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14332, 40.034845 ] } }, +{ "type": "Feature", "properties": { "location": "926 FARRAGUT TER", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215278668577199, 39.948083951348998 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153945060507994, 39.982820771933397 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151980759244196, 39.982571050684598 ] } }, +{ "type": "Feature", "properties": { "location": "6600 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235898990721395, 39.9244707588648 ] } }, +{ "type": "Feature", "properties": { "location": "124 S 43RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208612, 39.955652 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178152, 39.93051 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170238, 39.937275 ] } }, +{ "type": "Feature", "properties": { "location": "1711 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178142759317595, 39.982088617874602 ] } }, +{ "type": "Feature", "properties": { "location": "1400 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130845, 39.974635 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086122, 40.01382 ] } }, +{ "type": "Feature", "properties": { "location": "7500 WALKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0342322149003, 40.036623473527399 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160308932115996, 39.982879157617504 ] } }, +{ "type": "Feature", "properties": { "location": "1901 N 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160308932115996, 39.982879157617504 ] } }, +{ "type": "Feature", "properties": { "location": "1100 LOCUST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160127, 39.947728 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183619473665203, 39.975309191876697 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157838, 39.958543 ] } }, +{ "type": "Feature", "properties": { "location": "1215 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15897, 39.958468 ] } }, +{ "type": "Feature", "properties": { "location": "2800 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183945, 39.971945 ] } }, +{ "type": "Feature", "properties": { "location": "1600 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16135, 39.98544 ] } }, +{ "type": "Feature", "properties": { "location": "500 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151123, 39.941037 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175584972099102, 39.928905246725201 ] } }, +{ "type": "Feature", "properties": { "location": "4600 LUDLOW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21135, 39.957605 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15533, 39.98954 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142568, 39.969168 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 13TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163373, 39.942913 ] } }, +{ "type": "Feature", "properties": { "location": "6100 ARCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242742457301702, 39.963822645039002 ] } }, +{ "type": "Feature", "properties": { "location": "200 FLORIST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144228, 39.954392 ] } }, +{ "type": "Feature", "properties": { "location": "200 FLORIST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143770667853005, 39.9543880549096 ] } }, +{ "type": "Feature", "properties": { "location": "200 ARCH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143163, 39.953837 ] } }, +{ "type": "Feature", "properties": { "location": "3500 FREELAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205807967244795, 40.017365855831997 ] } }, +{ "type": "Feature", "properties": { "location": "3600 FREELAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206277587557295, 40.018020776558899 ] } }, +{ "type": "Feature", "properties": { "location": "3600 FREELAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206277587557295, 40.018020776558899 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143080727049295, 40.006643016473802 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160215, 39.942093 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154770302173006, 40.023046652394001 ] } }, +{ "type": "Feature", "properties": { "location": "500 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155745258905995, 39.923039893692 ] } }, +{ "type": "Feature", "properties": { "location": "1819 CECIL B MOORE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164666259013302, 39.979566956297703 ] } }, +{ "type": "Feature", "properties": { "location": "713 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127043, 39.97478 ] } }, +{ "type": "Feature", "properties": { "location": "7100 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188255535321503, 40.0598811149613 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142275, 40.039492 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156383, 39.960402 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225992799238, 39.927020613403698 ] } }, +{ "type": "Feature", "properties": { "location": "1714 N UBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166465123006205, 39.980582302039103 ] } }, +{ "type": "Feature", "properties": { "location": "2500 ASPEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179117904387297, 39.968987190782002 ] } }, +{ "type": "Feature", "properties": { "location": "2100 DORRANCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177143, 39.925042 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171638, 39.928322 ] } }, +{ "type": "Feature", "properties": { "location": "223 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HANCOCK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137327, 39.967418 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170295, 39.929438 ] } }, +{ "type": "Feature", "properties": { "location": "600 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152307, 39.944383 ] } }, +{ "type": "Feature", "properties": { "location": "3300 OLD YORK RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148807, 40.004057 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156043, 39.921297 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228127, 40.028368 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228163, 40.028355 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 13TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160138, 39.958773 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151183, 39.950128 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191868, 39.956805 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175851371798302, 39.933743955605003 ] } }, +{ "type": "Feature", "properties": { "location": "4358 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075715355306798, 39.9972515254955 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228298, 40.028407 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170223, 39.942372 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193912, 39.950497 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160788, 39.925607 ] } }, +{ "type": "Feature", "properties": { "location": "5701 HAZEL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2376157498109, 39.952838499822903 ] } }, +{ "type": "Feature", "properties": { "location": "400 W WYOMING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133472, 40.022603 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153627, 39.960207 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164227, 39.984118 ] } }, +{ "type": "Feature", "properties": { "location": "4900 RHAWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.023975, 40.03341 ] } }, +{ "type": "Feature", "properties": { "location": "3500 F ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116359496554594, 40.001850470204701 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W FISHER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143698, 40.033425 ] } }, +{ "type": "Feature", "properties": { "location": "1128 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157055, 39.963 ] } }, +{ "type": "Feature", "properties": { "location": "1128 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157037, 39.963082 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164492, 39.950697 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.92521 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "500 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146758, 39.966948 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 53RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226361381885496, 39.962572299953202 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15565, 39.953602 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "2500 ASH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0699124182795, 40.0033667797193 ] } }, +{ "type": "Feature", "properties": { "location": "7010 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "1500 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162330121276298, 39.969907045523101 ] } }, +{ "type": "Feature", "properties": { "location": "600 S PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157577, 39.94224 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "1 STRAWBERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144398, 39.949795 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15561, 39.929765 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ALMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100131626970594, 39.987422822011403 ] } }, +{ "type": "Feature", "properties": { "location": "4547 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145433318296597, 40.021846207015699 ] } }, +{ "type": "Feature", "properties": { "location": "1415 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171203, 39.920792 ] } }, +{ "type": "Feature", "properties": { "location": "3755 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156178461314695, 39.957776657981 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155453, 39.954485 ] } }, +{ "type": "Feature", "properties": { "location": "1000 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16048, 39.935152 ] } }, +{ "type": "Feature", "properties": { "location": "3100 RORER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120466202719598, 39.996593229751497 ] } }, +{ "type": "Feature", "properties": { "location": "1300 KERPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075798797382404, 40.0452091707958 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127938, 39.969845 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128993, 39.972085 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142312, 39.970247 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161970851488803, 39.9807846433824 ] } }, +{ "type": "Feature", "properties": { "location": "1100 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16117, 39.942643 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N FRANKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138624302309196, 40.019426015622997 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143972, 39.96969 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143918, 39.969642 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143778, 39.9696 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N LEITHGOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143668, 39.969422 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170342, 39.92694 ] } }, +{ "type": "Feature", "properties": { "location": "1546 ADAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091688353491705, 40.0087003376673 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156152, 39.96119 ] } }, +{ "type": "Feature", "properties": { "location": "500 COMLY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100739258755794, 40.044824923177401 ] } }, +{ "type": "Feature", "properties": { "location": "425 PENSDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212691160683207, 40.0274818610376 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151235, 39.949958 ] } }, +{ "type": "Feature", "properties": { "location": "6632 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.046145313119297, 40.022256661328797 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N FRONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129532167808605, 39.997288687203898 ] } }, +{ "type": "Feature", "properties": { "location": "814 FITZWATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156583, 39.940733 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212157, 40.02149 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213008195965898, 40.021422669282302 ] } }, +{ "type": "Feature", "properties": { "location": "206 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213008195965898, 40.021422669282302 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S VOGDES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223942227115202, 39.937604509729503 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157567, 39.925727 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160099296902004, 39.983849577512302 ] } }, +{ "type": "Feature", "properties": { "location": "5000 LEIPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.081748, 40.02264 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08609, 40.013822 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155757, 39.92978 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16412, 39.932372 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221797, 40.030398 ] } }, +{ "type": "Feature", "properties": { "location": "100 N MOLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165599443725498, 39.956126287472301 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130215, 39.972088 ] } }, +{ "type": "Feature", "properties": { "location": "5651 HEISKELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169707690700406, 40.039933955989802 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155277, 39.984395 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158335, 39.93677 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173008, 39.948527 ] } }, +{ "type": "Feature", "properties": { "location": "1400 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167055, 39.943377 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151607280127607, 39.962970602728298 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 55TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231075463324501, 39.973070941998998 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FEDERAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160975, 39.934548 ] } }, +{ "type": "Feature", "properties": { "location": "1858 N 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1606349386674, 39.981382342078 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174363, 39.95325 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14048, 39.965028 ] } }, +{ "type": "Feature", "properties": { "location": "506 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155688, 39.921373 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROCKLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13153, 40.025585 ] } }, +{ "type": "Feature", "properties": { "location": "100 LAUREL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139957, 39.965043 ] } }, +{ "type": "Feature", "properties": { "location": "1200 GREEBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080249206869198, 40.043556619249998 ] } }, +{ "type": "Feature", "properties": { "location": "200 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142527, 39.964967 ] } }, +{ "type": "Feature", "properties": { "location": "612 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1556, 39.92974 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220312, 40.02492 ] } }, +{ "type": "Feature", "properties": { "location": "4800 ROBBINS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.052625141289099, 40.019267119013001 ] } }, +{ "type": "Feature", "properties": { "location": "700 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159002, 39.922488 ] } }, +{ "type": "Feature", "properties": { "location": "2300 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175975, 39.965167 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 16TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164745, 39.962937 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225603, 40.02699 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226403, 40.027753 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178089557315005, 39.971246140363597 ] } }, +{ "type": "Feature", "properties": { "location": "200 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145687, 39.942328 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153257, 39.930588 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153277, 39.933773 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150945, 39.949773 ] } }, +{ "type": "Feature", "properties": { "location": "500 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156033, 39.925122 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130395, 39.97225 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130257, 39.972088 ] } }, +{ "type": "Feature", "properties": { "location": "5600 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225924335116204, 39.9375786533287 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162907, 39.967082 ] } }, +{ "type": "Feature", "properties": { "location": "4600 BALTIMORE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215533947308003, 39.9487905752963 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 13TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162156545231994, 39.9488822580171 ] } }, +{ "type": "Feature", "properties": { "location": "2200 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181806407751793, 39.934289165549302 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139702, 39.956863 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139643, 39.956813 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228233, 40.028485 ] } }, +{ "type": "Feature", "properties": { "location": "200 WINONA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175981296292093, 40.029528105639301 ] } }, +{ "type": "Feature", "properties": { "location": "6100 HARLEY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221689753708702, 39.923372458467398 ] } }, +{ "type": "Feature", "properties": { "location": "400 THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131153, 39.971785 ] } }, +{ "type": "Feature", "properties": { "location": "4950 PINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.222297, 39.953088 ] } }, +{ "type": "Feature", "properties": { "location": "4000 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203515, 39.963817 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174122, 39.952618 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141463, 39.969575 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1595178720913, 39.924086730455699 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174542, 39.950732 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "750 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115884688012599, 39.999523430550099 ] } }, +{ "type": "Feature", "properties": { "location": "200 FLORIST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143770667853005, 39.9543880549096 ] } }, +{ "type": "Feature", "properties": { "location": "5100 DARRAH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077083, 40.021673 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W CHAMPLOST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137428, 40.043647 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156958, 40.041283 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LENOX AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151847, 40.00828 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147987, 39.971768 ] } }, +{ "type": "Feature", "properties": { "location": "900 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152993, 39.96258 ] } }, +{ "type": "Feature", "properties": { "location": "269 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160243, 39.928203 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARPENTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158243, 39.937575 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FRALEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064564938326498, 40.0105521783182 ] } }, +{ "type": "Feature", "properties": { "location": "900 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126943, 39.968432 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FERNON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163135, 39.929348 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175858, 39.94801 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "1199 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174928, 39.937825 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179838, 39.97342 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130988, 40.025517 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18106, 39.971677 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130497, 39.972247 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155482, 39.959343 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175585, 39.935067 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155937, 39.954572 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 61ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225992799238, 39.927020613403698 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238762, 39.952565 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193968, 39.96052 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172427, 39.94699 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N BAILEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173993049904297, 39.998850896576698 ] } }, +{ "type": "Feature", "properties": { "location": "2022 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179672, 39.926972 ] } }, +{ "type": "Feature", "properties": { "location": "7300 THEODORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241543650148898, 39.912637767486501 ] } }, +{ "type": "Feature", "properties": { "location": "7300 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241543650148898, 39.912637767486501 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N 52ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226688907892395, 39.977331806754997 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088573, 40.010887 ] } }, +{ "type": "Feature", "properties": { "location": "100 WENDOVER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217632, 40.023545 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N GARNET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162581302363506, 39.997377906645497 ] } }, +{ "type": "Feature", "properties": { "location": "2200 W SEDGLEY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169175598743607, 39.9921566701938 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180814394467703, 39.942758722938201 ] } }, +{ "type": "Feature", "properties": { "location": "4100 APPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217918, 40.02346 ] } }, +{ "type": "Feature", "properties": { "location": "4100 APPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217922, 40.0235 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153478, 39.929357 ] } }, +{ "type": "Feature", "properties": { "location": "500 N HOBART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236669271653597, 39.969514873756602 ] } }, +{ "type": "Feature", "properties": { "location": "2000 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176235, 39.94629 ] } }, +{ "type": "Feature", "properties": { "location": "2000 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176228, 39.946362 ] } }, +{ "type": "Feature", "properties": { "location": "2000 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17626, 39.94631 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159313, 39.96248 ] } }, +{ "type": "Feature", "properties": { "location": "623 AVON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0256853299326, 40.111277871349699 ] } }, +{ "type": "Feature", "properties": { "location": "700 MARVINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161325, 39.941353 ] } }, +{ "type": "Feature", "properties": { "location": "5400 N WARNOCK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139052, 40.03587 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134367, 39.972322 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133752, 39.97486 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157978, 39.924992 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FARRAGUT TER", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213355, 39.94649 ] } }, +{ "type": "Feature", "properties": { "location": "4400 MANSION ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222776509604302, 40.027035352080901 ] } }, +{ "type": "Feature", "properties": { "location": "400 E FLORA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129688896673102, 39.970996044170803 ] } }, +{ "type": "Feature", "properties": { "location": "322 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132828, 39.972997 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158475, 39.958487 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151177, 39.984037 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MASCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122681412358702, 40.0404360663426 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174754906039595, 39.970265735694497 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152818, 39.953288 ] } }, +{ "type": "Feature", "properties": { "location": "1149 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16328, 39.936163 ] } }, +{ "type": "Feature", "properties": { "location": "1344 ELLSWORTH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166335, 39.936628 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08622, 40.013757 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159577, 39.975407 ] } }, +{ "type": "Feature", "properties": { "location": "700 E ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117129520992904, 39.9969759614482 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10573, 39.996507 ] } }, +{ "type": "Feature", "properties": { "location": "4400 MITCHELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215066657491903, 40.030705583339 ] } }, +{ "type": "Feature", "properties": { "location": "850 W DAUPHIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1469266815472, 39.986716397975599 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226383, 40.027658 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168122, 39.943623 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15272, 39.925893 ] } }, +{ "type": "Feature", "properties": { "location": "100 DURFOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149776944048597, 39.918809227849799 ] } }, +{ "type": "Feature", "properties": { "location": "259 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "900 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156862, 39.94542 ] } }, +{ "type": "Feature", "properties": { "location": "700 FEDERAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156675, 39.933898 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "199 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "197 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "197 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "100 DUPONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225772, 40.029703 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228222, 40.02846 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163513, 39.949943 ] } }, +{ "type": "Feature", "properties": { "location": "300 W RUSCOMB ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130146415643793, 40.026977021534996 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E WENSLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109239621028195, 39.9977421993405 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16922291537, 39.998229290531498 ] } }, +{ "type": "Feature", "properties": { "location": "900 WHARTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159597, 39.93311 ] } }, +{ "type": "Feature", "properties": { "location": "1041 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156538, 39.960377 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15496, 39.932782 ] } }, +{ "type": "Feature", "properties": { "location": "200 TROTTERS ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144523, 39.949043 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16086, 39.951095 ] } }, +{ "type": "Feature", "properties": { "location": "4000 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202957, 39.960298 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159185, 39.976738 ] } }, +{ "type": "Feature", "properties": { "location": "309 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157017801052902, 39.9576419838642 ] } }, +{ "type": "Feature", "properties": { "location": "6141 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226582568443902, 39.926219003183597 ] } }, +{ "type": "Feature", "properties": { "location": "3000 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106479862298002, 39.981626943582398 ] } }, +{ "type": "Feature", "properties": { "location": "101 W LEHIGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131168510724905, 39.9909262877255 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159148, 39.966697 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155105, 39.929252 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15572, 39.928907 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156303, 39.928193 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13353, 39.975163 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WENSLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117861770118196, 39.999497995092298 ] } }, +{ "type": "Feature", "properties": { "location": "240 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175437, 39.920967 ] } }, +{ "type": "Feature", "properties": { "location": "2755 N RINGGOLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171148943320702, 39.9969061660438 ] } }, +{ "type": "Feature", "properties": { "location": "1599 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086298, 40.015047 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOYER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127483, 39.972238 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MELON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162177, 39.966413 ] } }, +{ "type": "Feature", "properties": { "location": "900 ERIE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14332, 40.008183 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149413, 39.97769 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173385, 39.937763 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1600479466005, 39.921641000552 ] } }, +{ "type": "Feature", "properties": { "location": "2108 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179314904181297, 39.938103416483202 ] } }, +{ "type": "Feature", "properties": { "location": "3700 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197623, 39.955783 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162615, 39.947553 ] } }, +{ "type": "Feature", "properties": { "location": "5700 HUNTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213912, 40.023162 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W CUMBERLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1603239385515, 39.991511035730298 ] } }, +{ "type": "Feature", "properties": { "location": "4300 PECHIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217733, 40.030813 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 55TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226639315378904, 39.940706036669098 ] } }, +{ "type": "Feature", "properties": { "location": "2436 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171793385482303, 39.9950758319969 ] } }, +{ "type": "Feature", "properties": { "location": "204 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124695974647196, 40.044583159159998 ] } }, +{ "type": "Feature", "properties": { "location": "235 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "1300 AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140125, 39.971475 ] } }, +{ "type": "Feature", "properties": { "location": "5000 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220944621384803, 39.967514337929103 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164145, 39.935725 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156178461314695, 39.957776657981 ] } }, +{ "type": "Feature", "properties": { "location": "3400 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149538, 40.00518 ] } }, +{ "type": "Feature", "properties": { "location": "1226 E PALMER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128791162857695, 39.971557861749098 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153567, 39.928923 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134615, 39.967047 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154697, 39.948922 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180435135540705, 39.980873786102798 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15416, 39.927783 ] } }, +{ "type": "Feature", "properties": { "location": "2219 E GORDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127050568904906, 39.979800049934603 ] } }, +{ "type": "Feature", "properties": { "location": "3400 KEIM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117123940405904, 40.000928704119097 ] } }, +{ "type": "Feature", "properties": { "location": "3200 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189327, 39.960292 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172355, 39.934755 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172393, 39.934765 ] } }, +{ "type": "Feature", "properties": { "location": "1301 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172523376321493, 39.934152430971203 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172523376321493, 39.934152430971203 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "1800 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177687901102502, 39.921565805398302 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176773335667306, 39.922087351171101 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161015, 39.931768 ] } }, +{ "type": "Feature", "properties": { "location": "1702 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155488, 39.927413 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155718, 39.929382 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133025, 39.968967 ] } }, +{ "type": "Feature", "properties": { "location": "5100 WALTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226039980130906, 39.9495794482824 ] } }, +{ "type": "Feature", "properties": { "location": "3175 AGATE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108267911109607, 39.988675081499103 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 15TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16726, 39.943413 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171603, 39.923308 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171613, 39.923342 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "400 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151217, 39.938832 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "4200 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208392, 39.954903 ] } }, +{ "type": "Feature", "properties": { "location": "5502 MASTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231450824529901, 39.973681814774601 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N FRANKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138624302309196, 40.019426015622997 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140354590774606, 39.994504961216897 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126525, 39.970325 ] } }, +{ "type": "Feature", "properties": { "location": "400 S WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164312, 39.945268 ] } }, +{ "type": "Feature", "properties": { "location": "1901 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160308932115996, 39.982879157617504 ] } }, +{ "type": "Feature", "properties": { "location": "6000 LIMEKILN PIKE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148647, 40.04619 ] } }, +{ "type": "Feature", "properties": { "location": "1000 ALCOTT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089406024067102, 40.0359479395254 ] } }, +{ "type": "Feature", "properties": { "location": "6823 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.042733900604702, 40.024023093309701 ] } }, +{ "type": "Feature", "properties": { "location": "3300 B ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125006223673395, 39.999873832583702 ] } }, +{ "type": "Feature", "properties": { "location": "4110 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214584713006303, 40.024900998937703 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "113 DEVEREAUX AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102918147449998, 40.0509788557085 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E BIRCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117624145460198, 39.9916361934024 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133113, 39.968988 ] } }, +{ "type": "Feature", "properties": { "location": "4000 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205688, 39.951978 ] } }, +{ "type": "Feature", "properties": { "location": "4300 SILVERWOOD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22141, 40.026693 ] } }, +{ "type": "Feature", "properties": { "location": "4000 OAKMONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.035209025186901, 40.038251594976799 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16423, 39.935743 ] } }, +{ "type": "Feature", "properties": { "location": "900 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160663, 39.933212 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SAINT DAVIDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228353, 40.028607 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170998, 39.952335 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159318, 39.917917 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15929, 39.917905 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1593, 39.91785 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159872, 39.91805 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157735, 39.925212 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157015, 39.928048 ] } }, +{ "type": "Feature", "properties": { "location": "1141 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155622727032707, 39.934480805984002 ] } }, +{ "type": "Feature", "properties": { "location": "225 W ALBANUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128847189448294, 40.026279760722602 ] } }, +{ "type": "Feature", "properties": { "location": "4200 STATION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21995, 40.024008 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091143, 40.007273 ] } }, +{ "type": "Feature", "properties": { "location": "1999 74TH AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149577384717205, 40.067259015644503 ] } }, +{ "type": "Feature", "properties": { "location": "1999 74TH AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149577384717205, 40.067259015644503 ] } }, +{ "type": "Feature", "properties": { "location": "1800 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173115, 39.94432 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 49TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219085, 39.958515 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149602, 39.946215 ] } }, +{ "type": "Feature", "properties": { "location": "3376 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107121750967295, 39.995735576072398 ] } }, +{ "type": "Feature", "properties": { "location": "3400 W LEHIGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187076134954907, 39.998132024716902 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MEMPHIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12954, 39.975895 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARPENTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168288, 39.939342 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15345, 39.929065 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224412, 40.028177 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175462, 39.947122 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221398, 40.029812 ] } }, +{ "type": "Feature", "properties": { "location": "1580 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225907424880603, 39.978578447106401 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 43RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20929, 39.951538 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 43RD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209352, 39.951502 ] } }, +{ "type": "Feature", "properties": { "location": "10800 GIFFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.025403066366707, 40.112814057305997 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16934, 39.971433 ] } }, +{ "type": "Feature", "properties": { "location": "5302 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227147609813898, 39.960276140384302 ] } }, +{ "type": "Feature", "properties": { "location": "2300 W INDIANA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168452228506496, 40.0004485204311 ] } }, +{ "type": "Feature", "properties": { "location": "400 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154529043453806, 39.918582992812397 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152994650392401, 39.950092836193903 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CARLISLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171665, 39.920727 ] } }, +{ "type": "Feature", "properties": { "location": "3900 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.200452148950404, 39.9621264945661 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17532, 39.921222 ] } }, +{ "type": "Feature", "properties": { "location": "2203 ASPEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174167, 39.968402 ] } }, +{ "type": "Feature", "properties": { "location": "7300 SOMMERS RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155010154434294, 40.066585846714702 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147905, 39.940145 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 73RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239642735041002, 39.912412461655002 ] } }, +{ "type": "Feature", "properties": { "location": "2800 JUDSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169701828273801, 39.998291432288603 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177772, 39.948153 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "2123 75TH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155308089581098, 40.069094778037901 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246369066741195, 39.959538635384099 ] } }, +{ "type": "Feature", "properties": { "location": "5719 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236521577111006, 39.958320199861497 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "800 E WESTMORELAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114284559735097, 39.998237535500401 ] } }, +{ "type": "Feature", "properties": { "location": "1 E SEYMOUR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162727329578701, 40.030236432345397 ] } }, +{ "type": "Feature", "properties": { "location": "1 W ASHMEAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168203174234307, 40.028733728812803 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "1661 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177433985981693, 39.965595945200903 ] } }, +{ "type": "Feature", "properties": { "location": "5600 WILLOWS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231302874369703, 39.941934349378997 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224525, 39.972538 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191295, 39.962113 ] } }, +{ "type": "Feature", "properties": { "location": "730 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154912, 39.942768 ] } }, +{ "type": "Feature", "properties": { "location": "1900 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174933, 39.939368 ] } }, +{ "type": "Feature", "properties": { "location": "1201 W CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141186541892296, 40.039405440820801 ] } }, +{ "type": "Feature", "properties": { "location": "801 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "1400 FANSHAWE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075208050885195, 40.042980749741197 ] } }, +{ "type": "Feature", "properties": { "location": "3100 GAUL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105117, 39.986972 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILLINGTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161528, 39.981205 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MONUMENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16331, 39.98306 ] } }, +{ "type": "Feature", "properties": { "location": "700 GAUL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127848, 39.97554 ] } }, +{ "type": "Feature", "properties": { "location": "6500 PASCHALL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233746030624204, 39.924127181588602 ] } }, +{ "type": "Feature", "properties": { "location": "100 LEVERING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22441, 40.026267 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N LAWRENCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140762125506697, 39.985105196313803 ] } }, +{ "type": "Feature", "properties": { "location": "5900 SHISLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085549795949504, 40.035410044103898 ] } }, +{ "type": "Feature", "properties": { "location": "5900 SHISLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085549795949504, 40.035410044103898 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129919713619302, 40.025673234835097 ] } }, +{ "type": "Feature", "properties": { "location": "6200 LARGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077502358495494, 40.036005798519497 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158732075490207, 39.982669015578502 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166272028734994, 39.951753267343001 ] } }, +{ "type": "Feature", "properties": { "location": "1413 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169018329613905, 39.929306198693098 ] } }, +{ "type": "Feature", "properties": { "location": "943 GRANITE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091344380469593, 40.031211659254197 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162428, 39.940387 ] } }, +{ "type": "Feature", "properties": { "location": "600 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157838, 39.924032 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16399, 39.981102 ] } }, +{ "type": "Feature", "properties": { "location": "200 W ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132874310681302, 40.002174094843397 ] } }, +{ "type": "Feature", "properties": { "location": "2014 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153335539401397, 39.9228983440684 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SNYDER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174378, 39.924978 ] } }, +{ "type": "Feature", "properties": { "location": "100 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14492, 39.94426 ] } }, +{ "type": "Feature", "properties": { "location": "300 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222436389011804, 40.032189448434401 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20168, 39.95469 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163668, 39.96718 ] } }, +{ "type": "Feature", "properties": { "location": "600 GERRITT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154932, 39.930885 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "726 CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170177, 39.942677 ] } }, +{ "type": "Feature", "properties": { "location": "1500 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167995, 39.945268 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137555, 39.968185 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169765, 39.951345 ] } }, +{ "type": "Feature", "properties": { "location": "200 S PERTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154067, 39.946562 ] } }, +{ "type": "Feature", "properties": { "location": "227 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "2020 N 25TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174528211598698, 39.9862664838342 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122992, 39.973712 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MCFERRAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150771907708005, 40.012331725506698 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W SOMERSET ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176879764012995, 39.998443328114298 ] } }, +{ "type": "Feature", "properties": { "location": "4399 TOWER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220713, 40.026972 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N CORLIES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184846083475307, 39.978547387156098 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225432, 40.027132 ] } }, +{ "type": "Feature", "properties": { "location": "259 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "190 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122597094140701, 40.044310069466398 ] } }, +{ "type": "Feature", "properties": { "location": "198 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122597094140701, 40.044310069466398 ] } }, +{ "type": "Feature", "properties": { "location": "400 W WELLENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130180988995207, 40.031163364334603 ] } }, +{ "type": "Feature", "properties": { "location": "1968 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1522557009867, 40.047901113238403 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "803 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "3500 JASPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.104891150184201, 39.999001867176602 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ARGYLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111819206454001, 39.998691024209499 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ARGYLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111819206454001, 39.998691024209499 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "1504 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167292, 39.944132 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CARPENTER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184002, 39.941347 ] } }, +{ "type": "Feature", "properties": { "location": "1537 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235943686351504, 39.975604926872499 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164330246081505, 39.981092571123398 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160933121139607, 39.983727267426097 ] } }, +{ "type": "Feature", "properties": { "location": "2214 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168602433710902, 39.994669101438198 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "1660 N 62ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243715750270795, 39.976276855757703 ] } }, +{ "type": "Feature", "properties": { "location": "5526 MASTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231944696545497, 39.973626684853102 ] } }, +{ "type": "Feature", "properties": { "location": "600 WILLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149065, 39.958612 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.237348, 39.95922 ] } }, +{ "type": "Feature", "properties": { "location": "3200 ALMOND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.103658, 39.985637 ] } }, +{ "type": "Feature", "properties": { "location": "4400 MARPLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.032036699456896, 40.0355206249573 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1751, 39.922482 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175113, 39.922483 ] } }, +{ "type": "Feature", "properties": { "location": "200 BALDWIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223872, 40.029925 ] } }, +{ "type": "Feature", "properties": { "location": "195 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16096, 39.968498 ] } }, +{ "type": "Feature", "properties": { "location": "2231 S JUNIPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169197, 39.922135 ] } }, +{ "type": "Feature", "properties": { "location": "5200 BURTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070410386993501, 40.014999479923702 ] } }, +{ "type": "Feature", "properties": { "location": "5400 AKRON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078959055967701, 40.027696340848401 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHELTEN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145825132922994, 40.051026878688099 ] } }, +{ "type": "Feature", "properties": { "location": "2700 LEFEVRE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.071843145022498, 39.999734534193401 ] } }, +{ "type": "Feature", "properties": { "location": "2600 LEFEVRE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072987035248801, 40.001300632837399 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228348, 40.028692 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "700 E ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117129520992904, 39.9969759614482 ] } }, +{ "type": "Feature", "properties": { "location": "6800 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.042733900604702, 40.024023093309701 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157862, 39.931688 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155238, 39.920762 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108681669775905, 39.998047076844301 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153278, 39.93802 ] } }, +{ "type": "Feature", "properties": { "location": "1580 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225907424880603, 39.978578447106401 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "6300 ALGON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085743302797397, 40.043150411282497 ] } }, +{ "type": "Feature", "properties": { "location": "5339 LESHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075091797978899, 40.0224853771699 ] } }, +{ "type": "Feature", "properties": { "location": "5400 DISCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080774113352902, 40.028712277559798 ] } }, +{ "type": "Feature", "properties": { "location": "2800 WILMOT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.071510398987002, 39.997830376646696 ] } }, +{ "type": "Feature", "properties": { "location": "4300 LEVICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.055182345957803, 40.025423231458497 ] } }, +{ "type": "Feature", "properties": { "location": "5300 HAWTHORNE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.074178674455993, 40.021050952759197 ] } }, +{ "type": "Feature", "properties": { "location": "2700 LEFEVRE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071843145022498, 39.999734534193401 ] } }, +{ "type": "Feature", "properties": { "location": "4300 TOWER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219957395977303, 40.026365623986202 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "169 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "4633 ASHVILLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.027145306912203, 40.034907311529999 ] } }, +{ "type": "Feature", "properties": { "location": "200 E WALNUT LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175640254225797, 40.043141257328202 ] } }, +{ "type": "Feature", "properties": { "location": "2759 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175235726996902, 39.9980292697024 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N BAILEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173657893828306, 40.0003389929796 ] } }, +{ "type": "Feature", "properties": { "location": "6600 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.046145313119297, 40.022256661328797 ] } }, +{ "type": "Feature", "properties": { "location": "6600 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.046145313119297, 40.022256661328797 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154877, 39.948973 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "5900 ALMA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.083547358339402, 40.034286545613398 ] } }, +{ "type": "Feature", "properties": { "location": "1300 GREEBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078771692602999, 40.042732994922403 ] } }, +{ "type": "Feature", "properties": { "location": "1234 GREEBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080249206869198, 40.043556619249998 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180513, 39.94409 ] } }, +{ "type": "Feature", "properties": { "location": "1100 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156095, 39.959777 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N 25TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173267398630202, 39.992038637402302 ] } }, +{ "type": "Feature", "properties": { "location": "1419 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165783067224893, 39.976288971900999 ] } }, +{ "type": "Feature", "properties": { "location": "8906 SYLVIA LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.050830081093594, 40.084073540920301 ] } }, +{ "type": "Feature", "properties": { "location": "8914 SYLVIA LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.050830081093594, 40.084073540920301 ] } }, +{ "type": "Feature", "properties": { "location": "8916 SYLVIA LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.050830081093594, 40.084073540920301 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1556, 39.929868 ] } }, +{ "type": "Feature", "properties": { "location": "100 SHURS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218165625409796, 40.022307890018297 ] } }, +{ "type": "Feature", "properties": { "location": "8904 SYLVIA LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.050830081093594, 40.084073540920301 ] } }, +{ "type": "Feature", "properties": { "location": "3501 CHALFONT DR", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -74.9866032619083, 40.082460676299497 ] } }, +{ "type": "Feature", "properties": { "location": "1300 COLWYN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148522016405096, 40.015496781898001 ] } }, +{ "type": "Feature", "properties": { "location": "900 N PENN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135282, 39.96234 ] } }, +{ "type": "Feature", "properties": { "location": "4600 MASCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126115, 40.021713 ] } }, +{ "type": "Feature", "properties": { "location": "8768 DITMAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.010038364030905, 40.045559321194801 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151557, 39.950702 ] } }, +{ "type": "Feature", "properties": { "location": "900 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152865, 39.962532 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "300 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148257, 39.944425 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177998, 39.92395 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141255, 39.965418 ] } }, +{ "type": "Feature", "properties": { "location": "700 SHIRLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167495740097607, 39.967416185309801 ] } }, +{ "type": "Feature", "properties": { "location": "1916 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17017, 39.963508 ] } }, +{ "type": "Feature", "properties": { "location": "1916 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170177, 39.963625 ] } }, +{ "type": "Feature", "properties": { "location": "1900 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17012, 39.963792 ] } }, +{ "type": "Feature", "properties": { "location": "1916 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170313, 39.963927 ] } }, +{ "type": "Feature", "properties": { "location": "1916 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170275, 39.963662 ] } }, +{ "type": "Feature", "properties": { "location": "1916 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17026, 39.9638 ] } }, +{ "type": "Feature", "properties": { "location": "1916 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170178, 39.963698 ] } }, +{ "type": "Feature", "properties": { "location": "2124 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132713759782007, 39.982400290364403 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142821154925102, 40.010562233606002 ] } }, +{ "type": "Feature", "properties": { "location": "4613 FOWLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226737273736305, 40.031572752128703 ] } }, +{ "type": "Feature", "properties": { "location": "300 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222436389011804, 40.032189448434401 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173802, 39.966817 ] } }, +{ "type": "Feature", "properties": { "location": "1652 DOUNTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153653054762898, 40.0181050242849 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226343, 40.027697 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "400 MONASTERY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216017592750603, 40.029829748777402 ] } }, +{ "type": "Feature", "properties": { "location": "1809 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170778, 39.952388 ] } }, +{ "type": "Feature", "properties": { "location": "319 W GRANGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1274788598556, 40.039220588312901 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151903171246701, 39.966261014450403 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180968, 39.971642 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155263, 39.959638 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150937, 40.004548 ] } }, +{ "type": "Feature", "properties": { "location": "6700 ELMWOOD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.23394, 39.91961 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15972, 39.974737 ] } }, +{ "type": "Feature", "properties": { "location": "300 W CAMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136922606209595, 39.994833681257198 ] } }, +{ "type": "Feature", "properties": { "location": "300 W CAMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136922606209595, 39.994833681257198 ] } }, +{ "type": "Feature", "properties": { "location": "1100 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155803, 39.959913 ] } }, +{ "type": "Feature", "properties": { "location": "100 W ALLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137301526477401, 39.966345300093899 ] } }, +{ "type": "Feature", "properties": { "location": "126 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137735, 39.967062 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142772, 39.961287 ] } }, +{ "type": "Feature", "properties": { "location": "499 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197128, 39.961568 ] } }, +{ "type": "Feature", "properties": { "location": "1238 GREEBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080249206869198, 40.043556619249998 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150939644683206, 39.978057818268702 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153322, 39.933993 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152523, 39.94232 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128832, 39.969507 ] } }, +{ "type": "Feature", "properties": { "location": "1100BLK E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127867, 39.969798 ] } }, +{ "type": "Feature", "properties": { "location": "7200 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.043362, 40.03558 ] } }, +{ "type": "Feature", "properties": { "location": "1810 N 25TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175170301262099, 39.983364277305299 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 9TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155259458953495, 39.950860319877798 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1398325087372, 39.957321124916703 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "729 RITNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160271702059603, 39.919327168754499 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22826, 40.028373 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228207, 40.028373 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228342, 40.028377 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "900 W NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149225937665307, 39.982213894350302 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183173801630204, 39.993697260569 ] } }, +{ "type": "Feature", "properties": { "location": "2531 NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12517, 39.97552 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KENILWORTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163022, 39.942113 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201605, 39.9547 ] } }, +{ "type": "Feature", "properties": { "location": "3100 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1157129466242, 39.9954894751273 ] } }, +{ "type": "Feature", "properties": { "location": "2102 SEARS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179926768635696, 39.935303896537498 ] } }, +{ "type": "Feature", "properties": { "location": "1814 S JUNIPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167958, 39.927488 ] } }, +{ "type": "Feature", "properties": { "location": "1814 S JUNIPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168012, 39.927467 ] } }, +{ "type": "Feature", "properties": { "location": "2200 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178277, 39.95091 ] } }, +{ "type": "Feature", "properties": { "location": "2700 OAKFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189430713148496, 39.938091951936798 ] } }, +{ "type": "Feature", "properties": { "location": "500 S SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161415, 39.943372 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W GRANGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142857, 40.041183 ] } }, +{ "type": "Feature", "properties": { "location": "6738 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072454617014998, 40.043343221884101 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22549, 40.02693 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176352, 39.923935 ] } }, +{ "type": "Feature", "properties": { "location": "6110 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244720028116802, 39.957578304770301 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143823, 39.969685 ] } }, +{ "type": "Feature", "properties": { "location": "3469 E ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118515392339106, 40.001108238117901 ] } }, +{ "type": "Feature", "properties": { "location": "100 WENDOVER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217667, 40.023513 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134427, 39.972363 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134417, 39.972462 ] } }, +{ "type": "Feature", "properties": { "location": "600 BRILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101953081320005, 40.0391123899295 ] } }, +{ "type": "Feature", "properties": { "location": "4200 STATION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219947, 40.023872 ] } }, +{ "type": "Feature", "properties": { "location": "5200 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127713595637005, 40.030312754005699 ] } }, +{ "type": "Feature", "properties": { "location": "100 E SPENCER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.118324765268696, 40.042725321294597 ] } }, +{ "type": "Feature", "properties": { "location": "4200 MAYWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099188672810698, 40.011204897964099 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162923, 39.982047 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162989996575504, 39.9816848912971 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156357, 39.938522 ] } }, +{ "type": "Feature", "properties": { "location": "800 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145356721681694, 39.992750711726401 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152882, 39.94256 ] } }, +{ "type": "Feature", "properties": { "location": "4200 SILVERWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221807, 40.027242 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183619473665203, 39.975309191876697 ] } }, +{ "type": "Feature", "properties": { "location": "4123 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140765951014103, 40.014950280360097 ] } }, +{ "type": "Feature", "properties": { "location": "10800 HEATHER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.028133073999896, 40.114226601714201 ] } }, +{ "type": "Feature", "properties": { "location": "501 AVON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.027307060530504, 40.113503024754401 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228192, 40.028242 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163978, 39.967975 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168673, 39.966185 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MONTROSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17286, 39.94036 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 7TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153267, 39.945152 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149452888609204, 40.009023130776399 ] } }, +{ "type": "Feature", "properties": { "location": "4523 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212721791651305, 39.952943597658198 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S BROAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169775, 39.924388 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157762, 39.961512 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165583, 39.926388 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181998, 39.974515 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154873, 39.929532 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141425, 39.967793 ] } }, +{ "type": "Feature", "properties": { "location": "4700 HAZEL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217830993623295, 39.950149293054103 ] } }, +{ "type": "Feature", "properties": { "location": "1725 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162747, 39.98245 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162335, 39.918228 ] } }, +{ "type": "Feature", "properties": { "location": "6320 LARGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.076234347400899, 40.0373545466134 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156558, 39.960372 ] } }, +{ "type": "Feature", "properties": { "location": "5600 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233565, 39.961247 ] } }, +{ "type": "Feature", "properties": { "location": "181 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "3500 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192377, 39.955473 ] } }, +{ "type": "Feature", "properties": { "location": "300 E INDIANA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125693361915495, 39.9949131545753 ] } }, +{ "type": "Feature", "properties": { "location": "2700 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131266217413199, 39.991752396303198 ] } }, +{ "type": "Feature", "properties": { "location": "228 FURLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125509210039596, 40.038530819312101 ] } }, +{ "type": "Feature", "properties": { "location": "175 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122676584184106, 40.043817504728999 ] } }, +{ "type": "Feature", "properties": { "location": "130 JAMESTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218175, 40.023837 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161918, 39.92796 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153337, 39.942503 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108779703617003, 39.996269105585199 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179718, 39.973817 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153865, 39.929205 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154738, 39.929547 ] } }, +{ "type": "Feature", "properties": { "location": "420 S 58TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2382199431093, 39.954746095388501 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 58TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235437804671193, 39.9680269729309 ] } }, +{ "type": "Feature", "properties": { "location": "100 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217308, 40.022888 ] } }, +{ "type": "Feature", "properties": { "location": "3443 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1175767096166, 40.000987289979797 ] } }, +{ "type": "Feature", "properties": { "location": "3800 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197743, 39.96073 ] } }, +{ "type": "Feature", "properties": { "location": "200 ALBANUS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.120895, 40.027087 ] } }, +{ "type": "Feature", "properties": { "location": "7200 ALGARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.039020348969999, 40.033401445507202 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164735220220905, 39.977382987077704 ] } }, +{ "type": "Feature", "properties": { "location": "2102 SEARS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179926768635696, 39.935303896537498 ] } }, +{ "type": "Feature", "properties": { "location": "810 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169426253543193, 39.941025044564199 ] } }, +{ "type": "Feature", "properties": { "location": "1328 S 26TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1874510992278, 39.936078692911302 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182018721701795, 39.9751042426007 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143302, 39.96927 ] } }, +{ "type": "Feature", "properties": { "location": "1228 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172167739087101, 39.9358223304164 ] } }, +{ "type": "Feature", "properties": { "location": "5000 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223762, 39.955527 ] } }, +{ "type": "Feature", "properties": { "location": "753 S JESSUP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161244900199193, 39.940719049158197 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N REESE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136055476295695, 40.014344838483602 ] } }, +{ "type": "Feature", "properties": { "location": "200 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14217, 39.962155 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163245, 39.9671 ] } }, +{ "type": "Feature", "properties": { "location": "600 THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146445, 39.971667 ] } }, +{ "type": "Feature", "properties": { "location": "6800 DICKS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231893643267199, 39.916783624691298 ] } }, +{ "type": "Feature", "properties": { "location": "3200 NICHOLAS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187213159375304, 39.982064876154702 ] } }, +{ "type": "Feature", "properties": { "location": "1599 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086353, 40.01511 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BACH PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165852, 39.947467 ] } }, +{ "type": "Feature", "properties": { "location": "2110 S 64TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.23407, 39.927258 ] } }, +{ "type": "Feature", "properties": { "location": "2110 S 64TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233992, 39.927317 ] } }, +{ "type": "Feature", "properties": { "location": "1 CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14044, 39.951307 ] } }, +{ "type": "Feature", "properties": { "location": "1 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140422, 39.951302 ] } }, +{ "type": "Feature", "properties": { "location": "1 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140352, 39.951257 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152328, 39.934587 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "1500 WOMRATH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090157, 40.009323 ] } }, +{ "type": "Feature", "properties": { "location": "214 CAMAC ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159617, 39.956425 ] } }, +{ "type": "Feature", "properties": { "location": "100 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176523, 39.952068 ] } }, +{ "type": "Feature", "properties": { "location": "200 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163053, 39.948848 ] } }, +{ "type": "Feature", "properties": { "location": "1400 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130105, 39.973912 ] } }, +{ "type": "Feature", "properties": { "location": "1330 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129465389976502, 39.9728074006401 ] } }, +{ "type": "Feature", "properties": { "location": "700 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159432, 39.922565 ] } }, +{ "type": "Feature", "properties": { "location": "200 E HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174246300807695, 40.040948821864497 ] } }, +{ "type": "Feature", "properties": { "location": "6100 WAYNE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184877071784896, 40.0352095801206 ] } }, +{ "type": "Feature", "properties": { "location": "2001 N MARVINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152442, 39.982605 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16085, 39.932887 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169402, 39.91803 ] } }, +{ "type": "Feature", "properties": { "location": "6700 QUINCY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187360510617793, 40.050199622499299 ] } }, +{ "type": "Feature", "properties": { "location": "813 E RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113580765080798, 40.000226613532298 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159852, 39.918072 ] } }, +{ "type": "Feature", "properties": { "location": "200 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151285206691995, 39.916878358819602 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140261951790094, 39.954926794402901 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183997, 39.952173 ] } }, +{ "type": "Feature", "properties": { "location": "300 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13922, 39.95504 ] } }, +{ "type": "Feature", "properties": { "location": "2617 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179714792984896, 39.972713231459402 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069926599667994, 40.0466266245245 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170823, 39.929512 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "100 ROSEMAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120668293754704, 40.0435594258335 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 13TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161825966349298, 39.9503967334755 ] } }, +{ "type": "Feature", "properties": { "location": "1041 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156465, 39.960263 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090993, 40.0075 ] } }, +{ "type": "Feature", "properties": { "location": "1713 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171072, 39.943462 ] } }, +{ "type": "Feature", "properties": { "location": "4400 LOCUST ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1799 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132569569247494, 39.976615451336798 ] } }, +{ "type": "Feature", "properties": { "location": "1400 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166478, 39.943373 ] } }, +{ "type": "Feature", "properties": { "location": "300 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143526957418402, 39.961458146557199 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N DELAWARE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132915, 39.965018 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154305, 40.006505 ] } }, +{ "type": "Feature", "properties": { "location": "3000 MASTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184716375879006, 39.977829388133202 ] } }, +{ "type": "Feature", "properties": { "location": "2112 NAUDAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177654488404301, 39.9457068366276 ] } }, +{ "type": "Feature", "properties": { "location": "919 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156447, 39.937818 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147949822434299, 40.028356093410103 ] } }, +{ "type": "Feature", "properties": { "location": "600 GAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127947, 39.975443 ] } }, +{ "type": "Feature", "properties": { "location": "13 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077747, 40.022007 ] } }, +{ "type": "Feature", "properties": { "location": "900 W RUSCOMB ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13994, 40.02826 ] } }, +{ "type": "Feature", "properties": { "location": "7638 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.060505, 40.057267 ] } }, +{ "type": "Feature", "properties": { "location": "1737 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173947, 39.927418 ] } }, +{ "type": "Feature", "properties": { "location": "500 DEVEREAUX AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.097968, 40.047033 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15427, 39.926958 ] } }, +{ "type": "Feature", "properties": { "location": "7200 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.06562, 40.050625 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160473, 39.926963 ] } }, +{ "type": "Feature", "properties": { "location": "5202 W STILES ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226349671083497, 39.972183128549602 ] } }, +{ "type": "Feature", "properties": { "location": "5100 HAZEL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224887, 39.95104 ] } }, +{ "type": "Feature", "properties": { "location": "4900 ORMES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118984155091198, 40.024568377173601 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W CUMBERLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150197773120993, 39.990209422094502 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153975, 39.928963 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181325803098304, 39.928825307017803 ] } }, +{ "type": "Feature", "properties": { "location": "7700 EDMUND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.026357, 40.032842 ] } }, +{ "type": "Feature", "properties": { "location": "535 N 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235486387737197, 39.969213180938901 ] } }, +{ "type": "Feature", "properties": { "location": "400 MCCLELLAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15279, 39.925498 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155535, 39.929472 ] } }, +{ "type": "Feature", "properties": { "location": "200 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147922, 39.938258 ] } }, +{ "type": "Feature", "properties": { "location": "600 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154618, 39.932468 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187989848690293, 39.9588431484175 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N FRANKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141088, 40.00814 ] } }, +{ "type": "Feature", "properties": { "location": "3600 ELDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149752, 40.00865 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "1801 TREE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177239911528005, 39.923632588894101 ] } }, +{ "type": "Feature", "properties": { "location": "5100 RANSTEAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22496, 39.958983 ] } }, +{ "type": "Feature", "properties": { "location": "500 E THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127885, 39.972813 ] } }, +{ "type": "Feature", "properties": { "location": "4200 REGENT SQ", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207945741322604, 39.947544417172701 ] } }, +{ "type": "Feature", "properties": { "location": "3200 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189042, 39.963768 ] } }, +{ "type": "Feature", "properties": { "location": "200 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215038, 40.024103 ] } }, +{ "type": "Feature", "properties": { "location": "6000 CASTOR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.081272, 40.035292 ] } }, +{ "type": "Feature", "properties": { "location": "200 S SYDENHAM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16643, 39.94905 ] } }, +{ "type": "Feature", "properties": { "location": "4210 CHESTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207738, 39.94836 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177562, 39.942178 ] } }, +{ "type": "Feature", "properties": { "location": "3900 PINE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203232, 39.950663 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228025, 40.028368 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162145, 39.948418 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13426, 39.97243 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158242, 39.958422 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158288, 39.958513 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W ERIE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149452888609204, 40.009023130776399 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151863, 39.959752 ] } }, +{ "type": "Feature", "properties": { "location": "2200 W SEDGLEY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169175598743607, 39.9921566701938 ] } }, +{ "type": "Feature", "properties": { "location": "900 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155271349187302, 39.952888684061698 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174227, 39.946237 ] } }, +{ "type": "Feature", "properties": { "location": "1331 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164573, 39.94398 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188642, 39.94267 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154052, 39.96338 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159403, 39.92474 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.222352, 39.947103 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153403, 39.92893 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193995, 39.960487 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FAIRHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156497, 39.9202 ] } }, +{ "type": "Feature", "properties": { "location": "426 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122208, 39.99749 ] } }, +{ "type": "Feature", "properties": { "location": "312 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188040170852204, 39.9608137965919 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137333909951593, 40.014506153767599 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123593, 39.973107 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153655, 39.960148 ] } }, +{ "type": "Feature", "properties": { "location": "700 AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14201, 39.963212 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179787, 39.973455 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179778, 39.973533 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179772, 39.973562 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179737, 39.973772 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162018, 39.971793 ] } }, +{ "type": "Feature", "properties": { "location": "100 W CUMBERLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131827278741895, 39.987836364586002 ] } }, +{ "type": "Feature", "properties": { "location": "1309 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162223, 39.950025 ] } }, +{ "type": "Feature", "properties": { "location": "2408 E BOSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123761101400106, 39.978010073027001 ] } }, +{ "type": "Feature", "properties": { "location": "4000 CLARIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103990037983806, 40.008625827814598 ] } }, +{ "type": "Feature", "properties": { "location": "3185 AGATE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108267911109607, 39.988675081499103 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158867, 39.920437 ] } }, +{ "type": "Feature", "properties": { "location": "714 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159215, 39.920553 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "3000 F ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117973777177596, 39.994242459326998 ] } }, +{ "type": "Feature", "properties": { "location": "4220 MAYWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099188672810698, 40.011204897964099 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153545, 39.929327 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130562, 39.97239 ] } }, +{ "type": "Feature", "properties": { "location": "1733 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N OPAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164687016916602, 39.989778875534398 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151098, 40.00451 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162752, 39.963957 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173413, 39.948498 ] } }, +{ "type": "Feature", "properties": { "location": "1504 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159365, 39.976187 ] } }, +{ "type": "Feature", "properties": { "location": "1 S ROBINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244102357559498, 39.961977842896999 ] } }, +{ "type": "Feature", "properties": { "location": "5020 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223026233022296, 39.975468557634699 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174630440694301, 39.931916844082501 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "100 BEECHWOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175645, 39.956358 ] } }, +{ "type": "Feature", "properties": { "location": "400 RUSCOMB ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132508, 40.027165 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155038, 39.929248 ] } }, +{ "type": "Feature", "properties": { "location": "165 N CONESTOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229187147976106, 39.9633698375821 ] } }, +{ "type": "Feature", "properties": { "location": "1200 WHARTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165425, 39.933855 ] } }, +{ "type": "Feature", "properties": { "location": "147 SUMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208518421256898, 40.0175873089375 ] } }, +{ "type": "Feature", "properties": { "location": "2548 S REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156816934225205, 39.916958473252102 ] } }, +{ "type": "Feature", "properties": { "location": "1366 FANSHAWE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076794836773104, 40.044170146786797 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235203, 39.925045 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.091007, 40.007157 ] } }, +{ "type": "Feature", "properties": { "location": "3246 GAUL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104436775721496, 39.987403698659499 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156618, 39.937217 ] } }, +{ "type": "Feature", "properties": { "location": "4754 MERIDIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.027962010602593, 40.032894661117197 ] } }, +{ "type": "Feature", "properties": { "location": "4742 MERIDIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.027962010602593, 40.032894661117197 ] } }, +{ "type": "Feature", "properties": { "location": "4621 OAKMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.030647370995496, 40.033035126307901 ] } }, +{ "type": "Feature", "properties": { "location": "6139 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057137667735205, 40.0195514789499 ] } }, +{ "type": "Feature", "properties": { "location": "6139 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057137667735205, 40.0195514789499 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171162396795694, 39.925619608740199 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173558, 39.952898 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166957, 39.965178 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090832, 40.006982 ] } }, +{ "type": "Feature", "properties": { "location": "573 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101418119329907, 40.042001085716201 ] } }, +{ "type": "Feature", "properties": { "location": "500 BUDD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20481, 39.962593 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134382, 39.972482 ] } }, +{ "type": "Feature", "properties": { "location": "518 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164238, 39.943932 ] } }, +{ "type": "Feature", "properties": { "location": "300 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152783, 39.923365 ] } }, +{ "type": "Feature", "properties": { "location": "600 S LEITHGOW ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149862, 39.940833 ] } }, +{ "type": "Feature", "properties": { "location": "435 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202962, 39.96093 ] } }, +{ "type": "Feature", "properties": { "location": "700 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154837, 39.9395 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MANTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172910718415096, 39.936131137642498 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134757, 39.973287 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174254270680095, 39.953062628856699 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158715, 39.920662 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140261951790094, 39.954926794402901 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127882, 39.967333 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137755, 39.964003 ] } }, +{ "type": "Feature", "properties": { "location": "4600 C ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118305, 40.020697 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W ALBANUS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1455832109569, 40.0281923439005 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164153397583902, 39.967866122955101 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176107, 39.946052 ] } }, +{ "type": "Feature", "properties": { "location": "5300 WAYNE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1730666403963, 40.0283701181217 ] } }, +{ "type": "Feature", "properties": { "location": "4201 BROWN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207935272308006, 39.9669927381901 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161773, 39.964635 ] } }, +{ "type": "Feature", "properties": { "location": "4000 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202511165225403, 39.960368986495403 ] } }, +{ "type": "Feature", "properties": { "location": "1500 GREEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162865, 39.964125 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178089557315005, 39.971246140363597 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16994, 39.943352 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W GRANGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142248, 40.041097 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156455, 39.960248 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170473, 39.965667 ] } }, +{ "type": "Feature", "properties": { "location": "6142 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "700 JERICHO RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.109194517723097, 40.026193698919798 ] } }, +{ "type": "Feature", "properties": { "location": "1040 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14195, 39.967655 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145708, 39.971528 ] } }, +{ "type": "Feature", "properties": { "location": "1700 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172695, 39.933578 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15393, 39.929143 ] } }, +{ "type": "Feature", "properties": { "location": "2100 DELANCEY PL", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178033, 39.947763 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246369066741195, 39.959538635384099 ] } }, +{ "type": "Feature", "properties": { "location": "4000 MARKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099294947135903, 40.008023178686798 ] } }, +{ "type": "Feature", "properties": { "location": "500 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145682, 39.971498 ] } }, +{ "type": "Feature", "properties": { "location": "2015 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174305, 39.952162 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191222, 39.957343 ] } }, +{ "type": "Feature", "properties": { "location": "900 LELAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166931517383603, 39.971319676039201 ] } }, +{ "type": "Feature", "properties": { "location": "5302 MALCOLM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2285253930539, 39.945287694344501 ] } }, +{ "type": "Feature", "properties": { "location": "2919 N RINGGOLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170472241550399, 39.999935180083497 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153628, 39.928965 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087095, 40.015607 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E BOSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1253109355997, 39.979762089561397 ] } }, +{ "type": "Feature", "properties": { "location": "5223 MCKEAN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175397543200503, 40.024661927192902 ] } }, +{ "type": "Feature", "properties": { "location": "800 SELMER RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.023116882171905, 40.107878049398501 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "6600 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235898990721395, 39.9244707588648 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172070302461805, 39.936258747644899 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215237, 39.953313 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159458, 39.95883 ] } }, +{ "type": "Feature", "properties": { "location": "1099 E PASSYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15588, 39.936095 ] } }, +{ "type": "Feature", "properties": { "location": "400 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130275, 39.97204 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.20543, 39.952647 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157438, 39.926592 ] } }, +{ "type": "Feature", "properties": { "location": "400 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155778, 39.918785 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N BAMBREY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171604775590893, 40.004637617591897 ] } }, +{ "type": "Feature", "properties": { "location": "900 W CHAMPLOST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135918, 40.043462 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160863376627304, 39.9821762449087 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161023, 39.95889 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153677, 39.959703 ] } }, +{ "type": "Feature", "properties": { "location": "2359 E BOSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124606218066404, 39.978964643767704 ] } }, +{ "type": "Feature", "properties": { "location": "1217 KIMBALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163678569664498, 39.938161918739397 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "611 S 61ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244800020767599, 39.9523123570848 ] } }, +{ "type": "Feature", "properties": { "location": "500 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154252, 39.93321 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149985, 40.004205 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ARROTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085002, 40.01719 ] } }, +{ "type": "Feature", "properties": { "location": "708 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223007, 39.947635 ] } }, +{ "type": "Feature", "properties": { "location": "1308 BELFIELD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1476790391131, 40.022121069787403 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15805, 39.958138 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193418, 39.953213 ] } }, +{ "type": "Feature", "properties": { "location": "1926 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168685515825501, 39.971333287811099 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204385, 39.956607 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 41ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204092, 39.956972 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "5600 PINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235688, 39.957047 ] } }, +{ "type": "Feature", "properties": { "location": "400 VINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147035, 39.95615 ] } }, +{ "type": "Feature", "properties": { "location": "1710 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160273396997894, 39.927975960790597 ] } }, +{ "type": "Feature", "properties": { "location": "1931 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "98 LINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121281541949102, 40.041020404649601 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "1523 N FRAZIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234360879944603, 39.975778889708103 ] } }, +{ "type": "Feature", "properties": { "location": "2400 ARDELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244046601119194, 39.913266205112798 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "301 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134275, 39.972482 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "200 W WYOMING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128432, 40.02214 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W CUMBERLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148619552645897, 39.990004668245398 ] } }, +{ "type": "Feature", "properties": { "location": "2039 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177942293124204, 39.9370298333655 ] } }, +{ "type": "Feature", "properties": { "location": "630 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "7200 LEON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043827, 40.036838 ] } }, +{ "type": "Feature", "properties": { "location": "1670 DOUNTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153653054762898, 40.0181050242849 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140354590774606, 39.994504961216897 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133007, 39.969035 ] } }, +{ "type": "Feature", "properties": { "location": "700 SCHUYLKILL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186232, 39.945197 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188585, 39.942582 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070557, 40.046408 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 11TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16391, 39.926027 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192893, 39.956935 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163517, 39.950077 ] } }, +{ "type": "Feature", "properties": { "location": "101 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 39.984242 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MORRIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166045, 39.928945 ] } }, +{ "type": "Feature", "properties": { "location": "1225 MORRIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165948, 39.928775 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MORRIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165943, 39.928927 ] } }, +{ "type": "Feature", "properties": { "location": "1225 MORRIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166067, 39.928897 ] } }, +{ "type": "Feature", "properties": { "location": "644 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188957357716404, 39.965728329213299 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160205, 39.928145 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168862, 39.944403 ] } }, +{ "type": "Feature", "properties": { "location": "200 GATES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229668, 40.032835 ] } }, +{ "type": "Feature", "properties": { "location": "2500 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173382083977401, 39.995283103063301 ] } }, +{ "type": "Feature", "properties": { "location": "5500 W THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231430504010206, 39.972379036018701 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157837, 39.949423 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108681669775905, 39.998047076844301 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FRALEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064564938326498, 40.0105521783182 ] } }, +{ "type": "Feature", "properties": { "location": "2300 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17843, 39.953822 ] } }, +{ "type": "Feature", "properties": { "location": "2300 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178455, 39.954423 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142043, 39.97052 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174335, 39.91865 ] } }, +{ "type": "Feature", "properties": { "location": "100 LOCKART PLZ", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.039515166103897, 40.117995553613703 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182507815898106, 39.942707927609703 ] } }, +{ "type": "Feature", "properties": { "location": "6400 PASCHALL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232500270685406, 39.924997091097801 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N CAMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145433318296597, 40.021846207015699 ] } }, +{ "type": "Feature", "properties": { "location": "100 E 64TH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117876718278097, 40.047511851496999 ] } }, +{ "type": "Feature", "properties": { "location": "1722 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133488, 39.97525 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133672, 39.975185 ] } }, +{ "type": "Feature", "properties": { "location": "200 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224978854150393, 40.029976752046998 ] } }, +{ "type": "Feature", "properties": { "location": "1938 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1522557009867, 40.047901113238403 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159227, 39.976885 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SEARS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179926768635696, 39.935303896537498 ] } }, +{ "type": "Feature", "properties": { "location": "5200 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147162, 40.032877 ] } }, +{ "type": "Feature", "properties": { "location": "8932 SYLVIA LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.050830081093594, 40.084073540920301 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "5627 BELMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228102282642894, 39.938660181167599 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181268944518806, 39.9406890191391 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "6000 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242552, 39.96141 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17657, 39.936835 ] } }, +{ "type": "Feature", "properties": { "location": "1900 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172138, 39.957563 ] } }, +{ "type": "Feature", "properties": { "location": "2537 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237293441597501, 39.916219986919103 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "1665 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "1665 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "6700 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072454617014998, 40.043343221884101 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163323, 39.967067 ] } }, +{ "type": "Feature", "properties": { "location": "800 S ALDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238354718438799, 39.948010546376601 ] } }, +{ "type": "Feature", "properties": { "location": "1800 ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11308, 39.995987 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROCKLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128693, 40.025213 ] } }, +{ "type": "Feature", "properties": { "location": "6100 ARCH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.242742457301702, 39.963822645039002 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "5828 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220623642423504, 39.927616840136103 ] } }, +{ "type": "Feature", "properties": { "location": "1800 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175643872799199, 39.9309845152534 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073503, 40.043613 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169269724172295, 39.928085368665201 ] } }, +{ "type": "Feature", "properties": { "location": "100 MANHEIM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1673254840738, 40.028259431388697 ] } }, +{ "type": "Feature", "properties": { "location": "100 MANHEIM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1673254840738, 40.028259431388697 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17702, 39.953558 ] } }, +{ "type": "Feature", "properties": { "location": "4000 GREEBY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.055658, 40.02974 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073752, 40.043405 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172688, 39.920953 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156205, 39.96122 ] } }, +{ "type": "Feature", "properties": { "location": "700 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153812, 39.944773 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SPRING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1586, 39.956323 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1826912513027, 39.9418637544034 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13427, 39.972487 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233186011450002, 39.919113482363798 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070438, 40.046488 ] } }, +{ "type": "Feature", "properties": { "location": "171 W THELMA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127209198689698, 40.0204988630881 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "6014 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241540167869601, 39.961263417181897 ] } }, +{ "type": "Feature", "properties": { "location": "6034 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2427440219207, 39.957331646289802 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154908, 39.929487 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179758, 39.973508 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155625, 39.957695 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155913, 39.954433 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 38TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198788, 39.953215 ] } }, +{ "type": "Feature", "properties": { "location": "3900 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195265, 39.95468 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163617, 39.949978 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12737, 39.97697 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168337, 39.943518 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155473, 39.957677 ] } }, +{ "type": "Feature", "properties": { "location": "1629 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157027, 39.928118 ] } }, +{ "type": "Feature", "properties": { "location": "1221 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164228, 39.935643 ] } }, +{ "type": "Feature", "properties": { "location": "1220 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164225, 39.935902 ] } }, +{ "type": "Feature", "properties": { "location": "800 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157052, 39.940715 ] } }, +{ "type": "Feature", "properties": { "location": "3100 POTTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114924971536098, 39.996205261446804 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159557, 39.924305 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122815, 39.973913 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191443324436705, 39.963213814021799 ] } }, +{ "type": "Feature", "properties": { "location": "6710 GUYER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230382381546093, 39.917111764473503 ] } }, +{ "type": "Feature", "properties": { "location": "4600 DISSTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.04258, 40.02717 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167518170110199, 39.9169772664455 ] } }, +{ "type": "Feature", "properties": { "location": "1531 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169787674368393, 39.935656382748398 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225992799238, 39.927020613403698 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 65TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236637959972001, 39.927525090837598 ] } }, +{ "type": "Feature", "properties": { "location": "640 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156241458550298, 39.928063370512 ] } }, +{ "type": "Feature", "properties": { "location": "896 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "1555 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235943686351504, 39.975604926872499 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179507289861903, 39.9746915701067 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N 51ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224199498035603, 39.974718969842897 ] } }, +{ "type": "Feature", "properties": { "location": "6300 NEWTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.100770339713193, 40.051600659502803 ] } }, +{ "type": "Feature", "properties": { "location": "1815 KATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172790698016996, 39.944102111261799 ] } }, +{ "type": "Feature", "properties": { "location": "100 WIDENER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121441781882893, 40.040545052844003 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16057, 39.95945 ] } }, +{ "type": "Feature", "properties": { "location": "1800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176387, 39.92395 ] } }, +{ "type": "Feature", "properties": { "location": "4600 STENTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159336638225597, 40.026048333756698 ] } }, +{ "type": "Feature", "properties": { "location": "400 N SICKELS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229061485178093, 39.967199097776003 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220398, 40.024867 ] } }, +{ "type": "Feature", "properties": { "location": "6700 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.052567, 40.032022 ] } }, +{ "type": "Feature", "properties": { "location": "2300 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176097209440798, 39.9678051851959 ] } }, +{ "type": "Feature", "properties": { "location": "1819 E CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114722752115298, 39.995463360341198 ] } }, +{ "type": "Feature", "properties": { "location": "5200 SAYBROOK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216127391859501, 39.937834875387097 ] } }, +{ "type": "Feature", "properties": { "location": "1113 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161886411962897, 39.939083824858699 ] } }, +{ "type": "Feature", "properties": { "location": "400 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153375672391903, 39.926435117060798 ] } }, +{ "type": "Feature", "properties": { "location": "847 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687857051997, 39.922383040809997 ] } }, +{ "type": "Feature", "properties": { "location": "4600 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214548, 39.955518 ] } }, +{ "type": "Feature", "properties": { "location": "4600 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214493, 39.955567 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "4201 ORCHARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087695, 40.00796 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15815, 39.958753 ] } }, +{ "type": "Feature", "properties": { "location": "714 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159148, 39.92047 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139177002057096, 39.956835552057697 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 40TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202351413955896, 39.955251721921897 ] } }, +{ "type": "Feature", "properties": { "location": "1000 GERMANTOWN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137772259209896, 39.965232886623198 ] } }, +{ "type": "Feature", "properties": { "location": "1000 GERMANTOWN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137772259209896, 39.965232886623198 ] } }, +{ "type": "Feature", "properties": { "location": "1511 S ETTING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190096314587194, 39.9339017120557 ] } }, +{ "type": "Feature", "properties": { "location": "2528 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168085201433897, 39.993273846152299 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FERNON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163127, 39.929328 ] } }, +{ "type": "Feature", "properties": { "location": "415 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1553398235977, 39.917417207517303 ] } }, +{ "type": "Feature", "properties": { "location": "415 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1553398235977, 39.917417207517303 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173378, 39.95276 ] } }, +{ "type": "Feature", "properties": { "location": "5900 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242081658717893, 39.950809735362398 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "2100 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181964940636007, 39.923404880830802 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173339040144498, 39.924323270472797 ] } }, +{ "type": "Feature", "properties": { "location": "822 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241536944999297, 39.948522011361398 ] } }, +{ "type": "Feature", "properties": { "location": "600 THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146532, 39.9716 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163775748443996, 39.9369371381934 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170398, 39.966375 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174070073437704, 39.930786988212702 ] } }, +{ "type": "Feature", "properties": { "location": "1200 BIGLER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169225, 39.913895 ] } }, +{ "type": "Feature", "properties": { "location": "65 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135981685399003, 39.968839735425902 ] } }, +{ "type": "Feature", "properties": { "location": "6400 PASCHALL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232500270685406, 39.924997091097801 ] } }, +{ "type": "Feature", "properties": { "location": "503 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "3600 EVELINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.194043, 40.010047 ] } }, +{ "type": "Feature", "properties": { "location": "700 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155253, 39.94193 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131013, 39.973378 ] } }, +{ "type": "Feature", "properties": { "location": "400 SEPVIVA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13208, 39.975062 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "9300 NEIL RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.043093581883198, 40.085036880182798 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N LAWRENCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132252, 40.024457 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208928, 39.943788 ] } }, +{ "type": "Feature", "properties": { "location": "621 E PASSYUNK AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150599671437803, 39.941345632517198 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137512, 39.968282 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162989996575504, 39.9816848912971 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17588, 39.926408 ] } }, +{ "type": "Feature", "properties": { "location": "3200 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188175, 39.953998 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150327, 39.929343 ] } }, +{ "type": "Feature", "properties": { "location": "3500 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19272, 39.957397 ] } }, +{ "type": "Feature", "properties": { "location": "1900 PAGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165542254958893, 39.984786465992499 ] } }, +{ "type": "Feature", "properties": { "location": "201 N SIMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.249132547219006, 39.966953620790399 ] } }, +{ "type": "Feature", "properties": { "location": "201 N SIMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.249132547219006, 39.966953620790399 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156003078694098, 39.918136244446501 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "800 S CECIL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238925750023895, 39.9480870781859 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155633, 39.929702 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155582, 39.929807 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155412, 39.9845 ] } }, +{ "type": "Feature", "properties": { "location": "5900 CEDAR AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241126432772404, 39.952236471512698 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143802, 39.969667 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N LEITHGOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143687, 39.969355 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N LEITHGOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143668, 39.969388 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ARLINGTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162237, 39.98339 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144392, 39.96368 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160099296902004, 39.983849577512302 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143735, 39.969707 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176735, 39.951637 ] } }, +{ "type": "Feature", "properties": { "location": "537 N 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235561457517605, 39.969614564026699 ] } }, +{ "type": "Feature", "properties": { "location": "5600 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132278, 40.037457 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160348, 39.94213 ] } }, +{ "type": "Feature", "properties": { "location": "2 E MOUNT AIRY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190587876027095, 40.060611437623599 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1999 RENOVO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149359102428306, 40.068260709281802 ] } }, +{ "type": "Feature", "properties": { "location": "800 N TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180321904948897, 39.970954157193397 ] } }, +{ "type": "Feature", "properties": { "location": "6100 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244720028116802, 39.957578304770301 ] } }, +{ "type": "Feature", "properties": { "location": "220 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236937373765201, 39.9577861034048 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2382199431093, 39.954746095388501 ] } }, +{ "type": "Feature", "properties": { "location": "5648 HAZEL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2356442116875, 39.952591630431002 ] } }, +{ "type": "Feature", "properties": { "location": "5648 HAZEL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2356442116875, 39.952591630431002 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 51ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224646875742096, 39.951385665757599 ] } }, +{ "type": "Feature", "properties": { "location": "1206 S MARKOE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210831781832795, 39.944502287732398 ] } }, +{ "type": "Feature", "properties": { "location": "619 S 56TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2349118480236, 39.951173135499602 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SPRING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15725, 39.956485 ] } }, +{ "type": "Feature", "properties": { "location": "4810 YOCUM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213036217856697, 39.941671901016697 ] } }, +{ "type": "Feature", "properties": { "location": "4800 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213036217856697, 39.941671901016697 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15866, 39.920717 ] } }, +{ "type": "Feature", "properties": { "location": "330 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188056889150701, 40.0402060406388 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158864884675793, 39.923441627947597 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169269724172295, 39.928085368665201 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153487, 39.92937 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174092, 39.952825 ] } }, +{ "type": "Feature", "properties": { "location": "4200 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208327, 39.954865 ] } }, +{ "type": "Feature", "properties": { "location": "400 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152680331688401, 39.927166807090401 ] } }, +{ "type": "Feature", "properties": { "location": "8000 LEONARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.047249841395896, 40.0578361089647 ] } }, +{ "type": "Feature", "properties": { "location": "4800 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213036217856697, 39.941671901016697 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HANSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213015795671694, 39.942104375319502 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104818, 39.996847 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154851074115498, 39.948952515626701 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17083, 39.93456 ] } }, +{ "type": "Feature", "properties": { "location": "3180 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187455, 39.953773 ] } }, +{ "type": "Feature", "properties": { "location": "2021 MARTHA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131527114342404, 39.980309789335699 ] } }, +{ "type": "Feature", "properties": { "location": "400 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144667, 39.963283 ] } }, +{ "type": "Feature", "properties": { "location": "5500 GREENWAY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222211213781705, 39.936035406811598 ] } }, +{ "type": "Feature", "properties": { "location": "110 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "553 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219842298067505, 40.028135599795696 ] } }, +{ "type": "Feature", "properties": { "location": "100 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218165625409796, 40.022307890018297 ] } }, +{ "type": "Feature", "properties": { "location": "1900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171148, 39.956477 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219842298067505, 40.028135599795696 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218533670274198, 40.0267494724595 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214613238467905, 40.028512966070998 ] } }, +{ "type": "Feature", "properties": { "location": "4600 UMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229494934897104, 40.029962610522901 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16004, 39.958252 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163603, 39.924897 ] } }, +{ "type": "Feature", "properties": { "location": "2127 APPLETREE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175385, 39.95657 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "3112 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1700685563127, 40.002994439038702 ] } }, +{ "type": "Feature", "properties": { "location": "200 GRAPE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219927137791004, 40.027418020654501 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218533670274198, 40.0267494724595 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214613238467905, 40.028512966070998 ] } }, +{ "type": "Feature", "properties": { "location": "637 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100624372943301, 40.040243907613302 ] } }, +{ "type": "Feature", "properties": { "location": "633 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100624372943301, 40.040243907613302 ] } }, +{ "type": "Feature", "properties": { "location": "900 MARCELLA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091810897633394, 40.0308573223286 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MCKINLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080084410139506, 40.037835928824499 ] } }, +{ "type": "Feature", "properties": { "location": "1600 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171236199231203, 39.936360191092099 ] } }, +{ "type": "Feature", "properties": { "location": "2552 SHELMIRE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.052295884991693, 40.048740927298503 ] } }, +{ "type": "Feature", "properties": { "location": "2500 SHELMIRE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.053535194348299, 40.048955866996799 ] } }, +{ "type": "Feature", "properties": { "location": "500 VAN KIRK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102108960261106, 40.043679069465803 ] } }, +{ "type": "Feature", "properties": { "location": "6700 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072454617014998, 40.043343221884101 ] } }, +{ "type": "Feature", "properties": { "location": "200 ERICA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.040944920656699, 40.116487384832503 ] } }, +{ "type": "Feature", "properties": { "location": "10604 COWDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.012860196107596, 40.101428496541203 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "4900 ROSEHILL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118281228248705, 40.024509284845998 ] } }, +{ "type": "Feature", "properties": { "location": "431 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1363916220932, 40.007335327122597 ] } }, +{ "type": "Feature", "properties": { "location": "3300 E ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.118951350200106, 39.999064794878599 ] } }, +{ "type": "Feature", "properties": { "location": "4856 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.119905397372705, 40.023748124226998 ] } }, +{ "type": "Feature", "properties": { "location": "633 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140067226837402, 40.007806233138801 ] } }, +{ "type": "Feature", "properties": { "location": "5300 LESHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075091797978899, 40.0224853771699 ] } }, +{ "type": "Feature", "properties": { "location": "1527 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153623, 39.92898 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N DELHI ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143625973239196, 40.009082352479403 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W OLNEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152441075498302, 40.039241147172099 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129567653930195, 40.027278079625397 ] } }, +{ "type": "Feature", "properties": { "location": "500 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153585523062205, 39.932724344496599 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158885, 39.926728 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073765, 40.043393 ] } }, +{ "type": "Feature", "properties": { "location": "2200 W FIRTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168930032030204, 39.993174465803698 ] } }, +{ "type": "Feature", "properties": { "location": "1451 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163470508166895, 39.975788937423097 ] } }, +{ "type": "Feature", "properties": { "location": "4200 NEILSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.097210868694006, 40.0109499796554 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149218, 39.92674 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153508, 39.929318 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140143311439999, 40.027496622193901 ] } }, +{ "type": "Feature", "properties": { "location": "6200 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149786129488604, 40.049179571233999 ] } }, +{ "type": "Feature", "properties": { "location": "6229 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149786129488604, 40.049179571233999 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N CAMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145433318296597, 40.021846207015699 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128673082415006, 40.040165061529898 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N 20TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153853561167196, 40.044136714674501 ] } }, +{ "type": "Feature", "properties": { "location": "200 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961776704595, 40.0318986600317 ] } }, +{ "type": "Feature", "properties": { "location": "200 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961776704595, 40.0318986600317 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142043244683506, 40.026205393165803 ] } }, +{ "type": "Feature", "properties": { "location": "100 W GRANGE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.121204811320894, 40.038420587845998 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N HOWARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122366259239996, 40.039351508605201 ] } }, +{ "type": "Feature", "properties": { "location": "400 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130470366894897, 40.032227804018802 ] } }, +{ "type": "Feature", "properties": { "location": "100 ROSELYN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120987101344298, 40.042059221279501 ] } }, +{ "type": "Feature", "properties": { "location": "100 RICHMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134216782583295, 39.966170369717503 ] } }, +{ "type": "Feature", "properties": { "location": "2053 MARTHA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131527114342404, 39.980309789335699 ] } }, +{ "type": "Feature", "properties": { "location": "2017 MARTHA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131527114342404, 39.980309789335699 ] } }, +{ "type": "Feature", "properties": { "location": "3200 A ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127221840921806, 39.998828921672597 ] } }, +{ "type": "Feature", "properties": { "location": "1650 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076555689475398, 40.021152943418201 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SHUNK ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175778, 39.918812 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155627, 39.929615 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179752, 39.973867 ] } }, +{ "type": "Feature", "properties": { "location": "3752 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143160572971993, 40.0090212659629 ] } }, +{ "type": "Feature", "properties": { "location": "3744 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143160572971993, 40.0090212659629 ] } }, +{ "type": "Feature", "properties": { "location": "3756 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143160572971993, 40.0090212659629 ] } }, +{ "type": "Feature", "properties": { "location": "2800 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130939659320106, 39.993288608677602 ] } }, +{ "type": "Feature", "properties": { "location": "500 W ERIE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137355174587398, 40.007457919026002 ] } }, +{ "type": "Feature", "properties": { "location": "500 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137355174587398, 40.007457919026002 ] } }, +{ "type": "Feature", "properties": { "location": "259 W THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134455147388806, 40.001968784047499 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136681744966097, 40.0113145367051 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136681744966097, 40.0113145367051 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.110965286994997, 39.996809345031103 ] } }, +{ "type": "Feature", "properties": { "location": "3200 HURLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121582288345707, 39.998367365473101 ] } }, +{ "type": "Feature", "properties": { "location": "757 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115884688012599, 39.999523430550099 ] } }, +{ "type": "Feature", "properties": { "location": "700 E ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117129520992904, 39.9969759614482 ] } }, +{ "type": "Feature", "properties": { "location": "700 E ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117129520992904, 39.9969759614482 ] } }, +{ "type": "Feature", "properties": { "location": "5900 NEWTOWN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107224825447901, 40.047433408599801 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "6100 VANDIKE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.056234195738398, 40.018515295610797 ] } }, +{ "type": "Feature", "properties": { "location": "7200 CRISPIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.045519258354304, 40.037262313859003 ] } }, +{ "type": "Feature", "properties": { "location": "1601 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "3200 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125991912432795, 39.998672429988602 ] } }, +{ "type": "Feature", "properties": { "location": "4700 MELROSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.074862566298506, 40.007177245064 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15356, 39.929355 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153458, 39.929358 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170528, 39.949583 ] } }, +{ "type": "Feature", "properties": { "location": "6800 VANDIKE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044125, 40.024803 ] } }, +{ "type": "Feature", "properties": { "location": "3038 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168569719977, 40.001224136667098 ] } }, +{ "type": "Feature", "properties": { "location": "7057 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2391293384932, 39.9174278242876 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170197, 39.936183 ] } }, +{ "type": "Feature", "properties": { "location": "2962 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "2962 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "2964 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "2229 W LEHIGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892151483604, 39.995795826908797 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174713, 39.939342 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174657, 39.939297 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174677, 39.939275 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174658, 39.93928 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178008, 39.940512 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22818, 40.028342 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228323, 40.028263 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228245, 40.028302 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N REDFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238960467755405, 39.973663679967203 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 30TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185045949345707, 39.975013534715302 ] } }, +{ "type": "Feature", "properties": { "location": "5400 SPRING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229033264235298, 39.964101994279901 ] } }, +{ "type": "Feature", "properties": { "location": "5110 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224005057888206, 39.959313475732401 ] } }, +{ "type": "Feature", "properties": { "location": "6600 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073054678703699, 40.041780568123997 ] } }, +{ "type": "Feature", "properties": { "location": "100 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227750074937902, 40.028285816233797 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140270308877902, 40.014889376962302 ] } }, +{ "type": "Feature", "properties": { "location": "300 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141880446672005, 39.969027337901203 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172070302461805, 39.936258747644899 ] } }, +{ "type": "Feature", "properties": { "location": "1225 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173737239661406, 39.936040034760701 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OLD YORK RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146752, 40.026115 ] } }, +{ "type": "Feature", "properties": { "location": "6600 LEBANON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.252656964798504, 39.976557805130703 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1800 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175044592870194, 39.931345358857598 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070497, 40.046415 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S BROAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169282, 39.925677 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W GRANGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142182, 40.041193 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155557, 39.921262 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141933, 39.967745 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SEPVIVA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131883, 39.975355 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N 54TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2299122673531, 39.9813032724525 ] } }, +{ "type": "Feature", "properties": { "location": "3500 VAUX ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187586888168497, 40.0134642734739 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161543, 39.929553 ] } }, +{ "type": "Feature", "properties": { "location": "5114 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224005057888206, 39.959313475732401 ] } }, +{ "type": "Feature", "properties": { "location": "722 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157974070036104, 39.927452652952702 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073482, 40.04365 ] } }, +{ "type": "Feature", "properties": { "location": "5811 WALTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239994780185597, 39.951074446819199 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "700 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158697, 39.922477 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173681509071301, 39.923993053768399 ] } }, +{ "type": "Feature", "properties": { "location": "3366 RAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112259104921804, 39.998744998128601 ] } }, +{ "type": "Feature", "properties": { "location": "6815 EMLEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1902753600138, 40.049536101695203 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "6747 DOREL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229944109033795, 39.916753760948701 ] } }, +{ "type": "Feature", "properties": { "location": "6540 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232792966578799, 39.923318525425003 ] } }, +{ "type": "Feature", "properties": { "location": "2500 SHIELDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231529575241396, 39.920274434265401 ] } }, +{ "type": "Feature", "properties": { "location": "7300 THEODORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241543650148898, 39.912637767486501 ] } }, +{ "type": "Feature", "properties": { "location": "7300 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241543650148898, 39.912637767486501 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARVER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089493502317296, 40.033440277255202 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156454207118799, 39.9676090116522 ] } }, +{ "type": "Feature", "properties": { "location": "700 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150459593357496, 39.962375121383801 ] } }, +{ "type": "Feature", "properties": { "location": "247 HERMITAGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228479062267496, 40.032341297360198 ] } }, +{ "type": "Feature", "properties": { "location": "4600 MANSION ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227603991645196, 40.030652633071803 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W SCHOOL HOUSE LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186758, 40.02369 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155892, 39.921322 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155486735485198, 39.921282863897098 ] } }, +{ "type": "Feature", "properties": { "location": "1 S SALFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240104364568197, 39.961484603452199 ] } }, +{ "type": "Feature", "properties": { "location": "300 DURFOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153101684462399, 39.9192365448923 ] } }, +{ "type": "Feature", "properties": { "location": "1215 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163437273571901, 39.939270976189697 ] } }, +{ "type": "Feature", "properties": { "location": "1215 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163437273571901, 39.939270976189697 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163437273571901, 39.939270976189697 ] } }, +{ "type": "Feature", "properties": { "location": "5300 WEBSTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230196009300897, 39.948636318289402 ] } }, +{ "type": "Feature", "properties": { "location": "16 S DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243505303084504, 39.961905576043002 ] } }, +{ "type": "Feature", "properties": { "location": "5501 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232145324628306, 39.959337449758003 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S MOLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170666860697906, 39.932664283814198 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090818, 40.00701 ] } }, +{ "type": "Feature", "properties": { "location": "3100 F ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117689798692595, 39.995614904743398 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "2700 S 67TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229859429711098, 39.917845932147301 ] } }, +{ "type": "Feature", "properties": { "location": "6700 DICKS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230354040444595, 39.917865259198898 ] } }, +{ "type": "Feature", "properties": { "location": "1808 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "1937 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1949 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1923 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153945060507994, 39.982820771933397 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FONTAIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159171103156694, 39.984406357063001 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 13TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162156545231994, 39.9488822580171 ] } }, +{ "type": "Feature", "properties": { "location": "240 S 31ST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185445713889493, 39.954689375672501 ] } }, +{ "type": "Feature", "properties": { "location": "400 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130470366894897, 40.032227804018802 ] } }, +{ "type": "Feature", "properties": { "location": "2700 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131266217413199, 39.991752396303198 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143288, 40.039663 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169269724172295, 39.928085368665201 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1549, 39.92954 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134323, 39.972605 ] } }, +{ "type": "Feature", "properties": { "location": "900 N FRONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137382, 39.96425 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CARLISLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.975763 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171283656234905, 39.998498526828399 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085737, 40.014812 ] } }, +{ "type": "Feature", "properties": { "location": "100 W BERKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134145, 39.978892 ] } }, +{ "type": "Feature", "properties": { "location": "4100 O ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.09646, 40.008488 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12304, 39.973817 ] } }, +{ "type": "Feature", "properties": { "location": "100 W WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138478, 39.96675 ] } }, +{ "type": "Feature", "properties": { "location": "3200 F ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117334122018903, 39.9972517044068 ] } }, +{ "type": "Feature", "properties": { "location": "4000 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136392314811204, 40.012809841857496 ] } }, +{ "type": "Feature", "properties": { "location": "137 MANHEIM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168247519792601, 40.027242779413399 ] } }, +{ "type": "Feature", "properties": { "location": "2700 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168999952422297, 39.996619378776202 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W VENANGO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152548, 40.007905 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165112, 39.935368 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1561188514181, 40.021686855650898 ] } }, +{ "type": "Feature", "properties": { "location": "6600 KINDRED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071792035333502, 40.041073629134701 ] } }, +{ "type": "Feature", "properties": { "location": "5500 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129728112218402, 40.035366412951099 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W SOMERSET ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176879764012995, 39.998443328114298 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129555, 39.975883 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N 20TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163052207976506, 39.999949709151103 ] } }, +{ "type": "Feature", "properties": { "location": "3600 CALUMET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194024682651303, 40.012527821737997 ] } }, +{ "type": "Feature", "properties": { "location": "3400 CONRAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189368, 40.011958 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "700 E ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117129520992904, 39.9969759614482 ] } }, +{ "type": "Feature", "properties": { "location": "200 N RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227231493430494, 39.964240264940003 ] } }, +{ "type": "Feature", "properties": { "location": "1610 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164667, 39.965027 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069382, 40.046583 ] } }, +{ "type": "Feature", "properties": { "location": "5000 KNORR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.040355823329605, 40.020878450776301 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155607, 39.92988 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228262, 40.028347 ] } }, +{ "type": "Feature", "properties": { "location": "4000 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203423, 39.963978 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173055, 39.94847 ] } }, +{ "type": "Feature", "properties": { "location": "546 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154093, 39.933192 ] } }, +{ "type": "Feature", "properties": { "location": "525 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502227031296, 39.933105053217403 ] } }, +{ "type": "Feature", "properties": { "location": "1927 HAWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073852762369995, 40.015945107758903 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164153397583902, 39.967866122955101 ] } }, +{ "type": "Feature", "properties": { "location": "900 MARLYN RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.248989434830406, 39.9771068436891 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155522, 39.959263 ] } }, +{ "type": "Feature", "properties": { "location": "6001 MASCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122023785139206, 40.041927107902801 ] } }, +{ "type": "Feature", "properties": { "location": "500 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103038964594006, 40.042908121223199 ] } }, +{ "type": "Feature", "properties": { "location": "5700 CHESTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227403664241507, 39.936529693824703 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220463, 40.024935 ] } }, +{ "type": "Feature", "properties": { "location": "3100 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184416487056495, 39.986754033752497 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156972, 39.95806 ] } }, +{ "type": "Feature", "properties": { "location": "317 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156931028713203, 39.958025898075 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167385, 39.965232 ] } }, +{ "type": "Feature", "properties": { "location": "2700 S SHERIDAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159356250711696, 39.9145665876867 ] } }, +{ "type": "Feature", "properties": { "location": "1627 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163754556967206, 39.970079056239499 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166838, 39.920215 ] } }, +{ "type": "Feature", "properties": { "location": "4613 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077868863557995, 40.010270421105403 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176340025879398, 40.0035320270309 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160941366333802, 39.968544012042102 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160941366333802, 39.968544012042102 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160941366333802, 39.968544012042102 ] } }, +{ "type": "Feature", "properties": { "location": "20 S 15TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165263635504203, 39.9524317878045 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171378, 39.929605 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225417, 40.027148 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153897, 39.995998 ] } }, +{ "type": "Feature", "properties": { "location": "900 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1538, 39.960187 ] } }, +{ "type": "Feature", "properties": { "location": "4500 SPRINGFIELD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2131, 39.948467 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138782, 39.964433 ] } }, +{ "type": "Feature", "properties": { "location": "6300 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228907420803395, 39.923982412725103 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 15TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165663569126295, 39.950833533116402 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0708486779086, 40.0213430257621 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W SOMERVILLE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143297, 40.034942 ] } }, +{ "type": "Feature", "properties": { "location": "4740 MARPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.029172970732205, 40.032245753644901 ] } }, +{ "type": "Feature", "properties": { "location": "500 RANDOLPH CT", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151548, 39.94215 ] } }, +{ "type": "Feature", "properties": { "location": "5817 HAVERFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236105648096796, 39.968651096131403 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161994737651796, 39.982590245305097 ] } }, +{ "type": "Feature", "properties": { "location": "300 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216233997078703, 40.027777327623603 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "263 S 60TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241780359730797, 39.957086376941099 ] } }, +{ "type": "Feature", "properties": { "location": "2030 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161452548418893, 39.985024019739797 ] } }, +{ "type": "Feature", "properties": { "location": "5212 OSAGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2269, 39.953008 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218533670274198, 40.0267494724595 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073767, 40.043412 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170981421266603, 39.926427034672301 ] } }, +{ "type": "Feature", "properties": { "location": "3759 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "400 W SEDGLEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136010890934401, 40.005189864613001 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 62ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246775120546701, 39.952552083461001 ] } }, +{ "type": "Feature", "properties": { "location": "8918 SYLVIA LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.050830081093594, 40.084073540920301 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 15TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167267, 39.943315 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172517218911807, 39.937970035699699 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151903171246701, 39.966261014450403 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMITAGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229112, 40.032062 ] } }, +{ "type": "Feature", "properties": { "location": "3900 PINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203157, 39.950608 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225483, 40.027053 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225512, 40.02711 ] } }, +{ "type": "Feature", "properties": { "location": "100 DAWSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212428, 40.019008 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PRESTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203782, 39.960313 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179785, 39.973615 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179758, 39.973493 ] } }, +{ "type": "Feature", "properties": { "location": "4000 CHANCELLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20497, 39.953693 ] } }, +{ "type": "Feature", "properties": { "location": "600 ANCHOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100624372943301, 40.040243907613302 ] } }, +{ "type": "Feature", "properties": { "location": "2500 SHIELDS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232193, 39.920828 ] } }, +{ "type": "Feature", "properties": { "location": "128 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154607, 39.954073 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224267, 40.026597 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214298, 40.023727 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090877, 40.00754 ] } }, +{ "type": "Feature", "properties": { "location": "500 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15315, 39.934378 ] } }, +{ "type": "Feature", "properties": { "location": "500 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15315, 39.934332 ] } }, +{ "type": "Feature", "properties": { "location": "2400 W LEHIGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171047602969907, 39.996076185454299 ] } }, +{ "type": "Feature", "properties": { "location": "500 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137518, 39.95943 ] } }, +{ "type": "Feature", "properties": { "location": "5800 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2405297448299, 39.948518816909697 ] } }, +{ "type": "Feature", "properties": { "location": "100 W LOGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164375718702004, 40.026274064300999 ] } }, +{ "type": "Feature", "properties": { "location": "3000 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130304536388607, 39.9962686634804 ] } }, +{ "type": "Feature", "properties": { "location": "3517 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132160933349098, 40.004096245522199 ] } }, +{ "type": "Feature", "properties": { "location": "3400 KEIM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117123940405904, 40.000928704119097 ] } }, +{ "type": "Feature", "properties": { "location": "700 W CAYUGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138468085431697, 40.018639534269496 ] } }, +{ "type": "Feature", "properties": { "location": "3900 HOWLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103703751231507, 40.007054597392496 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169568, 39.928143 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170432, 39.926943 ] } }, +{ "type": "Feature", "properties": { "location": "1900 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178952, 39.924378 ] } }, +{ "type": "Feature", "properties": { "location": "1900 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1780035824831, 39.927529999568698 ] } }, +{ "type": "Feature", "properties": { "location": "300 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222383, 40.029567 ] } }, +{ "type": "Feature", "properties": { "location": "1700 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166965, 39.964578 ] } }, +{ "type": "Feature", "properties": { "location": "627 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140067226837402, 40.007806233138801 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179249308647201, 39.9670232703834 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144588, 40.042712 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159893, 39.958212 ] } }, +{ "type": "Feature", "properties": { "location": "5708 N MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132799543974897, 40.039119032726703 ] } }, +{ "type": "Feature", "properties": { "location": "264 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124695974647196, 40.044583159159998 ] } }, +{ "type": "Feature", "properties": { "location": "266 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124695974647196, 40.044583159159998 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156815, 39.928177 ] } }, +{ "type": "Feature", "properties": { "location": "1921 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134335, 39.972443 ] } }, +{ "type": "Feature", "properties": { "location": "307 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205641772576897, 39.951786057834497 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070412, 40.046433 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090667, 40.006312 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 32ND ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188155, 39.961097 ] } }, +{ "type": "Feature", "properties": { "location": "250 S ALDER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158188, 39.946675 ] } }, +{ "type": "Feature", "properties": { "location": "256 S ALDER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158202, 39.946617 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FITZWATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171537, 39.942422 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179743, 39.97381 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LARDNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0795396301408, 40.035554269592197 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SANSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213568, 39.956268 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159302, 39.965028 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S CLEVELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17348, 39.939948 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180101008471098, 39.926165919914098 ] } }, +{ "type": "Feature", "properties": { "location": "1500 WHARTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169387, 39.934298 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155532, 39.929963 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155522, 39.929985 ] } }, +{ "type": "Feature", "properties": { "location": "600 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157828, 39.923647 ] } }, +{ "type": "Feature", "properties": { "location": "5400 N PENN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077772, 40.026228 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177955594773493, 39.924062043339497 ] } }, +{ "type": "Feature", "properties": { "location": "500 W CHELTEN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182673, 40.027957 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156022, 39.921275 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153812, 39.929008 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.092120295496102, 39.9886748627057 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221457, 39.9573 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228108, 40.02824 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 43RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20851, 39.956315 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "137 ROOSEVELT BL", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122122, 40.026167 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175275, 39.921277 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17539, 39.921238 ] } }, +{ "type": "Feature", "properties": { "location": "300 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222436389011804, 40.032189448434401 ] } }, +{ "type": "Feature", "properties": { "location": "300 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222436389011804, 40.032189448434401 ] } }, +{ "type": "Feature", "properties": { "location": "601 CANTRELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "700 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158368, 39.92238 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171143, 39.9207 ] } }, +{ "type": "Feature", "properties": { "location": "5000 S 18TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181486214888906, 39.888305782264197 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160941366333802, 39.968544012042102 ] } }, +{ "type": "Feature", "properties": { "location": "7200 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.066275809656702, 40.049883062190098 ] } }, +{ "type": "Feature", "properties": { "location": "253 W ALBANUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128847189448294, 40.026279760722602 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILLARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "330 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188056889150701, 40.0402060406388 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158067, 39.937602 ] } }, +{ "type": "Feature", "properties": { "location": "4228 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208368, 39.954895 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225432, 40.027217 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090822, 40.006833 ] } }, +{ "type": "Feature", "properties": { "location": "1900 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176685091998607, 39.9336365728483 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 34TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.190962, 39.958372 ] } }, +{ "type": "Feature", "properties": { "location": "1363 S MELVILLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207951954694096, 39.943743181238403 ] } }, +{ "type": "Feature", "properties": { "location": "5604 CEDAR AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235859093356197, 39.951571611277402 ] } }, +{ "type": "Feature", "properties": { "location": "3400 POWELTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190975, 39.960183 ] } }, +{ "type": "Feature", "properties": { "location": "4200 ROMAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091384460604601, 40.009247004961601 ] } }, +{ "type": "Feature", "properties": { "location": "4200 ROMAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091384460604601, 40.009247004961601 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144753, 39.97151 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155107, 39.95436 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079935848761096, 40.029824815486698 ] } }, +{ "type": "Feature", "properties": { "location": "3500 INDIAN QUEEN LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188027, 40.010812 ] } }, +{ "type": "Feature", "properties": { "location": "317 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156963, 39.958062 ] } }, +{ "type": "Feature", "properties": { "location": "1400 ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141972, 39.97267 ] } }, +{ "type": "Feature", "properties": { "location": "800 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154717, 39.947982 ] } }, +{ "type": "Feature", "properties": { "location": "1400 ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141938, 39.97281 ] } }, +{ "type": "Feature", "properties": { "location": "1400 ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141998, 39.972813 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145415, 39.968207 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115727, 39.99514 ] } }, +{ "type": "Feature", "properties": { "location": "1500 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16427, 39.963503 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197017, 39.96082 ] } }, +{ "type": "Feature", "properties": { "location": "7217 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.037265041886897, 40.031326052479699 ] } }, +{ "type": "Feature", "properties": { "location": "1199 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163542, 39.935148 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1493, 39.939472 ] } }, +{ "type": "Feature", "properties": { "location": "300 PALMETTO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148925, 39.939467 ] } }, +{ "type": "Feature", "properties": { "location": "3000 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122780117495907, 39.995102822920899 ] } }, +{ "type": "Feature", "properties": { "location": "3200 HURLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121582288345707, 39.998367365473101 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16101, 39.968328 ] } }, +{ "type": "Feature", "properties": { "location": "300 HANSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219242697444699, 39.9532103028112 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133487, 39.972637 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157172889510406, 39.954789774974103 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "6000 DELANCEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.242990759656806, 39.956139112432098 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174916350542503, 39.970854053890299 ] } }, +{ "type": "Feature", "properties": { "location": "800 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160187255647998, 39.968033989591703 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "2127 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177948, 39.945467 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167268, 39.954315 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169853, 39.949563 ] } }, +{ "type": "Feature", "properties": { "location": "5908 WASHINGTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2427097597364, 39.947772516170097 ] } }, +{ "type": "Feature", "properties": { "location": "5730 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238167888760699, 39.950328129831298 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153677, 39.959767 ] } }, +{ "type": "Feature", "properties": { "location": "1000 AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141042, 39.966503 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159385, 39.923908 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159558, 39.933173 ] } }, +{ "type": "Feature", "properties": { "location": "600 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157902, 39.92409 ] } }, +{ "type": "Feature", "properties": { "location": "600 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157828, 39.923993 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225143718712303, 40.0262565643012 ] } }, +{ "type": "Feature", "properties": { "location": "2000 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179818018193203, 39.924408679631497 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143837, 39.969712 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143848, 39.969722 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176747, 39.95457 ] } }, +{ "type": "Feature", "properties": { "location": "900 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156807, 39.945545 ] } }, +{ "type": "Feature", "properties": { "location": "1715 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1674, 39.96456 ] } }, +{ "type": "Feature", "properties": { "location": "1715 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 39.96445 ] } }, +{ "type": "Feature", "properties": { "location": "219 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205171385022098, 39.954057888527203 ] } }, +{ "type": "Feature", "properties": { "location": "2030 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "5000 S 18TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181486214888906, 39.888305782264197 ] } }, +{ "type": "Feature", "properties": { "location": "300 CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138848, 39.95579 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146338, 39.93769 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 35TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192387, 39.958778 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090905, 40.00756 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 38TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197678, 39.957408 ] } }, +{ "type": "Feature", "properties": { "location": "300 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142782, 39.96926 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155512, 39.930028 ] } }, +{ "type": "Feature", "properties": { "location": "608 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155623, 39.929697 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156878, 39.929053 ] } }, +{ "type": "Feature", "properties": { "location": "4119 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207850177557205, 39.973726659961002 ] } }, +{ "type": "Feature", "properties": { "location": "626 AVON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0256853299326, 40.111277871349699 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218533670274198, 40.0267494724595 ] } }, +{ "type": "Feature", "properties": { "location": "238 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124695974647196, 40.044583159159998 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150148, 40.003678 ] } }, +{ "type": "Feature", "properties": { "location": "3462 N BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134296832094293, 40.003128555406597 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228208, 40.028403 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S MOLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172392, 39.924672 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S HUTCHINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162033, 39.924592 ] } }, +{ "type": "Feature", "properties": { "location": "3401 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124572301175206, 40.001880480241397 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148477, 40.02235 ] } }, +{ "type": "Feature", "properties": { "location": "2600 SOUTH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183195, 39.945848 ] } }, +{ "type": "Feature", "properties": { "location": "400 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151930129375302, 39.932893846230201 ] } }, +{ "type": "Feature", "properties": { "location": "1007 KATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159623, 39.942417 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13978, 39.953197 ] } }, +{ "type": "Feature", "properties": { "location": "5900 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238491193254703, 39.964854208198901 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241415159123903, 39.986820628178499 ] } }, +{ "type": "Feature", "properties": { "location": "526 N 56TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232100226902801, 39.968154382568002 ] } }, +{ "type": "Feature", "properties": { "location": "6639 LEEDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.252923928820707, 39.9752150457075 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243285968758997, 39.972369106935702 ] } }, +{ "type": "Feature", "properties": { "location": "700 S JESSUP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161021210395504, 39.9417047506318 ] } }, +{ "type": "Feature", "properties": { "location": "400 ASHDALE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132277, 40.027923 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 6TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152315, 39.942328 ] } }, +{ "type": "Feature", "properties": { "location": "2006 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177562518363004, 39.937887328406397 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14223, 39.970485 ] } }, +{ "type": "Feature", "properties": { "location": "1224 SUMMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159645, 39.957053 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.245057755271105, 39.962495105725097 ] } }, +{ "type": "Feature", "properties": { "location": "5789 DUNLAP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237382404049896, 39.978604753829401 ] } }, +{ "type": "Feature", "properties": { "location": "5900 HARBISON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.063304153657498, 40.020841966108499 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W DUNCANNON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14726, 40.032318 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CEDAR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2258813470349, 39.950338566138697 ] } }, +{ "type": "Feature", "properties": { "location": "5330 CHESTNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228649364299798, 39.958904400909603 ] } }, +{ "type": "Feature", "properties": { "location": "5900 WEBSTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242240004358806, 39.950052749755102 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157897, 39.983383 ] } }, +{ "type": "Feature", "properties": { "location": "6012 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241540167869601, 39.961263417181897 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232248012542499, 39.936745311179003 ] } }, +{ "type": "Feature", "properties": { "location": "800 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159297, 39.925445 ] } }, +{ "type": "Feature", "properties": { "location": "4400 OAKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091717832300901, 40.015898841684397 ] } }, +{ "type": "Feature", "properties": { "location": "4429 OAKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091717832300901, 40.015898841684397 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WALKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.058334309951704, 40.024157377060597 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150236495551795, 39.920375481089103 ] } }, +{ "type": "Feature", "properties": { "location": "516 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15431, 39.929543 ] } }, +{ "type": "Feature", "properties": { "location": "100 FOUNTAIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231852, 40.032715 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "3800 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197535, 39.960675 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15589, 39.959577 ] } }, +{ "type": "Feature", "properties": { "location": "4399 FLEMING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219908017018099, 40.028584215348602 ] } }, +{ "type": "Feature", "properties": { "location": "4399 FLEMING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219908017018099, 40.028584215348602 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FARRAGUT TER", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213553, 39.94671 ] } }, +{ "type": "Feature", "properties": { "location": "400 DURFOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154874097386497, 39.9194664364557 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17685, 39.921575 ] } }, +{ "type": "Feature", "properties": { "location": "600 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209785213627597, 40.0337570562289 ] } }, +{ "type": "Feature", "properties": { "location": "600 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153909336029102, 39.937190512924197 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MOUNT VERNON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160832, 39.963927 ] } }, +{ "type": "Feature", "properties": { "location": "200 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141622, 39.968978 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231082226009093, 39.938943459486801 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155538, 39.927083 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155563, 39.927075 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155528, 39.92707 ] } }, +{ "type": "Feature", "properties": { "location": "5000 C ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117254650928004, 40.025643385859198 ] } }, +{ "type": "Feature", "properties": { "location": "7200 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.036389218332303, 40.030285109192 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142558, 39.969162 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "600 E RAYMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112056349455401, 40.017840758811801 ] } }, +{ "type": "Feature", "properties": { "location": "131 S 56TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233313, 39.95863 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MANTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174476030775494, 39.936377166328 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158077, 39.937498 ] } }, +{ "type": "Feature", "properties": { "location": "1623 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170037, 39.942377 ] } }, +{ "type": "Feature", "properties": { "location": "2800 JUDSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169701828273801, 39.998291432288603 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 52ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225177714933196, 39.968368204760203 ] } }, +{ "type": "Feature", "properties": { "location": "1920 N 27TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177357436266007, 39.985098386991602 ] } }, +{ "type": "Feature", "properties": { "location": "1601 N 17TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162853998252302, 39.978599809627298 ] } }, +{ "type": "Feature", "properties": { "location": "1501 GREGG ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.045438219992306, 40.082284253909798 ] } }, +{ "type": "Feature", "properties": { "location": "806A SELMER RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.023116882171905, 40.107878049398501 ] } }, +{ "type": "Feature", "properties": { "location": "2682 MARIGOLD LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.990399003619203, 40.117357693572202 ] } }, +{ "type": "Feature", "properties": { "location": "4300 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149957460731002, 40.019144838746897 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MORAVIAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16876, 39.950313 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15838, 39.923465 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158293, 39.923692 ] } }, +{ "type": "Feature", "properties": { "location": "1755 OREGON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177446320517404, 39.917668482703199 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156178461314695, 39.957776657981 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155265, 39.959585 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15525, 39.95964 ] } }, +{ "type": "Feature", "properties": { "location": "199 LAUREL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13894, 39.96504 ] } }, +{ "type": "Feature", "properties": { "location": "4500 SILVERWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224123, 40.030378 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146317, 39.97162 ] } }, +{ "type": "Feature", "properties": { "location": "200 E ELKHART ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126470969601797, 39.996133706665098 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19291, 39.950365 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228375, 40.028553 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228247, 40.028373 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142755, 39.96127 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0885, 40.010812 ] } }, +{ "type": "Feature", "properties": { "location": "100 ROXBOROUGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221632, 40.025247 ] } }, +{ "type": "Feature", "properties": { "location": "300 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124861067352498, 39.997974517684597 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14964, 40.00523 ] } }, +{ "type": "Feature", "properties": { "location": "8920 SYLVIA LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.050830081093594, 40.084073540920301 ] } }, +{ "type": "Feature", "properties": { "location": "3817 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838, 39.960028 ] } }, +{ "type": "Feature", "properties": { "location": "1318 W JEROME ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148471033305299, 40.016046471984701 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091103, 40.007487 ] } }, +{ "type": "Feature", "properties": { "location": "4400 SANSOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.210709676452893, 39.9559005037042 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161585, 39.929552 ] } }, +{ "type": "Feature", "properties": { "location": "300 PALMETTO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148705, 39.939457 ] } }, +{ "type": "Feature", "properties": { "location": "5823 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226500257969505, 39.931077640976703 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155032, 39.949092 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155897, 39.933282 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 55TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226639315378904, 39.940706036669098 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "3500 COTTMAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041302, 40.037008 ] } }, +{ "type": "Feature", "properties": { "location": "429 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156505, 39.959723 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156758, 39.9582 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141818458871896, 39.968366704767298 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160582, 39.959203 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155215, 39.959388 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155645, 39.95967 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144955, 39.969963 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16514, 39.935382 ] } }, +{ "type": "Feature", "properties": { "location": "5400 DISCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080774113352902, 40.028712277559798 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N ALDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235943686351504, 39.975604926872499 ] } }, +{ "type": "Feature", "properties": { "location": "5100 SHELDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161376441088805, 40.0342012052459 ] } }, +{ "type": "Feature", "properties": { "location": "5156 HARLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225439196084395, 39.9749508517287 ] } }, +{ "type": "Feature", "properties": { "location": "5900 TRINITY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231314050389599, 39.934707658451003 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W HAGERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156664418889804, 39.990312752772503 ] } }, +{ "type": "Feature", "properties": { "location": "300 BUDD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204525, 39.959863 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174145, 39.946217 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160678, 39.95862 ] } }, +{ "type": "Feature", "properties": { "location": "137 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122676584184106, 40.043817504728999 ] } }, +{ "type": "Feature", "properties": { "location": "300 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14831, 39.944393 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139327, 39.95908 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149597, 40.005262 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145267336748802, 40.004048937249998 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150242, 40.003742 ] } }, +{ "type": "Feature", "properties": { "location": "2100 WHARTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179828870007199, 39.935715774320002 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224513, 39.972473 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154722, 39.954272 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "3501 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127520391343793, 40.003642017451597 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104485, 39.996562 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152392, 39.942325 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171705, 39.928358 ] } }, +{ "type": "Feature", "properties": { "location": "181 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "1 SUMMER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139959572061997, 39.954267863426303 ] } }, +{ "type": "Feature", "properties": { "location": "100 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138468, 39.969222 ] } }, +{ "type": "Feature", "properties": { "location": "800 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15986, 39.929338 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16124, 39.982213 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170048, 39.930705 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 69TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243671112476804, 39.924599856092797 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N HIRST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243732826520699, 39.973132562111097 ] } }, +{ "type": "Feature", "properties": { "location": "1623 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169967, 39.942337 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W COURTLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153308554550705, 40.023621495405798 ] } }, +{ "type": "Feature", "properties": { "location": "3340 RAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112259104921804, 39.998744998128601 ] } }, +{ "type": "Feature", "properties": { "location": "3300 H ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.112876475067694, 39.998283943193002 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08846, 40.010915 ] } }, +{ "type": "Feature", "properties": { "location": "5601 VINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232835976070803, 39.965713196762898 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137765, 39.964142 ] } }, +{ "type": "Feature", "properties": { "location": "6300 HASBROOK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.099806939469303, 40.0509716071113 ] } }, +{ "type": "Feature", "properties": { "location": "5451 NORFOLK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232239623768095, 39.948581513477997 ] } }, +{ "type": "Feature", "properties": { "location": "1522 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159185, 39.976812 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "100 E CLEARFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129343677754903, 39.996921583508097 ] } }, +{ "type": "Feature", "properties": { "location": "100 W ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128871815107402, 40.001659310920502 ] } }, +{ "type": "Feature", "properties": { "location": "3468 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1175767096166, 40.000987289979797 ] } }, +{ "type": "Feature", "properties": { "location": "100 DAWSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21238, 40.018962 ] } }, +{ "type": "Feature", "properties": { "location": "2000 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064144577077997, 40.017349137504198 ] } }, +{ "type": "Feature", "properties": { "location": "6800 BUIST AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233286425901596, 39.917966129545299 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174095, 39.952665 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162905, 39.948417 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173962, 39.952467 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15355, 39.928927 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DRURY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162462, 39.950235 ] } }, +{ "type": "Feature", "properties": { "location": "6000 MASCHER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122023785139206, 40.041927107902801 ] } }, +{ "type": "Feature", "properties": { "location": "600 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156974931681304, 39.924777147009202 ] } }, +{ "type": "Feature", "properties": { "location": "4500 MITCHELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217846195282306, 40.033287356232201 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09108, 40.00764 ] } }, +{ "type": "Feature", "properties": { "location": "4000 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090985, 40.007112 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088518, 40.010882 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155362, 39.95971 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MORAVIAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172193, 39.95081 ] } }, +{ "type": "Feature", "properties": { "location": "727 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154017, 39.947963 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169015, 39.926972 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162913, 39.981863 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15581, 39.928968 ] } }, +{ "type": "Feature", "properties": { "location": "2200 W SEDGLEY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169175598743607, 39.9921566701938 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153342, 39.934013 ] } }, +{ "type": "Feature", "properties": { "location": "189 W THELMA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127209198689698, 40.0204988630881 ] } }, +{ "type": "Feature", "properties": { "location": "400 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154862, 39.921945 ] } }, +{ "type": "Feature", "properties": { "location": "6100 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "518 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155863, 39.921333 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176648, 39.936742 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156178461314695, 39.957776657981 ] } }, +{ "type": "Feature", "properties": { "location": "622 N 10TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154138872928598, 39.963413437748002 ] } }, +{ "type": "Feature", "properties": { "location": "4200 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207748, 39.953532 ] } }, +{ "type": "Feature", "properties": { "location": "1811 TASKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175044592870194, 39.931345358857598 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S CLEVELAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188167134195, 39.9319880793742 ] } }, +{ "type": "Feature", "properties": { "location": "1655 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "4300 COTTMAN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.038406362847397, 40.034093034221399 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077660288847596, 40.021977457426999 ] } }, +{ "type": "Feature", "properties": { "location": "4200 ROMAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091384460604601, 40.009247004961601 ] } }, +{ "type": "Feature", "properties": { "location": "104 TOMLINSON RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.037083469033306, 40.120268258240699 ] } }, +{ "type": "Feature", "properties": { "location": "614 HAZELL LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.013768852189401, 40.126885550480601 ] } }, +{ "type": "Feature", "properties": { "location": "251 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "249 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "3200 E ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.119248613271793, 39.997623921665699 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228233, 40.028292 ] } }, +{ "type": "Feature", "properties": { "location": "5930 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240052052132299, 39.960317193033603 ] } }, +{ "type": "Feature", "properties": { "location": "100 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135579646793602, 39.971909757871003 ] } }, +{ "type": "Feature", "properties": { "location": "6600 CASTOR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.074736315953302, 40.042243009859803 ] } }, +{ "type": "Feature", "properties": { "location": "7200 ALLENS PL", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207650201189594, 40.0461436203651 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "2147 E BIRCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115439259171794, 39.988517308487502 ] } }, +{ "type": "Feature", "properties": { "location": "500 SANGER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104902207422697, 40.041363709164202 ] } }, +{ "type": "Feature", "properties": { "location": "200 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224978854150393, 40.029976752046998 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 59TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237863046152995, 39.972319213451598 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177362, 39.95362 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086502, 40.013912 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 22ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173735553621796, 39.970121773752297 ] } }, +{ "type": "Feature", "properties": { "location": "800 N TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180321904948897, 39.970954157193397 ] } }, +{ "type": "Feature", "properties": { "location": "1700 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164933245812506, 39.970864694478301 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151917, 39.94964 ] } }, +{ "type": "Feature", "properties": { "location": "5327 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227693931075194, 39.963518779809903 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086373, 40.015133 ] } }, +{ "type": "Feature", "properties": { "location": "1506 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168307, 39.94031 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CECIL B MOORE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15409, 39.978112 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "3000 HALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.062076698644702, 40.028359256932397 ] } }, +{ "type": "Feature", "properties": { "location": "3000 HALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.062076698644702, 40.028359256932397 ] } }, +{ "type": "Feature", "properties": { "location": "2199 74TH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153719388819496, 40.067456466171798 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N 17TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156329419280596, 40.008507063870702 ] } }, +{ "type": "Feature", "properties": { "location": "5200 N 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137601414904395, 40.031534342755897 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147949822434299, 40.028356093410103 ] } }, +{ "type": "Feature", "properties": { "location": "100 W SPENCER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120769156140796, 40.043049748861797 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163288354647193, 39.972905150418597 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160308932115996, 39.982879157617504 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160308932115996, 39.982879157617504 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169269724172295, 39.928085368665201 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175762, 39.926418 ] } }, +{ "type": "Feature", "properties": { "location": "5100 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223434125367504, 39.967283487002803 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237293441597501, 39.916219986919103 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 63RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228887226671304, 39.925009362716899 ] } }, +{ "type": "Feature", "properties": { "location": "900 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.960095 ] } }, +{ "type": "Feature", "properties": { "location": "262 ERICA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.040944920656699, 40.116487384832503 ] } }, +{ "type": "Feature", "properties": { "location": "10792 HEATHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.028583594593798, 40.113782512947701 ] } }, +{ "type": "Feature", "properties": { "location": "400 CHRISTIAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1509941596738, 39.937127511823299 ] } }, +{ "type": "Feature", "properties": { "location": "6100 MORTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174701286183407, 40.0444329582077 ] } }, +{ "type": "Feature", "properties": { "location": "2028 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "1600 TYSON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068030412597807, 40.0455522504963 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S COLORADO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173345696621595, 39.933007048200601 ] } }, +{ "type": "Feature", "properties": { "location": "1200 BENNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.084118153547905, 40.037469601257001 ] } }, +{ "type": "Feature", "properties": { "location": "314 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126253923693298, 40.044789249430899 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROBBINS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.101861164367904, 40.051296699454802 ] } }, +{ "type": "Feature", "properties": { "location": "200 E HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174246300807695, 40.040948821864497 ] } }, +{ "type": "Feature", "properties": { "location": "614 HAZELL LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.013768852189401, 40.126885550480601 ] } }, +{ "type": "Feature", "properties": { "location": "2733 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177816934622399, 39.997755626709598 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127478300031996, 40.041568511747499 ] } }, +{ "type": "Feature", "properties": { "location": "137 N 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236238456535006, 39.964185861597301 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128098, 39.967253 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128263, 39.967325 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158147, 39.923622 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W COURTLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144880669149501, 40.022536138280202 ] } }, +{ "type": "Feature", "properties": { "location": "311 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157017801052902, 39.9576419838642 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159357284420594, 39.9835251720217 ] } }, +{ "type": "Feature", "properties": { "location": "932 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153510745542505, 39.936719385604398 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1100 HAMILTON ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157185942962499, 39.960368318495902 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205313, 39.948495 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157172889510406, 39.954789774974103 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179748, 39.973783 ] } }, +{ "type": "Feature", "properties": { "location": "5201 WAYNE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171785580849303, 40.027641383346001 ] } }, +{ "type": "Feature", "properties": { "location": "2000 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169913209017906, 39.9714893539565 ] } }, +{ "type": "Feature", "properties": { "location": "6418 CHELWYNDE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227404158794599, 39.920691487607897 ] } }, +{ "type": "Feature", "properties": { "location": "99 W WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136875, 39.967327 ] } }, +{ "type": "Feature", "properties": { "location": "200 E WALNUT LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175640254225797, 40.043141257328202 ] } }, +{ "type": "Feature", "properties": { "location": "3757 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S JUNIPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167025, 39.9317 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156008, 39.921245 ] } }, +{ "type": "Feature", "properties": { "location": "2955 MARKET ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182277273820503, 39.954707680498402 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ATLANTIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149502, 40.006182 ] } }, +{ "type": "Feature", "properties": { "location": "199 GRAPE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222967, 40.026163 ] } }, +{ "type": "Feature", "properties": { "location": "400 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129943766628102, 39.9703675029781 ] } }, +{ "type": "Feature", "properties": { "location": "8000 STATE RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.019673, 40.032528 ] } }, +{ "type": "Feature", "properties": { "location": "300 MECHANIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173755198171605, 40.042510158841097 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1826912513027, 39.9418637544034 ] } }, +{ "type": "Feature", "properties": { "location": "1410 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235642598098806, 39.9740325557296 ] } }, +{ "type": "Feature", "properties": { "location": "2439 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183173801630204, 39.993697260569 ] } }, +{ "type": "Feature", "properties": { "location": "800 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15643, 39.943963 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175348, 39.936565 ] } }, +{ "type": "Feature", "properties": { "location": "7200 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.036389218332303, 40.030285109192 ] } }, +{ "type": "Feature", "properties": { "location": "1100 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166177, 39.92267 ] } }, +{ "type": "Feature", "properties": { "location": "401 SIGEL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153610712150595, 39.925353144298498 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153677, 39.96031 ] } }, +{ "type": "Feature", "properties": { "location": "1800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.923943 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MAGEE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.072685557850306, 40.040625131579397 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W RUSH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153865, 39.995993 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S HICKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170272, 39.932087 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174223, 39.955072 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174492, 39.955083 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 60TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243149665956807, 39.950550127202703 ] } }, +{ "type": "Feature", "properties": { "location": "754 S 60TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2433059360675, 39.949792895015499 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166822, 39.965272 ] } }, +{ "type": "Feature", "properties": { "location": "900 RITNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162383065447003, 39.919597259785498 ] } }, +{ "type": "Feature", "properties": { "location": "1900 COTTMAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.066385, 40.051513 ] } }, +{ "type": "Feature", "properties": { "location": "2800 WATERLOO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131923344691202, 39.993414172869102 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 18TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176192872767203, 39.924725792068799 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 3RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144938, 39.953902 ] } }, +{ "type": "Feature", "properties": { "location": "2600 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233394290358703, 39.916809360825901 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143425, 40.034948 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141995, 39.970442 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158358, 39.958565 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158338, 39.95828 ] } }, +{ "type": "Feature", "properties": { "location": "5300 UPLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220052279135402, 39.9383314087926 ] } }, +{ "type": "Feature", "properties": { "location": "800 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157775, 39.93896 ] } }, +{ "type": "Feature", "properties": { "location": "3621 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142907908814493, 40.007437911265797 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143080727049295, 40.006643016473802 ] } }, +{ "type": "Feature", "properties": { "location": "4000 MITCHELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209805554514205, 40.024408828650898 ] } }, +{ "type": "Feature", "properties": { "location": "2516 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233186011450002, 39.919113482363798 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N 31ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182302455867401, 39.995117970429803 ] } }, +{ "type": "Feature", "properties": { "location": "3931 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136681744966097, 40.0113145367051 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224487, 40.028073 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153662, 39.959775 ] } }, +{ "type": "Feature", "properties": { "location": "300 STATE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.200560726080695, 39.959901521524301 ] } }, +{ "type": "Feature", "properties": { "location": "4950 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220573727962901, 39.956340012212699 ] } }, +{ "type": "Feature", "properties": { "location": "300 WIOTA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202863, 39.960315 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175142, 39.922507 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22837, 40.028328 ] } }, +{ "type": "Feature", "properties": { "location": "5200 CHESTNUT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22706, 39.958618 ] } }, +{ "type": "Feature", "properties": { "location": "4400 OAKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091717832300901, 40.015898841684397 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W WESTMORELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154295, 40.003347 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090912, 40.007488 ] } }, +{ "type": "Feature", "properties": { "location": "7600 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.060547, 40.05719 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164367, 39.931642 ] } }, +{ "type": "Feature", "properties": { "location": "4500 RITCHIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225308, 40.028597 ] } }, +{ "type": "Feature", "properties": { "location": "4600 WEYMOUTH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112236674572301, 40.019219666747503 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15786, 39.931588 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 38TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198638, 39.953342 ] } }, +{ "type": "Feature", "properties": { "location": "527 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156092, 39.920783 ] } }, +{ "type": "Feature", "properties": { "location": "6100 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16008, 39.973347 ] } }, +{ "type": "Feature", "properties": { "location": "1100 LEMON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15579, 39.963872 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158967, 39.959162 ] } }, +{ "type": "Feature", "properties": { "location": "2311 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17633, 39.965682 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160342, 39.942085 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160322, 39.942093 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160303, 39.942067 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174311313406093, 39.919848295484897 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175227, 39.928837 ] } }, +{ "type": "Feature", "properties": { "location": "700 KENMORE RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.250955486791199, 39.974198623446398 ] } }, +{ "type": "Feature", "properties": { "location": "939 N 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147008, 39.968233 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147015, 39.968158 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172868119472795, 39.917726938671997 ] } }, +{ "type": "Feature", "properties": { "location": "5132 VIOLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222389606258105, 39.980273704307002 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 57TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237252813407196, 39.949825748788797 ] } }, +{ "type": "Feature", "properties": { "location": "3100 RORER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120466202719598, 39.996593229751497 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176857, 39.929108 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213815, 40.023163 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213843, 40.023115 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155825, 39.929743 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RUAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0892, 40.010208 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 3RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145848, 39.949577 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "220 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1264943359743, 39.9992864705073 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175638, 39.922535 ] } }, +{ "type": "Feature", "properties": { "location": "3300 FREDERICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19368, 40.009948 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139573, 39.956827 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153218, 39.930987 ] } }, +{ "type": "Feature", "properties": { "location": "906 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1584, 39.938393 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CONLYN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144583, 40.042303 ] } }, +{ "type": "Feature", "properties": { "location": "3400 KIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125235800087196, 40.001956616055303 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 60TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243459367527905, 39.949036737705299 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22581, 40.02964 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225842, 40.029623 ] } }, +{ "type": "Feature", "properties": { "location": "200 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "500 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153630624038797, 39.962108180253402 ] } }, +{ "type": "Feature", "properties": { "location": "5900 PALMETTO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0999523206833, 40.043419523349399 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14342, 40.034875 ] } }, +{ "type": "Feature", "properties": { "location": "6600 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073054678703699, 40.041780568123997 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147882, 39.939543 ] } }, +{ "type": "Feature", "properties": { "location": "357 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221032342641394, 40.0328599036282 ] } }, +{ "type": "Feature", "properties": { "location": "500 ROSALIE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.103038964594006, 40.042908121223199 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166872, 39.920168 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179727, 39.973875 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156178461314695, 39.957776657981 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155953, 39.959473 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183702050635304, 39.973542504934699 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176648, 39.93031 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15732, 39.985822 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N MARVINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146836429845806, 40.007863333937301 ] } }, +{ "type": "Feature", "properties": { "location": "4600 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213645, 39.95545 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171387709049995, 39.925854598301697 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141305, 39.96538 ] } }, +{ "type": "Feature", "properties": { "location": "1800 JACKSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176880902379196, 39.9240259849634 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16868, 39.92857 ] } }, +{ "type": "Feature", "properties": { "location": "199 JAMESTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218525, 40.023627 ] } }, +{ "type": "Feature", "properties": { "location": "499 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197127, 39.961548 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196275, 39.957317 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192408, 39.95859 ] } }, +{ "type": "Feature", "properties": { "location": "6045 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057153895560702, 40.016568923897701 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15582, 39.92894 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164147, 39.939718 ] } }, +{ "type": "Feature", "properties": { "location": "1600 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169098, 39.943593 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170348, 39.94944 ] } }, +{ "type": "Feature", "properties": { "location": "6300 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229337034842004, 39.924330545924001 ] } }, +{ "type": "Feature", "properties": { "location": "2700 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178365972219098, 39.984433835098997 ] } }, +{ "type": "Feature", "properties": { "location": "3813 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197647, 39.960033 ] } }, +{ "type": "Feature", "properties": { "location": "1427 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16665, 39.943305 ] } }, +{ "type": "Feature", "properties": { "location": "1911 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176120743923605, 39.9362210772357 ] } }, +{ "type": "Feature", "properties": { "location": "5645 CHERRY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233911187056606, 39.963508269693797 ] } }, +{ "type": "Feature", "properties": { "location": "600 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155933, 39.926865 ] } }, +{ "type": "Feature", "properties": { "location": "5719 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236521577111006, 39.958320199861497 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SIMMS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234077, 39.926302 ] } }, +{ "type": "Feature", "properties": { "location": "424 N SICKELS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229061485178093, 39.967199097776003 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166048, 39.963768 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205268, 39.948447 ] } }, +{ "type": "Feature", "properties": { "location": "639 E RAYMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112056349455401, 40.017840758811801 ] } }, +{ "type": "Feature", "properties": { "location": "4265 N 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138641175281904, 40.016305550363001 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163288354647193, 39.972905150418597 ] } }, +{ "type": "Feature", "properties": { "location": "1625 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163288354647193, 39.972905150418597 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMITAGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229172, 40.032012 ] } }, +{ "type": "Feature", "properties": { "location": "1627 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163754556967206, 39.970079056239499 ] } }, +{ "type": "Feature", "properties": { "location": "1299 E FLETCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124493, 39.973435 ] } }, +{ "type": "Feature", "properties": { "location": "1524 PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162853, 39.930358 ] } }, +{ "type": "Feature", "properties": { "location": "10766 HEATHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.029315648378798, 40.113039384847497 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176415025889497, 39.964536757131597 ] } }, +{ "type": "Feature", "properties": { "location": "300 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146287, 39.954173 ] } }, +{ "type": "Feature", "properties": { "location": "200 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146143, 39.954193 ] } }, +{ "type": "Feature", "properties": { "location": "10772 HEATHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.029315648378798, 40.113039384847497 ] } }, +{ "type": "Feature", "properties": { "location": "4513 SILVERWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223763, 40.029797 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "1601 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "5200 DARRAH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.076577, 40.022053 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235943686351504, 39.975604926872499 ] } }, +{ "type": "Feature", "properties": { "location": "1700 TITAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172305, 39.935205 ] } }, +{ "type": "Feature", "properties": { "location": "1700 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172383, 39.935325 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156073, 39.97707 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17043, 39.926968 ] } }, +{ "type": "Feature", "properties": { "location": "845 ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114268, 39.996595 ] } }, +{ "type": "Feature", "properties": { "location": "425 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153375672391903, 39.926435117060798 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167862, 39.949902 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162885, 39.981903 ] } }, +{ "type": "Feature", "properties": { "location": "300 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "600 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147172, 39.967237 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 64TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.247797030224604, 39.967775423188499 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "200 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224462, 40.03026 ] } }, +{ "type": "Feature", "properties": { "location": "1600 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173233, 39.923615 ] } }, +{ "type": "Feature", "properties": { "location": "700 E PASSYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151252, 39.940053 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151398, 39.940005 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151295, 39.940053 ] } }, +{ "type": "Feature", "properties": { "location": "7516 OGONTZ AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157043397072002, 40.0695627241126 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15651, 39.960362 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134297, 39.97248 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "4400 SILVERWOOD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223173, 40.029095 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180814394467703, 39.942758722938201 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1703835841531, 39.929172567521299 ] } }, +{ "type": "Feature", "properties": { "location": "4500 LARDNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.058473, 40.02097 ] } }, +{ "type": "Feature", "properties": { "location": "900 W CHAMPLOST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135858, 40.043458 ] } }, +{ "type": "Feature", "properties": { "location": "4001 MANAYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213366440609505, 40.023299378073602 ] } }, +{ "type": "Feature", "properties": { "location": "OPPS 1939 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175425, 39.94156 ] } }, +{ "type": "Feature", "properties": { "location": "600 W VENANGO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139596635904098, 40.006116317430397 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154277, 40.003353 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CREASE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13271, 39.969587 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22523, 40.027017 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158297, 39.92371 ] } }, +{ "type": "Feature", "properties": { "location": "500 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152893, 39.934337 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155823, 39.940333 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155883, 39.940305 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N CROSKEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167869942702296, 39.998062219790299 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156268, 39.960217 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21463, 40.023943 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138858, 39.964428 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179374568862499, 39.924986499163502 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155788, 39.921403 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.20553, 39.952757 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155118, 39.948672 ] } }, +{ "type": "Feature", "properties": { "location": "3815 PEAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197817, 39.960008 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "4200 NEILSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.097210868694006, 40.0109499796554 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 38TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197668, 39.95742 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15645, 39.959768 ] } }, +{ "type": "Feature", "properties": { "location": "2227 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16804, 39.922123 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145877, 39.970248 ] } }, +{ "type": "Feature", "properties": { "location": "300 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144443, 39.961628 ] } }, +{ "type": "Feature", "properties": { "location": "1900 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176685091998607, 39.9336365728483 ] } }, +{ "type": "Feature", "properties": { "location": "1324 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168613, 39.93348 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "312 N 31ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188172, 39.961152 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129928, 39.973718 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151903171246701, 39.966261014450403 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218558, 40.023542 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178089557315005, 39.971246140363597 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178089557315005, 39.971246140363597 ] } }, +{ "type": "Feature", "properties": { "location": "649 DURFOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158316347686707, 39.919906204991698 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142443, 40.0396 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NEDRO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140968, 40.042585 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130917, 40.025515 ] } }, +{ "type": "Feature", "properties": { "location": "6500 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.047876995918401, 40.021360554403003 ] } }, +{ "type": "Feature", "properties": { "location": "6500 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.047876995918401, 40.021360554403003 ] } }, +{ "type": "Feature", "properties": { "location": "6040 ARCH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.242036793255494, 39.963735034849996 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162673, 39.964043 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182507815898106, 39.942707927609703 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16061, 39.936237 ] } }, +{ "type": "Feature", "properties": { "location": "2512 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178983278460194, 39.969596363820699 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195445, 39.950932 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S WARNOCK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161685, 39.933343 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081556458095605, 40.028352956663497 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163432, 39.950088 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160247, 39.920635 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 10TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15479, 39.960177 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W VENANGO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WILCOX ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169568, 39.964537 ] } }, +{ "type": "Feature", "properties": { "location": "701 EARP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156975665266302, 39.931979932627797 ] } }, +{ "type": "Feature", "properties": { "location": "700 EARP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156975665266302, 39.931979932627797 ] } }, +{ "type": "Feature", "properties": { "location": "6700 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238278047178198, 39.923771572903703 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170458, 39.949753 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176557, 39.92261 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176845, 39.921403 ] } }, +{ "type": "Feature", "properties": { "location": "710 S ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237962069280897, 39.949912412608001 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 60TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233866527260005, 39.935610661112896 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157887, 39.924903 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077832, 40.026422 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073767, 40.043413 ] } }, +{ "type": "Feature", "properties": { "location": "3915 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200937272394796, 39.96049119341 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15571, 39.928918 ] } }, +{ "type": "Feature", "properties": { "location": "300 W WELLENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130180988995207, 40.031163364334603 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NEW MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138855, 39.965033 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RUAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089007, 40.010205 ] } }, +{ "type": "Feature", "properties": { "location": "600 W THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14638, 39.97164 ] } }, +{ "type": "Feature", "properties": { "location": "3725 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159562, 39.916675 ] } }, +{ "type": "Feature", "properties": { "location": "500 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16431, 39.944047 ] } }, +{ "type": "Feature", "properties": { "location": "6825 DITMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044870698644502, 40.026644181120702 ] } }, +{ "type": "Feature", "properties": { "location": "3100 MERCER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.103472, 39.985168 ] } }, +{ "type": "Feature", "properties": { "location": "5500 PINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232629069529807, 39.954324106575598 ] } }, +{ "type": "Feature", "properties": { "location": "45 N MILLICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.24183, 39.963088 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141372, 39.96554 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1660690222364, 39.917512988560503 ] } }, +{ "type": "Feature", "properties": { "location": "400 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153375672391903, 39.926435117060798 ] } }, +{ "type": "Feature", "properties": { "location": "500 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "4000 CHANCELLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205123, 39.953715 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 29TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184117075838202, 39.971648513496099 ] } }, +{ "type": "Feature", "properties": { "location": "4600 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214150681328903, 39.955546089996098 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088495, 40.010767 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166272028734994, 39.951753267343001 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146275, 39.971628 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N STILLMAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171753622246001, 40.001631385765002 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 13TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162156545231994, 39.9488822580171 ] } }, +{ "type": "Feature", "properties": { "location": "3200 HAMILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189755, 39.96239 ] } }, +{ "type": "Feature", "properties": { "location": "4099 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204442, 39.959057 ] } }, +{ "type": "Feature", "properties": { "location": "604 AMERICAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146827, 39.941105 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WASHINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171097, 39.938492 ] } }, +{ "type": "Feature", "properties": { "location": "1606 CATHARINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169847, 39.941357 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167897, 39.940907 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150477, 39.982543 ] } }, +{ "type": "Feature", "properties": { "location": "112 W DUVAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184057866062602, 40.0425160462637 ] } }, +{ "type": "Feature", "properties": { "location": "4300 PECHIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215743069008198, 40.028984195871502 ] } }, +{ "type": "Feature", "properties": { "location": "858 E MADISON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114441199121401, 39.997491093904998 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170883, 39.92201 ] } }, +{ "type": "Feature", "properties": { "location": "900 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154403, 39.957645 ] } }, +{ "type": "Feature", "properties": { "location": "10600 COWDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.012860196107596, 40.101428496541203 ] } }, +{ "type": "Feature", "properties": { "location": "4513 SILVERWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223735, 40.02971 ] } }, +{ "type": "Feature", "properties": { "location": "900 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154363, 39.957723 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178890950877502, 39.997080498819898 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166588, 39.921502 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N FAIRHILL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137331893647996, 40.0113932669937 ] } }, +{ "type": "Feature", "properties": { "location": "500 W LUZERNE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136198231987507, 40.012026523666897 ] } }, +{ "type": "Feature", "properties": { "location": "300 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143748, 39.961677 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 40TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202273, 39.962243 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180814394467703, 39.942758722938201 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165436429543405, 39.968539401804399 ] } }, +{ "type": "Feature", "properties": { "location": "6129 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057137667735205, 40.0195514789499 ] } }, +{ "type": "Feature", "properties": { "location": "4200 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206418, 39.956928 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141928, 39.967733 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16419, 39.951062 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1588, 39.949477 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22822, 40.02848 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156223, 39.96123 ] } }, +{ "type": "Feature", "properties": { "location": "6100 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125911479585994, 40.043983907694198 ] } }, +{ "type": "Feature", "properties": { "location": "100 WENDOVER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217637, 40.023557 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090883, 40.007572 ] } }, +{ "type": "Feature", "properties": { "location": "1800 EYRE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132107, 39.976097 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228258, 40.02827 ] } }, +{ "type": "Feature", "properties": { "location": "228 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1264943359743, 39.9992864705073 ] } }, +{ "type": "Feature", "properties": { "location": "4500 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085872, 40.014375 ] } }, +{ "type": "Feature", "properties": { "location": "4500 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085822, 40.014405 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153237, 39.931062 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157202, 39.985982 ] } }, +{ "type": "Feature", "properties": { "location": "6800 PASCHALL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238028287658807, 39.9211161758017 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140354590774606, 39.994504961216897 ] } }, +{ "type": "Feature", "properties": { "location": "2034 S BUCKNELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185313465198902, 39.927018915684997 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134313, 39.972335 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168476260702406, 39.926226548238603 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132623, 39.975372 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173812, 39.966767 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149773, 39.939395 ] } }, +{ "type": "Feature", "properties": { "location": "4601 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214225, 39.953222 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205495, 39.95265 ] } }, +{ "type": "Feature", "properties": { "location": "6035 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242528097151407, 39.961386236577503 ] } }, +{ "type": "Feature", "properties": { "location": "2300 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17829, 39.953802 ] } }, +{ "type": "Feature", "properties": { "location": "2300 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17824, 39.95378 ] } }, +{ "type": "Feature", "properties": { "location": "2300 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178132, 39.953888 ] } }, +{ "type": "Feature", "properties": { "location": "2300 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178232, 39.95402 ] } }, +{ "type": "Feature", "properties": { "location": "3200 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129626806967195, 39.999408113953201 ] } }, +{ "type": "Feature", "properties": { "location": "5100 GRISCOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.079953, 40.022247 ] } }, +{ "type": "Feature", "properties": { "location": "100 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "2057 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176508, 39.94602 ] } }, +{ "type": "Feature", "properties": { "location": "3471 WEIKEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101853855160599, 39.993180355723297 ] } }, +{ "type": "Feature", "properties": { "location": "3700 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.196163, 39.959638 ] } }, +{ "type": "Feature", "properties": { "location": "3946 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142493253426693, 40.012049921577798 ] } }, +{ "type": "Feature", "properties": { "location": "1840 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173200106483705, 39.941307742404099 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166505, 39.94238 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.190989695875004, 39.958111337684798 ] } }, +{ "type": "Feature", "properties": { "location": "1400 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166428, 39.943358 ] } }, +{ "type": "Feature", "properties": { "location": "1200 GREEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158343, 39.963093 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155927, 39.921272 ] } }, +{ "type": "Feature", "properties": { "location": "4099 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204915139393194, 39.960149721442903 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156674626705396, 40.021758841285099 ] } }, +{ "type": "Feature", "properties": { "location": "329 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132413, 39.97304 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127298235565505, 39.995328587683701 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148003, 39.939602 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213008195965898, 40.021422669282302 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228247, 40.028365 ] } }, +{ "type": "Feature", "properties": { "location": "2100 MELVIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.239938778628698, 39.986091404028699 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070522, 40.046543 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224262, 40.026655 ] } }, +{ "type": "Feature", "properties": { "location": "1400 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169013, 39.931822 ] } }, +{ "type": "Feature", "properties": { "location": "2000 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176353, 39.946317 ] } }, +{ "type": "Feature", "properties": { "location": "2147 S 17TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174709757528206, 39.924151290174301 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160065, 39.983947 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170147, 39.949752 ] } }, +{ "type": "Feature", "properties": { "location": "1500 COTTMAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073605, 40.055458 ] } }, +{ "type": "Feature", "properties": { "location": "4300 PEARCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081090251053098, 40.0035494705172 ] } }, +{ "type": "Feature", "properties": { "location": "3951 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136681744966097, 40.0113145367051 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16426, 39.943863 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157282, 39.954598 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "3404 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "201 E ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126353200371696, 40.001331879509799 ] } }, +{ "type": "Feature", "properties": { "location": "2200 CAMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166985, 39.998722 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155388485861593, 39.959648400917096 ] } }, +{ "type": "Feature", "properties": { "location": "800 ALTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15705, 39.935362 ] } }, +{ "type": "Feature", "properties": { "location": "1916 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170172, 39.963603 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091435115645695, 40.033862090234599 ] } }, +{ "type": "Feature", "properties": { "location": "2000 TRENTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131678320839598, 39.979534936328399 ] } }, +{ "type": "Feature", "properties": { "location": "1600 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16919, 39.948345 ] } }, +{ "type": "Feature", "properties": { "location": "260 OSBORN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205827304579003, 40.019876168337198 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158530188708994, 39.924982097515397 ] } }, +{ "type": "Feature", "properties": { "location": "5001 SPRUCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22214, 39.954152 ] } }, +{ "type": "Feature", "properties": { "location": "1118 HALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161970577316396, 39.938892154075901 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218592, 40.023478 ] } }, +{ "type": "Feature", "properties": { "location": "2400 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180845, 39.944662 ] } }, +{ "type": "Feature", "properties": { "location": "4400 SILVERWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222578, 40.028203 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214398, 40.023767 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225745, 40.02956 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174838, 39.952212 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W PACIFIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152782, 40.008947 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156465, 39.959765 ] } }, +{ "type": "Feature", "properties": { "location": "4763 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112432334083493, 40.0208903230115 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N RINGGOLD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1708097638612, 39.998438675978299 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166797181182105, 39.956741061530899 ] } }, +{ "type": "Feature", "properties": { "location": "1300 LYCOMING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.10154, 40.009105 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127275, 39.976888 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CEDAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124722, 39.978212 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175368, 39.947138 ] } }, +{ "type": "Feature", "properties": { "location": "4608 N PENN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087062, 40.015898 ] } }, +{ "type": "Feature", "properties": { "location": "1 E RITTENHOUSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176412, 40.037895 ] } }, +{ "type": "Feature", "properties": { "location": "5400 PINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229225, 39.953898 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143332, 40.039673 ] } }, +{ "type": "Feature", "properties": { "location": "610 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15278, 39.942422 ] } }, +{ "type": "Feature", "properties": { "location": "300 PENSDALE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215160633489702, 40.0263734390021 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228367, 40.02854 ] } }, +{ "type": "Feature", "properties": { "location": "100 W ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128871815107402, 40.001659310920502 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134345, 39.972425 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158732075490207, 39.982669015578502 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129567653930195, 40.027278079625397 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155745, 39.959552 ] } }, +{ "type": "Feature", "properties": { "location": "4000 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202948, 39.960323 ] } }, +{ "type": "Feature", "properties": { "location": "500 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145439531803007, 39.970246914864198 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157863, 39.931592 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134297, 39.972393 ] } }, +{ "type": "Feature", "properties": { "location": "953 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141159806081106, 39.965922418697701 ] } }, +{ "type": "Feature", "properties": { "location": "500 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120778210986799, 39.997449826340002 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E CAYUGA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107072981184899, 40.014602834197497 ] } }, +{ "type": "Feature", "properties": { "location": "374 SHURS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213157677666501, 40.025161401443199 ] } }, +{ "type": "Feature", "properties": { "location": "2400 SERGEANT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.121177, 39.979978 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "2500 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177700838157406, 39.972459794486703 ] } }, +{ "type": "Feature", "properties": { "location": "7001 LYNFORD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068375558364394, 40.046742729013197 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "2700 N CROSKEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167967700637803, 39.996486482137399 ] } }, +{ "type": "Feature", "properties": { "location": "312 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188040170852204, 39.9608137965919 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N FELTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244370963723995, 39.974672494528903 ] } }, +{ "type": "Feature", "properties": { "location": "500 CARVER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102691913961394, 40.0407844103824 ] } }, +{ "type": "Feature", "properties": { "location": "7733 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.059788, 40.057833 ] } }, +{ "type": "Feature", "properties": { "location": "6600 LYNFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.072588, 40.042425 ] } }, +{ "type": "Feature", "properties": { "location": "5900 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240815, 39.961178 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160977, 39.958868 ] } }, +{ "type": "Feature", "properties": { "location": "2800 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191790982969195, 39.932236965269801 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172998, 39.950192 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JESSUP ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16043, 39.943925 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15554, 39.964332 ] } }, +{ "type": "Feature", "properties": { "location": "1926 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107642497030497, 39.996867406139998 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142793, 39.961342 ] } }, +{ "type": "Feature", "properties": { "location": "2023 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174697, 39.950502 ] } }, +{ "type": "Feature", "properties": { "location": "3400 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187076134954907, 39.998132024716902 ] } }, +{ "type": "Feature", "properties": { "location": "6000 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22868, 39.929987 ] } }, +{ "type": "Feature", "properties": { "location": "4026 ASPEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203678259624596, 39.966191288708899 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "4819 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "29 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "2015 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170723, 39.967257 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166843, 39.926938 ] } }, +{ "type": "Feature", "properties": { "location": "200 SUMAC ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205113441272601, 40.0190521319849 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169977, 39.952092 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155212, 39.948893 ] } }, +{ "type": "Feature", "properties": { "location": "300 VINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145347, 39.956008 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147795, 39.93154 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 73RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239642735041002, 39.912412461655002 ] } }, +{ "type": "Feature", "properties": { "location": "1238 BELMONT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212518751768499, 39.974353927562198 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224345, 40.02673 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151903171246701, 39.966261014450403 ] } }, +{ "type": "Feature", "properties": { "location": "300 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222537, 40.029482 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155917, 39.921298 ] } }, +{ "type": "Feature", "properties": { "location": "64 W ROCKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162396933371795, 40.027045323737802 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SUMMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160015, 39.957055 ] } }, +{ "type": "Feature", "properties": { "location": "640 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188957357716404, 39.965728329213299 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175679151162001, 39.965997186507302 ] } }, +{ "type": "Feature", "properties": { "location": "1000 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138105, 39.965683 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176207, 39.941728 ] } }, +{ "type": "Feature", "properties": { "location": "1400 E SUSQUEHANNA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126718, 39.975843 ] } }, +{ "type": "Feature", "properties": { "location": "1506 N UBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167095947507505, 39.977694735938897 ] } }, +{ "type": "Feature", "properties": { "location": "579 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "500 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180122, 39.921935 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROCKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13177, 40.025612 ] } }, +{ "type": "Feature", "properties": { "location": "810 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161874195192297, 39.916967174701 ] } }, +{ "type": "Feature", "properties": { "location": "7200 ALGARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.039020348969999, 40.033401445507202 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15641, 39.916293 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12953, 39.975942 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.089748, 40.00959 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S ISEMINGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168358, 39.917805 ] } }, +{ "type": "Feature", "properties": { "location": "1915 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173493, 39.947007 ] } }, +{ "type": "Feature", "properties": { "location": "1915 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173572, 39.946992 ] } }, +{ "type": "Feature", "properties": { "location": "1915 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173455, 39.946967 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153615, 39.928928 ] } }, +{ "type": "Feature", "properties": { "location": "6600 PASCHALL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234700453031294, 39.923460791059 ] } }, +{ "type": "Feature", "properties": { "location": "6700 PASCHALL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235947746142699, 39.922570376817198 ] } }, +{ "type": "Feature", "properties": { "location": "1527 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153578, 39.928985 ] } }, +{ "type": "Feature", "properties": { "location": "299 SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160153, 39.947568 ] } }, +{ "type": "Feature", "properties": { "location": "100 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176252, 39.951993 ] } }, +{ "type": "Feature", "properties": { "location": "7300 HILL RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227737158073097, 40.048969160634599 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152528, 39.942353 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16461, 39.937432 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W FISHER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146763, 40.033818 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135125, 39.972278 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N SHEDWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186193608031004, 40.003489579419899 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169269724172295, 39.928085368665201 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169269724172295, 39.928085368665201 ] } }, +{ "type": "Feature", "properties": { "location": "6450 OGONTZ AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149972502028106, 40.052801309301998 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16197, 39.963978 ] } }, +{ "type": "Feature", "properties": { "location": "4700 HAZEL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217830993623295, 39.950149293054103 ] } }, +{ "type": "Feature", "properties": { "location": "322 S 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159627, 39.945397 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193905, 39.957845 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156735, 39.960812 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S FRANKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159993, 39.919352 ] } }, +{ "type": "Feature", "properties": { "location": "1504 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159383, 39.976343 ] } }, +{ "type": "Feature", "properties": { "location": "4831 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "4300 WAYNE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157749776061394, 40.018552045343398 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 9TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153118, 39.960612 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155785, 39.92908 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RUAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089015, 40.009983 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15803, 39.924992 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17359, 39.944137 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162521567003196, 39.917694693465798 ] } }, +{ "type": "Feature", "properties": { "location": "3417 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19407, 39.950787 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WENSLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117861770118196, 39.999497995092298 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163338, 39.948408 ] } }, +{ "type": "Feature", "properties": { "location": "1400 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129943, 39.973853 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N FRONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133648, 39.97926 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 36TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193902, 39.957787 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134418, 39.972398 ] } }, +{ "type": "Feature", "properties": { "location": "1600 ARCH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167043, 39.954902 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1584, 39.921752 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167575, 39.918947 ] } }, +{ "type": "Feature", "properties": { "location": "5200 REINHARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219090395815101, 39.9396349275764 ] } }, +{ "type": "Feature", "properties": { "location": "6000 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241083990567006, 39.962000396657899 ] } }, +{ "type": "Feature", "properties": { "location": "6800 DICKS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231893643267199, 39.916783624691298 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163623, 39.95 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161392, 39.96445 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16134, 39.964547 ] } }, +{ "type": "Feature", "properties": { "location": "1600 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169317, 39.948295 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228267, 40.02837 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15385, 39.928927 ] } }, +{ "type": "Feature", "properties": { "location": "1430 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "3500 RYAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041437, 40.037793 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15681, 39.960953 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22049, 40.024795 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160798, 39.918142 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N 20TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158007596901399, 40.023204056288101 ] } }, +{ "type": "Feature", "properties": { "location": "6900 LARGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068909578499202, 40.045132154254603 ] } }, +{ "type": "Feature", "properties": { "location": "3469 E ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118515392339106, 40.001108238117901 ] } }, +{ "type": "Feature", "properties": { "location": "3468 CRYSTAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118014427427099, 40.001045983065403 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165165, 39.935345 ] } }, +{ "type": "Feature", "properties": { "location": "300 N ORIANNA ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145293, 39.955938 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167267, 39.926972 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S CLEVELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173565, 39.939892 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073775, 40.043372 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177028, 39.953615 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127893, 39.967393 ] } }, +{ "type": "Feature", "properties": { "location": "1 MASCHER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142678, 39.951407 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 6TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152458, 39.942028 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163683, 39.934783 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15572, 39.95965 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15332, 39.945535 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228093, 40.028232 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228127, 40.028207 ] } }, +{ "type": "Feature", "properties": { "location": "5900 CRYSTAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.106641383623199, 40.047085701380901 ] } }, +{ "type": "Feature", "properties": { "location": "200 HOWELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.106416551154197, 40.047784474725802 ] } }, +{ "type": "Feature", "properties": { "location": "727 E WOODLAWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164747526443506, 40.043820437475198 ] } }, +{ "type": "Feature", "properties": { "location": "336 S 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168153, 39.946395 ] } }, +{ "type": "Feature", "properties": { "location": "600 BRILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101953081320005, 40.0391123899295 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175402, 39.936123 ] } }, +{ "type": "Feature", "properties": { "location": "600 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156423238159604, 39.927220948577698 ] } }, +{ "type": "Feature", "properties": { "location": "600 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099698519485102, 40.0410411268061 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154933, 39.948865 ] } }, +{ "type": "Feature", "properties": { "location": "1218 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163437273571901, 39.939270976189697 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N DELAWARE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132728, 39.96571 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148435, 40.005658 ] } }, +{ "type": "Feature", "properties": { "location": "4409 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224395, 40.026858 ] } }, +{ "type": "Feature", "properties": { "location": "1519 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W CABOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1663508153664, 39.973704263833497 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140908, 40.039378 ] } }, +{ "type": "Feature", "properties": { "location": "6500 HARLAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.249449800739995, 39.973245995012299 ] } }, +{ "type": "Feature", "properties": { "location": "800 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181900742187693, 39.970805606270901 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153422, 39.933683 ] } }, +{ "type": "Feature", "properties": { "location": "3100 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187973, 39.9639 ] } }, +{ "type": "Feature", "properties": { "location": "400 DURFOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154874097386497, 39.9194664364557 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CHURCHVIEW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216745, 40.025048 ] } }, +{ "type": "Feature", "properties": { "location": "200 SOUTH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146205717998797, 39.941246973428498 ] } }, +{ "type": "Feature", "properties": { "location": "900 N PENN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134993, 39.96269 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150858, 40.00459 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173263, 39.925648 ] } }, +{ "type": "Feature", "properties": { "location": "1802 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17035, 39.951817 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151377, 40.00293 ] } }, +{ "type": "Feature", "properties": { "location": "900 N PENN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135002, 39.96278 ] } }, +{ "type": "Feature", "properties": { "location": "100 BREAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143962, 39.953278 ] } }, +{ "type": "Feature", "properties": { "location": "400 VINE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147322, 39.956208 ] } }, +{ "type": "Feature", "properties": { "location": "500 E RUSCOMB ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115482629452003, 40.024989613328501 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193003, 39.957138 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1929, 39.956897 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W SOMERVILLE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145763, 40.035217 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FAIRDALE RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -74.9722834087694, 40.083374780497302 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144978, 39.97017 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129605, 39.976012 ] } }, +{ "type": "Feature", "properties": { "location": "149 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215023, 40.02191 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176763, 39.945587 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176858, 39.945603 ] } }, +{ "type": "Feature", "properties": { "location": "1300 AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140072, 39.971408 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CHELTEN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143718724590002, 40.0507561344129 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175192, 39.926505 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15876, 39.920442 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129573, 39.975803 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129648, 39.975975 ] } }, +{ "type": "Feature", "properties": { "location": "4700 C ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11823, 40.020783 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228082, 40.028315 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ROSEBERRY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176935, 39.920653 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17456, 39.953002 ] } }, +{ "type": "Feature", "properties": { "location": "2300 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178205, 39.953258 ] } }, +{ "type": "Feature", "properties": { "location": "1615 JACKSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174004328939901, 39.923663756129599 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156495, 39.960133 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 52ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226599173253206, 39.951735494692002 ] } }, +{ "type": "Feature", "properties": { "location": "2300 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175857, 39.967825 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "2064 PICKWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099535089900897, 39.998453397460104 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162925, 39.982148 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14167, 40.03941 ] } }, +{ "type": "Feature", "properties": { "location": "6744 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140968, 40.056592 ] } }, +{ "type": "Feature", "properties": { "location": "6700 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141041647769001, 40.055917865519298 ] } }, +{ "type": "Feature", "properties": { "location": "1 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134082, 39.97297 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N BAMBREY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172877640847204, 39.9987095357938 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155318, 39.95966 ] } }, +{ "type": "Feature", "properties": { "location": "416 SNYDER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154256173660102, 39.922394143043199 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155527, 39.927013 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155687, 39.927183 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164152, 39.94325 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N MARSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177209458298904, 39.992925884062501 ] } }, +{ "type": "Feature", "properties": { "location": "200 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150095, 39.921813 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155833, 39.92129 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155852, 39.92129 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155848, 39.921303 ] } }, +{ "type": "Feature", "properties": { "location": "600 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15695, 39.921443 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156072, 39.921313 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177942293124204, 39.9370298333655 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159465, 39.97616 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159417, 39.976187 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159415, 39.976243 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15945, 39.97642 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159297, 39.976712 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159318, 39.976723 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16405, 39.932373 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206265, 39.954298 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153543, 39.929368 ] } }, +{ "type": "Feature", "properties": { "location": "907 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177923752527704, 39.940727776745703 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 67TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2378427961238, 39.924571000137803 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153587, 39.929313 ] } }, +{ "type": "Feature", "properties": { "location": "500 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146623, 39.966822 ] } }, +{ "type": "Feature", "properties": { "location": "500 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145658, 39.971543 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162098, 39.927112 ] } }, +{ "type": "Feature", "properties": { "location": "5800 LORETTO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.086180589551901, 40.033061558853497 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086218, 40.013758 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15547, 39.984512 ] } }, +{ "type": "Feature", "properties": { "location": "1200 HALE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081497116701897, 40.039177606872101 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079037, 40.025052 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170981421266603, 39.926427034672301 ] } }, +{ "type": "Feature", "properties": { "location": "611 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173240089075804, 39.930896151650501 ] } }, +{ "type": "Feature", "properties": { "location": "1 APSLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160613334666493, 40.0246686213112 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155578, 39.92133 ] } }, +{ "type": "Feature", "properties": { "location": "3901 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.199993, 39.960542 ] } }, +{ "type": "Feature", "properties": { "location": "3620 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195378, 39.9534 ] } }, +{ "type": "Feature", "properties": { "location": "500 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155745258905995, 39.923039893692 ] } }, +{ "type": "Feature", "properties": { "location": "3180 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187475, 39.953732 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155597, 39.92936 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163747, 39.934072 ] } }, +{ "type": "Feature", "properties": { "location": "1400 ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141998, 39.972757 ] } }, +{ "type": "Feature", "properties": { "location": "1400 ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142005, 39.97274 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134307, 39.972425 ] } }, +{ "type": "Feature", "properties": { "location": "400 GIRARD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145043, 39.970253 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179377, 39.941942 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174883, 39.953032 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.962922 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179802, 39.973572 ] } }, +{ "type": "Feature", "properties": { "location": "200 HIGBEE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104877687808496, 40.048435673475097 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16742, 39.954432 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167173, 39.954245 ] } }, +{ "type": "Feature", "properties": { "location": "3100 W CUMBERLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182737203127999, 39.994403651361502 ] } }, +{ "type": "Feature", "properties": { "location": "714 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170855, 39.944912 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147822, 39.940315 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147772, 39.940145 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15555, 39.959555 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234334356912299, 39.926551786869403 ] } }, +{ "type": "Feature", "properties": { "location": "6600 LORETTO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.076360610243597, 40.042982489634198 ] } }, +{ "type": "Feature", "properties": { "location": "2700 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175481259077003, 39.996888638528198 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159392, 39.976345 ] } }, +{ "type": "Feature", "properties": { "location": "1500 LARDNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077558639952699, 40.0344540415023 ] } }, +{ "type": "Feature", "properties": { "location": "805 S HUTCHINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158525, 39.939577 ] } }, +{ "type": "Feature", "properties": { "location": "7600 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.06072, 40.057047 ] } }, +{ "type": "Feature", "properties": { "location": "418 N REDFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238050918327005, 39.968609104568799 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155773, 39.92131 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129597, 39.97296 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 6TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148783, 39.958187 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MARGARET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.083388, 40.016648 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MASCHER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136133, 39.975817 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "1700 TULIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131018, 39.975722 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214613238467905, 40.028512966070998 ] } }, +{ "type": "Feature", "properties": { "location": "113 DEVEREAUX AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102918147449998, 40.0509788557085 ] } }, +{ "type": "Feature", "properties": { "location": "2600 SWAIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180153267268295, 39.969861432137797 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "100 MANHEIM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1673254840738, 40.028259431388697 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "4000 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203432, 39.963912 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1700685563127, 40.002994439038702 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225542, 40.027107 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14003, 39.952318 ] } }, +{ "type": "Feature", "properties": { "location": "2937 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116919607773994, 39.990054468485297 ] } }, +{ "type": "Feature", "properties": { "location": "300 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142425, 39.969108 ] } }, +{ "type": "Feature", "properties": { "location": "500 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155745258905995, 39.923039893692 ] } }, +{ "type": "Feature", "properties": { "location": "900 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.112347983604806, 39.9995160672891 ] } }, +{ "type": "Feature", "properties": { "location": "3000 BOUDINOT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122780117495907, 39.995102822920899 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S ROSEWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171079097928299, 39.921359153899601 ] } }, +{ "type": "Feature", "properties": { "location": "400 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131258, 39.97341 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "4099 FILBERT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203522, 39.958227 ] } }, +{ "type": "Feature", "properties": { "location": "801 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160187255647998, 39.968033989591703 ] } }, +{ "type": "Feature", "properties": { "location": "900 N PENN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135145, 39.962463 ] } }, +{ "type": "Feature", "properties": { "location": "900 N PENN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135077, 39.962713 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134372, 39.972345 ] } }, +{ "type": "Feature", "properties": { "location": "533 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502227031296, 39.933105053217403 ] } }, +{ "type": "Feature", "properties": { "location": "OPP3815 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197747, 39.959992 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176078, 39.953008 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176142, 39.953333 ] } }, +{ "type": "Feature", "properties": { "location": "4740 MERIDIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.027962010602593, 40.032894661117197 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193843, 39.95781 ] } }, +{ "type": "Feature", "properties": { "location": "2200 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183666817427294, 39.925712211200803 ] } }, +{ "type": "Feature", "properties": { "location": "1700 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170527, 39.946645 ] } }, +{ "type": "Feature", "properties": { "location": "700 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159087, 39.965627 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225602, 39.972308 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168207, 39.921587 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16885, 39.91787 ] } }, +{ "type": "Feature", "properties": { "location": "1400 DEVEREAUX AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.078794604423095, 40.036331197339003 ] } }, +{ "type": "Feature", "properties": { "location": "4230 CHESTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208059527264993, 39.948435881178298 ] } }, +{ "type": "Feature", "properties": { "location": "1331 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164627, 39.943997 ] } }, +{ "type": "Feature", "properties": { "location": "3500 ENGLEWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.04316, 40.03711 ] } }, +{ "type": "Feature", "properties": { "location": "3500 ENGLEWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043188, 40.037192 ] } }, +{ "type": "Feature", "properties": { "location": "3826 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142275727650997, 40.010491049648799 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175395, 39.93613 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174062, 39.93591 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LONGSHORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064727, 40.041835 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 18TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168022, 39.963182 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "120 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134717676315404, 39.980335588919601 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154975, 39.991648 ] } }, +{ "type": "Feature", "properties": { "location": "1200 LOCUST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161558, 39.947868 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228258, 40.028377 ] } }, +{ "type": "Feature", "properties": { "location": "4300 SILVERWOOD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221803, 40.02728 ] } }, +{ "type": "Feature", "properties": { "location": "330 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188056889150701, 40.0402060406388 ] } }, +{ "type": "Feature", "properties": { "location": "800 MARCELLA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.093053068065998, 40.0315505431292 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142821154925102, 40.010562233606002 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167128, 39.940548 ] } }, +{ "type": "Feature", "properties": { "location": "300 VINE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144325, 39.955902 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 22ND ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177282, 39.951747 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "1300 AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140032, 39.971243 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1565507450659, 39.960561960651198 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127520391343793, 40.003642017451597 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224443, 40.026953 ] } }, +{ "type": "Feature", "properties": { "location": "1402 WHARTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16789, 39.934162 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16029, 39.942048 ] } }, +{ "type": "Feature", "properties": { "location": "500 CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137653, 39.959192 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.091582, 40.00848 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090983, 40.00741 ] } }, +{ "type": "Feature", "properties": { "location": "4000 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091023, 40.007205 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086338, 40.015148 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARCH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08615, 40.013727 ] } }, +{ "type": "Feature", "properties": { "location": "5051 F ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.109946972817397, 40.026948201178001 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181051182569703, 39.941664478312198 ] } }, +{ "type": "Feature", "properties": { "location": "1241 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165652, 39.931768 ] } }, +{ "type": "Feature", "properties": { "location": "1241 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165623, 39.931772 ] } }, +{ "type": "Feature", "properties": { "location": "1247 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165715, 39.931828 ] } }, +{ "type": "Feature", "properties": { "location": "1241 S 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16574, 39.931842 ] } }, +{ "type": "Feature", "properties": { "location": "700 W LUZERNE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139805652945995, 40.012496844980497 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164135, 39.94342 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142335, 39.97012 ] } }, +{ "type": "Feature", "properties": { "location": "406 S 23RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179285, 39.947043 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1396512492949, 40.011697459397503 ] } }, +{ "type": "Feature", "properties": { "location": "2260 RUFFNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166315488031501, 40.011524398684003 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17088, 39.927025 ] } }, +{ "type": "Feature", "properties": { "location": "900 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089113493495404, 40.033841531766797 ] } }, +{ "type": "Feature", "properties": { "location": "2700 PARRISH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181348365320005, 39.971651771260802 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101742, 40.00843 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163388, 39.943942 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15891, 39.97815 ] } }, +{ "type": "Feature", "properties": { "location": "39 N RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227810083005593, 39.961165788692199 ] } }, +{ "type": "Feature", "properties": { "location": "3100 POTTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114924971536098, 39.996205261446804 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155218, 39.959627 ] } }, +{ "type": "Feature", "properties": { "location": "200 LINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1252341452102, 40.041518434815799 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138533395585995, 40.027285036913902 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176463, 39.969913 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155528, 39.927073 ] } }, +{ "type": "Feature", "properties": { "location": "400 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153972, 39.927323 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.20533, 39.948492 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 42ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206182, 39.955362 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 62ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.247093578635301, 39.951044245873597 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15267, 39.940253 ] } }, +{ "type": "Feature", "properties": { "location": "6000 HAWTHORNE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065683851320898, 40.025450873710398 ] } }, +{ "type": "Feature", "properties": { "location": "634 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153298, 39.942482 ] } }, +{ "type": "Feature", "properties": { "location": "500 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104902207422697, 40.041363709164202 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134008, 39.972463 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086453, 40.013948 ] } }, +{ "type": "Feature", "properties": { "location": "431 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202987447586494, 39.960949236462199 ] } }, +{ "type": "Feature", "properties": { "location": "1099 JOHNSTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1656, 39.914635 ] } }, +{ "type": "Feature", "properties": { "location": "2100 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180714040635095, 39.931632540768 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156203, 39.961172 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "2500 ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105125, 39.986983 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E DAUPHIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125962, 39.977593 ] } }, +{ "type": "Feature", "properties": { "location": "1900 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165579398929395, 39.982791744325603 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ELLSWORTH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173295, 39.937615 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152008, 39.949973 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160692, 39.958542 ] } }, +{ "type": "Feature", "properties": { "location": "634 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153343, 39.942543 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155638, 39.92137 ] } }, +{ "type": "Feature", "properties": { "location": "5528 HUNTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233378451247702, 39.977471969970303 ] } }, +{ "type": "Feature", "properties": { "location": "501 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15831, 39.962825 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W HARPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185113, 39.974375 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164152, 39.964887 ] } }, +{ "type": "Feature", "properties": { "location": "438 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1543505694506, 39.921919685602901 ] } }, +{ "type": "Feature", "properties": { "location": "1500 STONEY LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.044882459920998, 40.083737844062497 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 16TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168682, 39.944387 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19242, 39.957287 ] } }, +{ "type": "Feature", "properties": { "location": "1330 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164592, 39.944113 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163915, 39.981043 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166775, 39.945347 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163963, 39.919723 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214112, 40.023445 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168883, 39.918423 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W FISHER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142245, 40.033263 ] } }, +{ "type": "Feature", "properties": { "location": "500 W LUZERNE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136198231987507, 40.012026523666897 ] } }, +{ "type": "Feature", "properties": { "location": "5200 DARRAH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.076722, 40.022037 ] } }, +{ "type": "Feature", "properties": { "location": "1800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176432, 39.923962 ] } }, +{ "type": "Feature", "properties": { "location": "4900 ORMES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118984155091198, 40.024568377173601 ] } }, +{ "type": "Feature", "properties": { "location": "3300 E ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118951350200106, 39.999064794878599 ] } }, +{ "type": "Feature", "properties": { "location": "3500 WARREN ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191863, 39.95675 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228162, 40.028305 ] } }, +{ "type": "Feature", "properties": { "location": "899 N BUCKNELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175628, 39.970948 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166132, 39.923033 ] } }, +{ "type": "Feature", "properties": { "location": "1030 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128353717844206, 39.969326904356599 ] } }, +{ "type": "Feature", "properties": { "location": "253 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "5700 CHARLES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068283297670703, 40.0223232312199 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14365, 39.960408 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14273, 39.961303 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158168, 39.923747 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16062, 39.95931 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152936829495303, 39.935681033067901 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152936829495303, 39.935681033067901 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152936829495303, 39.935681033067901 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090757, 40.007685 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140508, 39.954095 ] } }, +{ "type": "Feature", "properties": { "location": "800 PERKIOMEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165726939386602, 39.968874308498499 ] } }, +{ "type": "Feature", "properties": { "location": "200 BURNSIDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216840518923902, 40.023360763331297 ] } }, +{ "type": "Feature", "properties": { "location": "400 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151930129375302, 39.932893846230201 ] } }, +{ "type": "Feature", "properties": { "location": "700 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148645, 39.971802 ] } }, +{ "type": "Feature", "properties": { "location": "26 N YEWDALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229074391941097, 39.961320764846398 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18005, 39.921982 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127520391343793, 40.003642017451597 ] } }, +{ "type": "Feature", "properties": { "location": "5300 REINHARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220459404589107, 39.938675671415801 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069383, 40.046497 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S CECIL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228635075555999, 39.9365864545656 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S ROSEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170912, 39.922232 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E EYRE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1289636395461, 39.973316444922702 ] } }, +{ "type": "Feature", "properties": { "location": "300 E INDIANA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125693361915495, 39.9949131545753 ] } }, +{ "type": "Feature", "properties": { "location": "6129 WAYNE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185843972933, 40.035769223824197 ] } }, +{ "type": "Feature", "properties": { "location": "5400 THOMAS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230686975734997, 39.945825744648701 ] } }, +{ "type": "Feature", "properties": { "location": "1 S ROBINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244102357559498, 39.961977842896999 ] } }, +{ "type": "Feature", "properties": { "location": "2800 OGDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183446605690506, 39.972549559747399 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124144188884202, 40.040619243780696 ] } }, +{ "type": "Feature", "properties": { "location": "100 DAWSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21179, 40.019252 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177437, 39.95399 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147949822434299, 40.028356093410103 ] } }, +{ "type": "Feature", "properties": { "location": "601 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151729468672599, 39.948559004160501 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171025, 39.93879 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1826912513027, 39.9418637544034 ] } }, +{ "type": "Feature", "properties": { "location": "500 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15126, 39.944373 ] } }, +{ "type": "Feature", "properties": { "location": "1300 STIRLING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078312, 40.038718 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "1618 MOUNT VERNON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164842, 39.964935 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173675, 39.928607 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234334356912299, 39.926551786869403 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161507, 39.958518 ] } }, +{ "type": "Feature", "properties": { "location": "3517 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132160933349098, 40.004096245522199 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WEYMOUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115922137075401, 40.000779003129097 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126188235286605, 40.000543253065203 ] } }, +{ "type": "Feature", "properties": { "location": "4800 RORER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114553469862898, 40.022871308627899 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137034253157495, 40.006601533872697 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137034253157495, 40.006601533872697 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PAGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175413416799302, 39.986064295279597 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "6429 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.248685002484393, 39.970796415365299 ] } }, +{ "type": "Feature", "properties": { "location": "5700 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234779806555906, 39.9694959115117 ] } }, +{ "type": "Feature", "properties": { "location": "10730 GIFFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.024964787473493, 40.111674395098703 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221836951648896, 40.0255767713804 ] } }, +{ "type": "Feature", "properties": { "location": "200 JAMESTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217074341489095, 40.024658029235297 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N COLORADO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153937220334996, 40.021787234766499 ] } }, +{ "type": "Feature", "properties": { "location": "5630 HAZEL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2356442116875, 39.952591630431002 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16924, 39.921748 ] } }, +{ "type": "Feature", "properties": { "location": "100 LINTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.121281541949102, 40.041020404649601 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142821154925102, 40.010562233606002 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126188235286605, 40.000543253065203 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126188235286605, 40.000543253065203 ] } }, +{ "type": "Feature", "properties": { "location": "900 N HANCOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139792816663899, 39.9644031373114 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1700685563127, 40.002994439038702 ] } }, +{ "type": "Feature", "properties": { "location": "3146 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1700685563127, 40.002994439038702 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191112, 39.960803 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163288354647193, 39.972905150418597 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FRALEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064564938326498, 40.0105521783182 ] } }, +{ "type": "Feature", "properties": { "location": "500 RUSCOMB ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132688, 40.027385 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 36TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193658, 39.958748 ] } }, +{ "type": "Feature", "properties": { "location": "4511 SILVERWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22369, 40.029685 ] } }, +{ "type": "Feature", "properties": { "location": "2100 WINDRIM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159602, 40.0223 ] } }, +{ "type": "Feature", "properties": { "location": "4200 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206478, 39.956913 ] } }, +{ "type": "Feature", "properties": { "location": "6801 GUYER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231966479437006, 39.916001945501797 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168198, 39.939663 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168058, 39.939688 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191443324436705, 39.963213814021799 ] } }, +{ "type": "Feature", "properties": { "location": "809 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238925750023895, 39.9480870781859 ] } }, +{ "type": "Feature", "properties": { "location": "4200 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206712, 39.954773 ] } }, +{ "type": "Feature", "properties": { "location": "5300 AKRON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080072934634501, 40.026558922588499 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CRESSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219445, 40.024065 ] } }, +{ "type": "Feature", "properties": { "location": "608 S CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159943, 39.942642 ] } }, +{ "type": "Feature", "properties": { "location": "5136 SHELDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161376441088805, 40.0342012052459 ] } }, +{ "type": "Feature", "properties": { "location": "1712 S 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171892, 39.929385 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171897, 39.92933 ] } }, +{ "type": "Feature", "properties": { "location": "721 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171025, 39.944393 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108681669775905, 39.998047076844301 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178465, 39.968155 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PIKE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.095883, 40.00475 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143978, 39.969788 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149762, 39.94578 ] } }, +{ "type": "Feature", "properties": { "location": "7012 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "3500 POWELTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193718, 39.9598 ] } }, +{ "type": "Feature", "properties": { "location": "800 N UBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168870127754005, 39.9695373923334 ] } }, +{ "type": "Feature", "properties": { "location": "3872 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.200358952770799, 39.973111595115903 ] } }, +{ "type": "Feature", "properties": { "location": "3400 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187076134954907, 39.998132024716902 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "701 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "400 CHRISTIAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151768, 39.937297 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155672, 39.92974 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "5500 WESTMINSTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230394456851698, 39.967614641455498 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152462, 39.942383 ] } }, +{ "type": "Feature", "properties": { "location": "617 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139241261315107, 40.007702724037003 ] } }, +{ "type": "Feature", "properties": { "location": "6028 SUMMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.240428965863202, 39.965953184986603 ] } }, +{ "type": "Feature", "properties": { "location": "517 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164225, 39.944127 ] } }, +{ "type": "Feature", "properties": { "location": "12000 ELMORE RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.974104499280102, 40.086125853591803 ] } }, +{ "type": "Feature", "properties": { "location": "3451 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194205, 39.952963 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MASCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135208, 39.980285 ] } }, +{ "type": "Feature", "properties": { "location": "6800 PASCHALL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238028287658807, 39.9211161758017 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154155, 39.946043 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "3900 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202122, 39.960443 ] } }, +{ "type": "Feature", "properties": { "location": "1215 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178707577151897, 39.9371542065687 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123912, 39.972705 ] } }, +{ "type": "Feature", "properties": { "location": "2519 MEREDITH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179246934559202, 39.968403499901598 ] } }, +{ "type": "Feature", "properties": { "location": "814 LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 23RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178607, 39.950952 ] } }, +{ "type": "Feature", "properties": { "location": "2500 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177463, 39.972535 ] } }, +{ "type": "Feature", "properties": { "location": "900 S WATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144348, 39.935245 ] } }, +{ "type": "Feature", "properties": { "location": "7200 N 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147413543908101, 40.064101277140303 ] } }, +{ "type": "Feature", "properties": { "location": "300 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2202, 40.028945 ] } }, +{ "type": "Feature", "properties": { "location": "900 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162015, 39.927142 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "1900 CHRISTIAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17578, 39.941275 ] } }, +{ "type": "Feature", "properties": { "location": "400 S HUTCHINSON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157562, 39.944013 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1552, 39.959675 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173432, 39.948492 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160298, 39.958495 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108779703617003, 39.996269105585199 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158457, 39.921557 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176955474311001, 39.921255350811101 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155987, 39.95446 ] } }, +{ "type": "Feature", "properties": { "location": "1550 CHELTENHAM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.079677, 40.028843 ] } }, +{ "type": "Feature", "properties": { "location": "499 N 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157345, 39.926567 ] } }, +{ "type": "Feature", "properties": { "location": "700 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157737, 39.925288 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1574, 39.926585 ] } }, +{ "type": "Feature", "properties": { "location": "700 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157793, 39.925315 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168062, 39.943602 ] } }, +{ "type": "Feature", "properties": { "location": "500 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "401 S 40TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "640 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156241458550298, 39.928063370512 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "1341 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167485, 39.93167 ] } }, +{ "type": "Feature", "properties": { "location": "300 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220602, 40.03304 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228295, 40.028362 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228289459865294, 40.028513298887397 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166546132553705, 40.000302273051403 ] } }, +{ "type": "Feature", "properties": { "location": "432 GASKILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150322, 39.942393 ] } }, +{ "type": "Feature", "properties": { "location": "5800 MALVERN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238832737451006, 39.987447427215997 ] } }, +{ "type": "Feature", "properties": { "location": "2800 S ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165589043426607, 39.914072457367702 ] } }, +{ "type": "Feature", "properties": { "location": "100 LAUREL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138018, 39.965095 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "2071 MARTHA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130756884455394, 39.980713988991802 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16697, 39.942512 ] } }, +{ "type": "Feature", "properties": { "location": "8000 LEONARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.047249841395896, 40.0578361089647 ] } }, +{ "type": "Feature", "properties": { "location": "100 CHURCHVIEW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216845, 40.025015 ] } }, +{ "type": "Feature", "properties": { "location": "3332 ARGYLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111819206454001, 39.998691024209499 ] } }, +{ "type": "Feature", "properties": { "location": "5300 WAYNE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1730666403963, 40.0283701181217 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134335, 39.972245 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228312, 40.02854 ] } }, +{ "type": "Feature", "properties": { "location": "3300 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192307, 39.96337 ] } }, +{ "type": "Feature", "properties": { "location": "UNTI W RITTENHOUSE PL", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176428, 40.037712 ] } }, +{ "type": "Feature", "properties": { "location": "3701 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196045, 39.957247 ] } }, +{ "type": "Feature", "properties": { "location": "1527 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15355, 39.929025 ] } }, +{ "type": "Feature", "properties": { "location": "1529 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153628, 39.928825 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145312, 39.972713 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N JESSUP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150314453202299, 39.990994469581601 ] } }, +{ "type": "Feature", "properties": { "location": "493 AVON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.028684130202294, 40.1143135920654 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WENSLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117861770118196, 39.999497995092298 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 36TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193503, 39.958713 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16401, 39.930877 ] } }, +{ "type": "Feature", "properties": { "location": "1312 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16377, 39.944032 ] } }, +{ "type": "Feature", "properties": { "location": "1312 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16374, 39.943985 ] } }, +{ "type": "Feature", "properties": { "location": "1312 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16369, 39.944193 ] } }, +{ "type": "Feature", "properties": { "location": "1312 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163762, 39.943888 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "5100 HARLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225439196084395, 39.9749508517287 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SNYDER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173892, 39.924845 ] } }, +{ "type": "Feature", "properties": { "location": "5600 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233205972979505, 39.961022009453799 ] } }, +{ "type": "Feature", "properties": { "location": "5800 LEBANON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.237857244979693, 39.986221826733001 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159228, 39.963087 ] } }, +{ "type": "Feature", "properties": { "location": "5717 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236975665258996, 39.955958059107502 ] } }, +{ "type": "Feature", "properties": { "location": "900 W NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14848, 39.982142 ] } }, +{ "type": "Feature", "properties": { "location": "3416 JASPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107194937561403, 39.997808866668301 ] } }, +{ "type": "Feature", "properties": { "location": "3418 JASPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107194937561403, 39.997808866668301 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178455, 39.968173 ] } }, +{ "type": "Feature", "properties": { "location": "500 N ALLISON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231422933208705, 39.9682102076072 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153292, 39.942518 ] } }, +{ "type": "Feature", "properties": { "location": "400 W ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135909319146506, 40.0025723984796 ] } }, +{ "type": "Feature", "properties": { "location": "800 N RINGGOLD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176921855419295, 39.970529308227199 ] } }, +{ "type": "Feature", "properties": { "location": "3400 G ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114727701512393, 40.0001050493116 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155262, 39.984467 ] } }, +{ "type": "Feature", "properties": { "location": "300 W WYOMING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132645, 40.022618 ] } }, +{ "type": "Feature", "properties": { "location": "2200 E ANN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113308283918599, 39.988494028853701 ] } }, +{ "type": "Feature", "properties": { "location": "5815 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237797053108295, 39.961594144211503 ] } }, +{ "type": "Feature", "properties": { "location": "255 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "1206 S MARKOE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210831781832795, 39.944502287732398 ] } }, +{ "type": "Feature", "properties": { "location": "700 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151232, 39.964568 ] } }, +{ "type": "Feature", "properties": { "location": "6900 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069553888271102, 40.045501910334401 ] } }, +{ "type": "Feature", "properties": { "location": "5425 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231141416693006, 39.978447410406197 ] } }, +{ "type": "Feature", "properties": { "location": "5100 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223971756978401, 39.975909031621697 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09084, 40.00755 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153192, 39.93811 ] } }, +{ "type": "Feature", "properties": { "location": "100 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216097, 40.023485 ] } }, +{ "type": "Feature", "properties": { "location": "7200 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.036389218332303, 40.030285109192 ] } }, +{ "type": "Feature", "properties": { "location": "2013 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17328, 39.925792 ] } }, +{ "type": "Feature", "properties": { "location": "654 W CLEARFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142212075032305, 39.998583303289003 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21443, 40.023873 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228307, 40.028592 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BACH PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16551, 39.947407 ] } }, +{ "type": "Feature", "properties": { "location": "5319 W THOMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228275118201694, 39.972728474650403 ] } }, +{ "type": "Feature", "properties": { "location": "5321 W THOMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228275118201694, 39.972728474650403 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172557, 39.926027 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15559, 39.929392 ] } }, +{ "type": "Feature", "properties": { "location": "5701 N MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132799543974897, 40.039119032726703 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MEMPHIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129577, 39.975942 ] } }, +{ "type": "Feature", "properties": { "location": "400 E THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13121, 39.971752 ] } }, +{ "type": "Feature", "properties": { "location": "600 ANCHOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100624372943301, 40.040243907613302 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090732, 40.006565 ] } }, +{ "type": "Feature", "properties": { "location": "1400 E BRISTOL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.097945, 40.01184 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132675, 40.026308 ] } }, +{ "type": "Feature", "properties": { "location": "100 W LOUDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124447, 40.023195 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224337, 40.026822 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "5400 DISCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080774113352902, 40.028712277559798 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142852, 39.963422 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155338, 39.959688 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155272, 39.959725 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179707, 39.97383 ] } }, +{ "type": "Feature", "properties": { "location": "5000 S 18TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181486214888906, 39.888305782264197 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15351, 39.933615 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168487, 39.94921 ] } }, +{ "type": "Feature", "properties": { "location": "6100 UPLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232114107009593, 39.929870028078298 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N LAWRENCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138429279785001, 39.995793276745701 ] } }, +{ "type": "Feature", "properties": { "location": "1415 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169566088287397, 39.9293849728071 ] } }, +{ "type": "Feature", "properties": { "location": "100 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149947916850905, 39.9179971260616 ] } }, +{ "type": "Feature", "properties": { "location": "2238 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115613211185604, 39.994967777718799 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228307, 40.028365 ] } }, +{ "type": "Feature", "properties": { "location": "400 PASSMORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.094643, 40.05069 ] } }, +{ "type": "Feature", "properties": { "location": "200 S SYDENHAM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166497, 39.948875 ] } }, +{ "type": "Feature", "properties": { "location": "1300 NECTARINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159752, 39.961545 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "199 COTTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22213, 40.025732 ] } }, +{ "type": "Feature", "properties": { "location": "1741 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16202, 39.927162 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.20487, 39.955182 ] } }, +{ "type": "Feature", "properties": { "location": "1618 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16499, 39.96507 ] } }, +{ "type": "Feature", "properties": { "location": "6300 MCCALLUM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183408978402198, 40.041256798496903 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14792, 39.939483 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N ALDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235378510760398, 39.9725949334318 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N 20TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153853561167196, 40.044136714674501 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22643, 40.027797 ] } }, +{ "type": "Feature", "properties": { "location": "2401 MILAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244532778302101, 39.912929496851604 ] } }, +{ "type": "Feature", "properties": { "location": "400 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164128, 39.950685 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226392, 40.02775 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088587, 40.010798 ] } }, +{ "type": "Feature", "properties": { "location": "4500 SPRINGFIELD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212835, 39.948782 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N ORIANNA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142607, 39.967702 ] } }, +{ "type": "Feature", "properties": { "location": "1600 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174658, 39.92383 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154783, 39.929508 ] } }, +{ "type": "Feature", "properties": { "location": "400 ASHDALE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132217, 40.02802 ] } }, +{ "type": "Feature", "properties": { "location": "2000 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17485, 39.94823 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163418, 39.921103 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155887287248703, 40.010498899529097 ] } }, +{ "type": "Feature", "properties": { "location": "700 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159065, 39.96584 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 40TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20204, 39.956413 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159263, 39.97711 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167842, 39.917773 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12311, 39.973843 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 61ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241036943089, 39.971658241436998 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.110428, 39.998005 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161853, 39.942758 ] } }, +{ "type": "Feature", "properties": { "location": "1500 E PALMER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132683, 39.97515 ] } }, +{ "type": "Feature", "properties": { "location": "1500 E PALMER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132632, 39.975202 ] } }, +{ "type": "Feature", "properties": { "location": "1599 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131998, 39.975107 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "6618 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235898990721395, 39.9244707588648 ] } }, +{ "type": "Feature", "properties": { "location": "600 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139333, 39.96105 ] } }, +{ "type": "Feature", "properties": { "location": "600 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139312, 39.961042 ] } }, +{ "type": "Feature", "properties": { "location": "500 DELANCEY ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150245, 39.944212 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153945060507994, 39.982820771933397 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166747, 39.950455 ] } }, +{ "type": "Feature", "properties": { "location": "3900 WARREN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202223, 39.962115 ] } }, +{ "type": "Feature", "properties": { "location": "3401 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192913, 39.956803 ] } }, +{ "type": "Feature", "properties": { "location": "6600 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235898990721395, 39.9244707588648 ] } }, +{ "type": "Feature", "properties": { "location": "2228 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160658, 39.921248 ] } }, +{ "type": "Feature", "properties": { "location": "500 SHUNK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156675014976798, 39.916299874743999 ] } }, +{ "type": "Feature", "properties": { "location": "500 SHUNK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156675014976798, 39.916299874743999 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165222, 39.919922 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158585, 39.923752 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159153, 39.923772 ] } }, +{ "type": "Feature", "properties": { "location": "608 GREENWICH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155753, 39.929707 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176447, 39.952643 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207359579717505, 39.965130317609699 ] } }, +{ "type": "Feature", "properties": { "location": "249 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205532, 39.95266 ] } }, +{ "type": "Feature", "properties": { "location": "249 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205545, 39.952652 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091045, 40.007217 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170187, 39.94241 ] } }, +{ "type": "Feature", "properties": { "location": "4045 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203847, 39.956505 ] } }, +{ "type": "Feature", "properties": { "location": "3149 AGATE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108267911109607, 39.988675081499103 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156868, 39.928133 ] } }, +{ "type": "Feature", "properties": { "location": "7500 CALVERT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.052909493776198, 40.049634451862502 ] } }, +{ "type": "Feature", "properties": { "location": "1307 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163818, 39.942948 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172658, 39.941307 ] } }, +{ "type": "Feature", "properties": { "location": "5500 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221483757451395, 39.935572419389999 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086292, 40.015083 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159882, 39.984562 ] } }, +{ "type": "Feature", "properties": { "location": "961 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152092, 39.936022 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171033, 39.925915 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CASTOR AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.097788, 40.011973 ] } }, +{ "type": "Feature", "properties": { "location": "268 W THAYER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134455147388806, 40.001968784047499 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.089658, 40.009565 ] } }, +{ "type": "Feature", "properties": { "location": "400 S HUTCHINSON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157547, 39.944207 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226393, 40.027742 ] } }, +{ "type": "Feature", "properties": { "location": "6000 ARCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242392, 39.96373 ] } }, +{ "type": "Feature", "properties": { "location": "1625 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163288354647193, 39.972905150418597 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235120007146406, 39.971185535528598 ] } }, +{ "type": "Feature", "properties": { "location": "1216 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235120007146406, 39.971185535528598 ] } }, +{ "type": "Feature", "properties": { "location": "3700 MANAYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209124571647394, 40.017687462798698 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182611070365994, 39.970891215557899 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207185306650004, 39.950823448642197 ] } }, +{ "type": "Feature", "properties": { "location": "300 HORTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242916403362202, 39.967743580342898 ] } }, +{ "type": "Feature", "properties": { "location": "300 HORTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242916403362202, 39.967743580342898 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158732075490207, 39.982669015578502 ] } }, +{ "type": "Feature", "properties": { "location": "6300 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125218198729002, 40.047157087917199 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225135, 40.026207 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157288, 39.934002 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169269724172295, 39.928085368665201 ] } }, +{ "type": "Feature", "properties": { "location": "3750 CRESSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212784684631004, 40.018356957214301 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163377, 39.921048 ] } }, +{ "type": "Feature", "properties": { "location": "6300 REEDLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228907420803395, 39.923982412725103 ] } }, +{ "type": "Feature", "properties": { "location": "439 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202987447586494, 39.960949236462199 ] } }, +{ "type": "Feature", "properties": { "location": "437 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202987447586494, 39.960949236462199 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15605, 39.921368 ] } }, +{ "type": "Feature", "properties": { "location": "600 N WATTS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160167, 39.964995 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WALLACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160227, 39.965082 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152275, 40.005115 ] } }, +{ "type": "Feature", "properties": { "location": "6900 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041516578602398, 40.024651696613297 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 33RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189325687589502, 39.959588722317797 ] } }, +{ "type": "Feature", "properties": { "location": "1 N REDFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239210668241796, 39.962997115516302 ] } }, +{ "type": "Feature", "properties": { "location": "5437 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.230815505942999, 39.973751889827099 ] } }, +{ "type": "Feature", "properties": { "location": "6700 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238278047178198, 39.923771572903703 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181325803098304, 39.928825307017803 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 63RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228887226671304, 39.925009362716899 ] } }, +{ "type": "Feature", "properties": { "location": "6700 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231751826874103, 39.919045028464197 ] } }, +{ "type": "Feature", "properties": { "location": "2600 LLOYD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239114630505796, 39.912783617979898 ] } }, +{ "type": "Feature", "properties": { "location": "600 OREGON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158767, 39.915258 ] } }, +{ "type": "Feature", "properties": { "location": "1519 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171367051396004, 39.928359284627099 ] } }, +{ "type": "Feature", "properties": { "location": "2800 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182921119383096, 39.9707133235908 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "600 DUDLEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157059144940206, 39.924417722975299 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GUYER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.230382381546093, 39.917111764473503 ] } }, +{ "type": "Feature", "properties": { "location": "6700 YOCUM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238278047178198, 39.923771572903703 ] } }, +{ "type": "Feature", "properties": { "location": "6700 YOCUM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238278047178198, 39.923771572903703 ] } }, +{ "type": "Feature", "properties": { "location": "100 W LOUDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12454, 40.02322 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W OXFORD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154755183038304, 39.976833462946701 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N SYDENHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160500305150094, 39.978300283642703 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162156545231994, 39.9488822580171 ] } }, +{ "type": "Feature", "properties": { "location": "200 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961776704595, 40.0318986600317 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "2105 E BIRCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115439259171794, 39.988517308487502 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "426 E ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.121994000926307, 39.997604232696901 ] } }, +{ "type": "Feature", "properties": { "location": "5800 NEWTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.108403787764999, 40.045804538852501 ] } }, +{ "type": "Feature", "properties": { "location": "27 N RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227810083005593, 39.961165788692199 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227018414596103, 39.942084266968202 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169523, 39.940868 ] } }, +{ "type": "Feature", "properties": { "location": "500 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147377, 39.95791 ] } }, +{ "type": "Feature", "properties": { "location": "400 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "401 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "510 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139819654032806, 40.028991984989702 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144955217431601, 40.0277240135878 ] } }, +{ "type": "Feature", "properties": { "location": "400 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153253, 39.92351 ] } }, +{ "type": "Feature", "properties": { "location": "1920 COLONIAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150812099973507, 40.052545414712398 ] } }, +{ "type": "Feature", "properties": { "location": "700 S JESSUP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161021210395504, 39.9417047506318 ] } }, +{ "type": "Feature", "properties": { "location": "2227 S DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1611554005421, 39.921367054069499 ] } }, +{ "type": "Feature", "properties": { "location": "2229 S DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1611554005421, 39.921367054069499 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165952465918807, 39.971734483319302 ] } }, +{ "type": "Feature", "properties": { "location": "1127 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161886411962897, 39.939083824858699 ] } }, +{ "type": "Feature", "properties": { "location": "1223 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163437273571901, 39.939270976189697 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N UBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164802956522905, 39.988212584550197 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174468659911597, 39.998915883237302 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134335, 39.972683 ] } }, +{ "type": "Feature", "properties": { "location": "200 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215082, 40.02398 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 9TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153462, 39.95881 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W LETTERLY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156583733221495, 39.990651166530498 ] } }, +{ "type": "Feature", "properties": { "location": "2600 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179316285193295, 39.972663577942598 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161970851488803, 39.9807846433824 ] } }, +{ "type": "Feature", "properties": { "location": "1314 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235378510760398, 39.9725949334318 ] } }, +{ "type": "Feature", "properties": { "location": "226 N HOBART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237320189141499, 39.965490709786202 ] } }, +{ "type": "Feature", "properties": { "location": "11 N RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227810083005593, 39.961165788692199 ] } }, +{ "type": "Feature", "properties": { "location": "1 N RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227810083005593, 39.961165788692199 ] } }, +{ "type": "Feature", "properties": { "location": "100 N PEACH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227002220419806, 39.962657412244702 ] } }, +{ "type": "Feature", "properties": { "location": "6700 LEEDS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.254565239951106, 39.975033297803897 ] } }, +{ "type": "Feature", "properties": { "location": "6600 LEBANON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.252656964798504, 39.976557805130703 ] } }, +{ "type": "Feature", "properties": { "location": "6219 HARBISON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.062490358385503, 40.028301788699999 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SEARS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179926768635696, 39.935303896537498 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "181 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "2300 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178715, 39.952868 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127298235565505, 39.995328587683701 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "1620 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164153397583902, 39.967866122955101 ] } }, +{ "type": "Feature", "properties": { "location": "600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15732, 39.920298 ] } }, +{ "type": "Feature", "properties": { "location": "537 N 58TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235561457517605, 39.969614564026699 ] } }, +{ "type": "Feature", "properties": { "location": "100 BURNSIDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217128, 40.023138 ] } }, +{ "type": "Feature", "properties": { "location": "4300 TOWER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220092, 40.02638 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227968, 40.028283 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227993, 40.028242 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228105, 40.028373 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22624, 40.027677 ] } }, +{ "type": "Feature", "properties": { "location": "1413 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169018329613905, 39.929306198693098 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172381888351893, 39.969933675077201 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140865, 40.039355 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 37TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195157, 39.958655 ] } }, +{ "type": "Feature", "properties": { "location": "306 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147965, 39.941753 ] } }, +{ "type": "Feature", "properties": { "location": "4000 SANSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203117, 39.954763 ] } }, +{ "type": "Feature", "properties": { "location": "200 THOMAS PAINE PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145647, 39.946508 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160898, 39.95923 ] } }, +{ "type": "Feature", "properties": { "location": "748 S ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238116483201097, 39.949150555030599 ] } }, +{ "type": "Feature", "properties": { "location": "6700 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231751826874103, 39.919045028464197 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13072, 39.972813 ] } }, +{ "type": "Feature", "properties": { "location": "200 HIGBEE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104877687808496, 40.048435673475097 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ANNIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173458, 39.937152 ] } }, +{ "type": "Feature", "properties": { "location": "303 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "5218 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123335973799001, 40.029641144396997 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W COURTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151869567448699, 40.0234346995558 ] } }, +{ "type": "Feature", "properties": { "location": "5901 MASCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122681412358702, 40.0404360663426 ] } }, +{ "type": "Feature", "properties": { "location": "500 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128072516438607, 39.970966561063697 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "633 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157059144940206, 39.924417722975299 ] } }, +{ "type": "Feature", "properties": { "location": "1931 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 65TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234110114612804, 39.925386693465697 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 65TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234110114612804, 39.925386693465697 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 65TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234110114612804, 39.925386693465697 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S JUNIPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16738, 39.930473 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211595, 39.955978 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215058, 39.953257 ] } }, +{ "type": "Feature", "properties": { "location": "1200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159003, 39.963117 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "1900 W OLNEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152878, 40.039365 ] } }, +{ "type": "Feature", "properties": { "location": "500 W ERIE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137355174587398, 40.007457919026002 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164330246081505, 39.981092571123398 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 41ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204452, 39.95608 ] } }, +{ "type": "Feature", "properties": { "location": "819 KIMBALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157504636330501, 39.936878859473602 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151813, 39.941507 ] } }, +{ "type": "Feature", "properties": { "location": "6800 TORRESDALE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043388, 40.025952 ] } }, +{ "type": "Feature", "properties": { "location": "2000 TULIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129495, 39.978067 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 51ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224971543796599, 39.9498352353 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179132230931899, 39.930616330392603 ] } }, +{ "type": "Feature", "properties": { "location": "4563 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079211527489406, 40.005890612097403 ] } }, +{ "type": "Feature", "properties": { "location": "2000 BRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071377901302796, 40.015698311252798 ] } }, +{ "type": "Feature", "properties": { "location": "9340 JAMISON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041870312275506, 40.085113831834498 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S NORWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181829831924603, 39.925303560144499 ] } }, +{ "type": "Feature", "properties": { "location": "140 N DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242920393407701, 39.964625138066602 ] } }, +{ "type": "Feature", "properties": { "location": "1507 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157280799023496, 39.929656719960299 ] } }, +{ "type": "Feature", "properties": { "location": "2200 REESE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156102, 39.920158 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S MILDRED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161498653227994, 39.917556712142598 ] } }, +{ "type": "Feature", "properties": { "location": "200 E TABOR RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.119958279617606, 40.031126103846802 ] } }, +{ "type": "Feature", "properties": { "location": "200 E TABOR RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.119958279617606, 40.031126103846802 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225992799238, 39.927020613403698 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152408083751197, 39.978750620479502 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1398325087372, 39.957321124916703 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147949822434299, 40.028356093410103 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S CLEVELAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188167134195, 39.9319880793742 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S CLEVELAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188167134195, 39.9319880793742 ] } }, +{ "type": "Feature", "properties": { "location": "2542 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237293441597501, 39.916219986919103 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 65TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228689375698806, 39.920823425027599 ] } }, +{ "type": "Feature", "properties": { "location": "2100 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181964940636007, 39.923404880830802 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182818, 39.95716 ] } }, +{ "type": "Feature", "properties": { "location": "5528 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233231575905705, 39.980106379940203 ] } }, +{ "type": "Feature", "properties": { "location": "5528 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233231575905705, 39.980106379940203 ] } }, +{ "type": "Feature", "properties": { "location": "5528 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233231575905705, 39.980106379940203 ] } }, +{ "type": "Feature", "properties": { "location": "1870 N 27TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178367884285507, 39.983667870678197 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151903171246701, 39.966261014450403 ] } }, +{ "type": "Feature", "properties": { "location": "2600 FOLSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180233830101201, 39.9694981314355 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "1139 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157455, 39.962368 ] } }, +{ "type": "Feature", "properties": { "location": "300 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142863, 39.961208 ] } }, +{ "type": "Feature", "properties": { "location": "2000 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179555, 39.924443 ] } }, +{ "type": "Feature", "properties": { "location": "2915 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179697470601496, 39.997187258763198 ] } }, +{ "type": "Feature", "properties": { "location": "2200 E ANN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113308283918599, 39.988494028853701 ] } }, +{ "type": "Feature", "properties": { "location": "4600 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14803, 40.023703 ] } }, +{ "type": "Feature", "properties": { "location": "5200 COTTAGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070555692516393, 40.017244760076899 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205282, 39.948445 ] } }, +{ "type": "Feature", "properties": { "location": "3400 REACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1152831300316, 40.000689465926001 ] } }, +{ "type": "Feature", "properties": { "location": "1934 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170213, 39.965625 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160773, 39.959385 ] } }, +{ "type": "Feature", "properties": { "location": "1 MEEHAN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.186868, 40.054613 ] } }, +{ "type": "Feature", "properties": { "location": "5255 ADDISON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227423621354006, 39.952657294360698 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191743, 39.957545 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N REESE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136055476295695, 40.014344838483602 ] } }, +{ "type": "Feature", "properties": { "location": "1700 UNRUH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.069724461493806, 40.040868402272402 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073465, 40.0437 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142322, 40.039463 ] } }, +{ "type": "Feature", "properties": { "location": "3100 BOUDINOT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122408056293594, 39.996839443013798 ] } }, +{ "type": "Feature", "properties": { "location": "400 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146325, 39.96486 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CHURCHVIEW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21916, 40.025583 ] } }, +{ "type": "Feature", "properties": { "location": "6218 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227625596527005, 39.924901286655498 ] } }, +{ "type": "Feature", "properties": { "location": "4200 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089437, 40.01013 ] } }, +{ "type": "Feature", "properties": { "location": "900 DUDLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161032, 39.92496 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134285, 39.972405 ] } }, +{ "type": "Feature", "properties": { "location": "6442 CHELWYNDE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227404158794599, 39.920691487607897 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 31ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187484284391502, 39.963650314962599 ] } }, +{ "type": "Feature", "properties": { "location": "7708 OGONTZ AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157515111898306, 40.071169761940403 ] } }, +{ "type": "Feature", "properties": { "location": "6900 E WISTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157427703667494, 40.057502197256603 ] } }, +{ "type": "Feature", "properties": { "location": "5100 LENA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164215587395006, 40.031545474903901 ] } }, +{ "type": "Feature", "properties": { "location": "224 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162407902534397, 40.032409377693597 ] } }, +{ "type": "Feature", "properties": { "location": "2642 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317923606129, 39.917938822517002 ] } }, +{ "type": "Feature", "properties": { "location": "6600 PASCHALL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234700453031294, 39.923460791059 ] } }, +{ "type": "Feature", "properties": { "location": "600 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118095923580299, 40.001848406580002 ] } }, +{ "type": "Feature", "properties": { "location": "870 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "4200 N 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139923284371804, 40.016480225708101 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149452888609204, 40.009023130776399 ] } }, +{ "type": "Feature", "properties": { "location": "1 APSLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160613334666493, 40.0246686213112 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 59TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237863046152995, 39.972319213451598 ] } }, +{ "type": "Feature", "properties": { "location": "700 W RAYMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138232436361406, 40.021144023588903 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N WATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127546363347193, 40.000721437153203 ] } }, +{ "type": "Feature", "properties": { "location": "3435 REACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1152831300316, 40.000689465926001 ] } }, +{ "type": "Feature", "properties": { "location": "3435 REACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1152831300316, 40.000689465926001 ] } }, +{ "type": "Feature", "properties": { "location": "1734 N 61ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242213284052696, 39.977957951726701 ] } }, +{ "type": "Feature", "properties": { "location": "1353 N ALDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235378510760398, 39.9725949334318 ] } }, +{ "type": "Feature", "properties": { "location": "5716 HUNTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "5400 W THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229510337848893, 39.972591946780398 ] } }, +{ "type": "Feature", "properties": { "location": "200 N SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.249132547219006, 39.966953620790399 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N FELTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244265073578006, 39.9730740991834 ] } }, +{ "type": "Feature", "properties": { "location": "5230 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127713595637005, 40.030312754005699 ] } }, +{ "type": "Feature", "properties": { "location": "3500 F ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116359496554594, 40.001850470204701 ] } }, +{ "type": "Feature", "properties": { "location": "4400 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209438, 39.957275 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155918, 39.918668 ] } }, +{ "type": "Feature", "properties": { "location": "4800 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213036217856697, 39.941671901016697 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153685, 39.960525 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E COLUMBIA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130888, 39.971137 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223943, 40.028428 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228053, 40.02834 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155627, 39.959442 ] } }, +{ "type": "Feature", "properties": { "location": "100 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139158, 39.961393 ] } }, +{ "type": "Feature", "properties": { "location": "7000 GROVERS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2336957404153, 39.913649756351397 ] } }, +{ "type": "Feature", "properties": { "location": "600 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152377, 39.944325 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S PATTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1966175478492, 39.935992207895602 ] } }, +{ "type": "Feature", "properties": { "location": "3100 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.195967271617207, 39.935284314338901 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134283, 39.972365 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134433, 39.972222 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175123, 39.947823 ] } }, +{ "type": "Feature", "properties": { "location": "2300 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.10927, 39.98773 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154775, 39.929598 ] } }, +{ "type": "Feature", "properties": { "location": "2531 N SPANGLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1861980127386, 39.995229048273899 ] } }, +{ "type": "Feature", "properties": { "location": "165 N DEWEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.242920393407701, 39.964625138066602 ] } }, +{ "type": "Feature", "properties": { "location": "5440 MALCOLM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2297731851111, 39.944406311984601 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 19TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173523, 39.944167 ] } }, +{ "type": "Feature", "properties": { "location": "6300 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229337034842004, 39.924330545924001 ] } }, +{ "type": "Feature", "properties": { "location": "3300 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191445, 39.955245 ] } }, +{ "type": "Feature", "properties": { "location": "921 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156513, 39.937812 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225412, 40.027027 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1603, 39.942143 ] } }, +{ "type": "Feature", "properties": { "location": "60 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164298523013301, 40.030578741590404 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090918, 40.007063 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHANCELLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223905, 39.955923 ] } }, +{ "type": "Feature", "properties": { "location": "6500 HAWTHORNE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057728, 40.032125 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149452, 39.932988 ] } }, +{ "type": "Feature", "properties": { "location": "6700 RUTLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072947, 40.042787 ] } }, +{ "type": "Feature", "properties": { "location": "6700 RUTLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.072454617014998, 40.043343221884101 ] } }, +{ "type": "Feature", "properties": { "location": "3100 RUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115007045035895, 39.995025697998699 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139177002057096, 39.956835552057697 ] } }, +{ "type": "Feature", "properties": { "location": "2200 NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129903, 39.978303 ] } }, +{ "type": "Feature", "properties": { "location": "3222 W OXFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187431816910703, 39.981059058667299 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173185, 39.95468 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179672, 39.973885 ] } }, +{ "type": "Feature", "properties": { "location": "4300 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217352, 40.028285 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "4300 SHELMIRE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.034088176936805, 40.035952357313199 ] } }, +{ "type": "Feature", "properties": { "location": "1700 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17233, 39.935328 ] } }, +{ "type": "Feature", "properties": { "location": "4200 N PENN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.092127, 40.01029 ] } }, +{ "type": "Feature", "properties": { "location": "4511 N 19TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156346957061103, 40.023245894636801 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086527, 40.014025 ] } }, +{ "type": "Feature", "properties": { "location": "1000 GERMANTOWN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138702, 39.966382 ] } }, +{ "type": "Feature", "properties": { "location": "4222 COTTMAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.038834201370307, 40.034617304641699 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WELLS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077170394985401, 40.043764521458897 ] } }, +{ "type": "Feature", "properties": { "location": "921 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15651, 39.937793 ] } }, +{ "type": "Feature", "properties": { "location": "200 S SYDENHAM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16682, 39.94919 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1351 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "700 GAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12682, 39.975867 ] } }, +{ "type": "Feature", "properties": { "location": "625 E RAYMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112056349455401, 40.017840758811801 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1399 W VENANGO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151323, 40.007417 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160099296902004, 39.983849577512302 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14247, 39.969107 ] } }, +{ "type": "Feature", "properties": { "location": "300 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22025, 40.028945 ] } }, +{ "type": "Feature", "properties": { "location": "300 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220227, 40.028855 ] } }, +{ "type": "Feature", "properties": { "location": "300 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219956696157595, 40.029184889785903 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205703, 39.953275 ] } }, +{ "type": "Feature", "properties": { "location": "3300 CHERRY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190408, 39.9583 ] } }, +{ "type": "Feature", "properties": { "location": "3300 CHERRY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190372, 39.958408 ] } }, +{ "type": "Feature", "properties": { "location": "3320 POWELTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190307, 39.960478 ] } }, +{ "type": "Feature", "properties": { "location": "3300 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190328, 39.958368 ] } }, +{ "type": "Feature", "properties": { "location": "7000 KEYSTONE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.036532, 40.025273 ] } }, +{ "type": "Feature", "properties": { "location": "400 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216318, 40.03185 ] } }, +{ "type": "Feature", "properties": { "location": "2615 S 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174438844538102, 39.917930164913699 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086333, 40.013878 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MONUMENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163072, 39.982722 ] } }, +{ "type": "Feature", "properties": { "location": "400 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153375672391903, 39.926435117060798 ] } }, +{ "type": "Feature", "properties": { "location": "1799 TULIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130699883277103, 39.975975990867703 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160553, 39.959508 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BENNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079933470051401, 40.035129605483299 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "800 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157897, 39.93496 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15417, 39.933585 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237293441597501, 39.916219986919103 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153798, 39.929102 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PRESTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203812, 39.960262 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166635, 39.953597 ] } }, +{ "type": "Feature", "properties": { "location": "198 ROSELYN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122938193073097, 40.042310174034199 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16337, 39.983457 ] } }, +{ "type": "Feature", "properties": { "location": "100 TITAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146192, 39.931745 ] } }, +{ "type": "Feature", "properties": { "location": "1700 TULIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131126079558996, 39.975234589916298 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129613, 39.975917 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156742, 39.936792 ] } }, +{ "type": "Feature", "properties": { "location": "1016 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156653, 39.936787 ] } }, +{ "type": "Feature", "properties": { "location": "900 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153875, 39.960145 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173975, 39.927463 ] } }, +{ "type": "Feature", "properties": { "location": "6551 REEDLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231448128764299, 39.922188881787797 ] } }, +{ "type": "Feature", "properties": { "location": "1629 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163754556967206, 39.970079056239499 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108779703617003, 39.996269105585199 ] } }, +{ "type": "Feature", "properties": { "location": "200 N RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227231493430494, 39.964240264940003 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086198, 40.013788 ] } }, +{ "type": "Feature", "properties": { "location": "214 LINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1252341452102, 40.041518434815799 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170327, 39.921453 ] } }, +{ "type": "Feature", "properties": { "location": "5500 LAURENS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1826, 40.027808 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WANAMAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236663605210296, 39.965408757388403 ] } }, +{ "type": "Feature", "properties": { "location": "1218 S RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224320820992503, 39.941633137796799 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LENOX AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151783, 40.008292 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 51ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223543, 39.956048 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14337, 40.039592 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14087, 40.039402 ] } }, +{ "type": "Feature", "properties": { "location": "1514 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16759, 39.94428 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N AMERICAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140512, 39.969 ] } }, +{ "type": "Feature", "properties": { "location": "6800 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071284629810194, 40.044584488144402 ] } }, +{ "type": "Feature", "properties": { "location": "300 W SEYMOUR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169651164339399, 40.023299693965299 ] } }, +{ "type": "Feature", "properties": { "location": "9300 NEIL RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.043093581883198, 40.085036880182798 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 61ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225992799238, 39.927020613403698 ] } }, +{ "type": "Feature", "properties": { "location": "600 N WATTS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160118, 39.965047 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149888, 40.009633 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15256, 39.942377 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163313, 39.967102 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159968, 39.958395 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170511155214996, 39.936005638948302 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1656, 39.91878 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165535, 39.918797 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.196974736556001, 39.959720908865201 ] } }, +{ "type": "Feature", "properties": { "location": "3000 RUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116698396863796, 39.994059493709898 ] } }, +{ "type": "Feature", "properties": { "location": "3100 RUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115007045035895, 39.995025697998699 ] } }, +{ "type": "Feature", "properties": { "location": "2100 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174187, 39.962533 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159492, 39.924778 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15374, 39.928707 ] } }, +{ "type": "Feature", "properties": { "location": "1923 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "300 W WELLENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130180988995207, 40.031163364334603 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156423, 39.960357 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212837, 39.955337 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157733, 39.925213 ] } }, +{ "type": "Feature", "properties": { "location": "500 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148593, 39.958127 ] } }, +{ "type": "Feature", "properties": { "location": "200 E ELEANOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120960227366297, 40.023502219994199 ] } }, +{ "type": "Feature", "properties": { "location": "3738 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143160572971993, 40.0090212659629 ] } }, +{ "type": "Feature", "properties": { "location": "1472 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S CHADWICK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174158, 39.92371 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189927, 39.954563 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N SYDENHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160693, 39.977832 ] } }, +{ "type": "Feature", "properties": { "location": "500 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152978, 39.932207 ] } }, +{ "type": "Feature", "properties": { "location": "5500 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139755, 40.037103 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "501 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155948, 39.921358 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159483, 39.923947 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160775, 39.958732 ] } }, +{ "type": "Feature", "properties": { "location": "512 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155752, 39.921342 ] } }, +{ "type": "Feature", "properties": { "location": "501 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155757, 39.921385 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160062, 39.920507 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S PENN SQ", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163983, 39.952333 ] } }, +{ "type": "Feature", "properties": { "location": "2058 S REDFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228431665606294, 39.932759208621199 ] } }, +{ "type": "Feature", "properties": { "location": "600 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147213, 39.967208 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1540 ADAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091688353491705, 40.0087003376673 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156178461314695, 39.957776657981 ] } }, +{ "type": "Feature", "properties": { "location": "4600 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085453, 40.014722 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 29TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180972650467396, 39.986064063690698 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164143, 39.943298 ] } }, +{ "type": "Feature", "properties": { "location": "1941 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15576, 39.928998 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "1700 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173642, 39.935883 ] } }, +{ "type": "Feature", "properties": { "location": "1299 S 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177062136984603, 39.935610089766897 ] } }, +{ "type": "Feature", "properties": { "location": "300 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14851, 39.940603 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128472, 39.967128 ] } }, +{ "type": "Feature", "properties": { "location": "2238 RUFFNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166315488031501, 40.011524398684003 ] } }, +{ "type": "Feature", "properties": { "location": "300 E WILLIAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126085894905501, 39.993058070968203 ] } }, +{ "type": "Feature", "properties": { "location": "800 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "872 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "872 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "251 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142687, 39.955332 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "5700 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237167968744203, 39.977461788746801 ] } }, +{ "type": "Feature", "properties": { "location": "5723 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237167968744203, 39.977461788746801 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 63RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228887226671304, 39.925009362716899 ] } }, +{ "type": "Feature", "properties": { "location": "100 E CLEARFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129343677754903, 39.996921583508097 ] } }, +{ "type": "Feature", "properties": { "location": "1500 LATONA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1698673520592, 39.935253223220997 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15579, 39.928953 ] } }, +{ "type": "Feature", "properties": { "location": "900 MARLBOROUGH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130705, 39.96763 ] } }, +{ "type": "Feature", "properties": { "location": "200 DAWSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211678, 40.019268 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141612, 39.968968 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 40TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202033, 39.954872 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159948, 39.958152 ] } }, +{ "type": "Feature", "properties": { "location": "300 BURNSIDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214049194712203, 40.024916876614697 ] } }, +{ "type": "Feature", "properties": { "location": "150 N SALFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239601391036004, 39.964212624702 ] } }, +{ "type": "Feature", "properties": { "location": "2830 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181356619555601, 39.953041053563197 ] } }, +{ "type": "Feature", "properties": { "location": "3399 PARK PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150975, 40.004547 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OLD YORK RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146403, 40.027602 ] } }, +{ "type": "Feature", "properties": { "location": "800 ORIANNA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143695, 39.963575 ] } }, +{ "type": "Feature", "properties": { "location": "809 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238925750023895, 39.9480870781859 ] } }, +{ "type": "Feature", "properties": { "location": "1200 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163612, 39.94249 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 52ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22456, 39.961677 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177037, 39.953557 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MONTEREY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "600 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117794328362294, 39.999825298996598 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CLARISSA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158401604657399, 40.016873303669001 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163453, 39.96249 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161, 39.968907 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N LAWRENCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132373, 40.024463 ] } }, +{ "type": "Feature", "properties": { "location": "6560 LEBANON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.251917397346105, 39.9770259390598 ] } }, +{ "type": "Feature", "properties": { "location": "700 MONTROSE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156397, 39.937918 ] } }, +{ "type": "Feature", "properties": { "location": "6500 GLENMORE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232792966578799, 39.923318525425003 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174070073437704, 39.930786988212702 ] } }, +{ "type": "Feature", "properties": { "location": "4200 LAWNSIDE RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.969417140032803, 40.082153065857902 ] } }, +{ "type": "Feature", "properties": { "location": "200 RUBICAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "300 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147902, 39.94131 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234334356912299, 39.926551786869403 ] } }, +{ "type": "Feature", "properties": { "location": "800 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159708, 39.969428 ] } }, +{ "type": "Feature", "properties": { "location": "600 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15535, 39.933218 ] } }, +{ "type": "Feature", "properties": { "location": "2944 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185121892967402, 39.973384712327899 ] } }, +{ "type": "Feature", "properties": { "location": "2526 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173382083977401, 39.995283103063301 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132957, 39.968937 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "922 FARRAGUT TER", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215278668577199, 39.948083951348998 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152645, 39.942433 ] } }, +{ "type": "Feature", "properties": { "location": "3400 HOPE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128980715075798, 40.002444740692098 ] } }, +{ "type": "Feature", "properties": { "location": "3400 HOPE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128980715075798, 40.002444740692098 ] } }, +{ "type": "Feature", "properties": { "location": "3400 HOPE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128980715075798, 40.002444740692098 ] } }, +{ "type": "Feature", "properties": { "location": "3400 HOPE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128980715075798, 40.002444740692098 ] } }, +{ "type": "Feature", "properties": { "location": "699 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159038, 39.965972 ] } }, +{ "type": "Feature", "properties": { "location": "5301 SAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079937, 40.0256 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167457, 39.917603 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167518170110199, 39.9169772664455 ] } }, +{ "type": "Feature", "properties": { "location": "5400 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231309551726497, 39.949485462114502 ] } }, +{ "type": "Feature", "properties": { "location": "900 N PENN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13468, 39.962987 ] } }, +{ "type": "Feature", "properties": { "location": "1106 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160977, 39.942603 ] } }, +{ "type": "Feature", "properties": { "location": "800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160063, 39.921813 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14243, 39.969137 ] } }, +{ "type": "Feature", "properties": { "location": "4000 SANSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203165, 39.95494 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155625, 39.929222 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155645, 39.929402 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15565, 39.929402 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155628, 39.929267 ] } }, +{ "type": "Feature", "properties": { "location": "3928 MANAYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212407296474197, 40.022021329560602 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159195, 39.94696 ] } }, +{ "type": "Feature", "properties": { "location": "1232 S 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165158, 39.934318 ] } }, +{ "type": "Feature", "properties": { "location": "1232 S 12TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16515, 39.934335 ] } }, +{ "type": "Feature", "properties": { "location": "1232 S 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165215, 39.934432 ] } }, +{ "type": "Feature", "properties": { "location": "1232 S 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165312, 39.934437 ] } }, +{ "type": "Feature", "properties": { "location": "1232 S 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165202, 39.93445 ] } }, +{ "type": "Feature", "properties": { "location": "1232 S 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16529, 39.934293 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228225, 40.028405 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228158, 40.028288 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156513, 39.959783 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156223, 39.96027 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088313, 40.010803 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOYER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127533, 39.972253 ] } }, +{ "type": "Feature", "properties": { "location": "1612 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164765, 39.965065 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "645 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15025, 40.003732 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153313, 39.94254 ] } }, +{ "type": "Feature", "properties": { "location": "OPP3115 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188042, 39.963863 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159105, 39.962542 ] } }, +{ "type": "Feature", "properties": { "location": "699 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159085, 39.965678 ] } }, +{ "type": "Feature", "properties": { "location": "100 N MOLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16556, 39.956658 ] } }, +{ "type": "Feature", "properties": { "location": "4000 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2036101668876, 39.967337487475199 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153652, 39.928958 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171162396795694, 39.925619608740199 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197048, 39.960843 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173634883259098, 39.936509633234998 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211242, 39.956932 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W RUSH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153777, 39.996002 ] } }, +{ "type": "Feature", "properties": { "location": "400 S WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164343, 39.9455 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15634, 39.931357 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164132, 39.964827 ] } }, +{ "type": "Feature", "properties": { "location": "100 W ROOSEVELT BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12719, 40.024775 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101775, 40.008455 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193043, 39.956092 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191903, 39.95674 ] } }, +{ "type": "Feature", "properties": { "location": "4400 SANSOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.210065, 39.954862 ] } }, +{ "type": "Feature", "properties": { "location": "200 LEVERINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227423, 40.030505 ] } }, +{ "type": "Feature", "properties": { "location": "100 LEVERING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227553, 40.030528 ] } }, +{ "type": "Feature", "properties": { "location": "2050 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "2054 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "2050 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "3433 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.192065679650696, 39.9577459670815 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079055, 40.025052 ] } }, +{ "type": "Feature", "properties": { "location": "699 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159088, 39.965848 ] } }, +{ "type": "Feature", "properties": { "location": "600 N PARK AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159137947790498, 39.9654846231048 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152537, 39.942378 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161027, 39.950992 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHANCELLOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225553, 39.956358 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163415, 39.928555 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160927, 39.968463 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 52ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226281231835699, 39.953269611319101 ] } }, +{ "type": "Feature", "properties": { "location": "5114 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224005057888206, 39.959313475732401 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100441107837099, 40.043696438575203 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221348, 40.029832 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221368, 40.029823 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221388, 40.029907 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221325, 40.029808 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183173801630204, 39.993697260569 ] } }, +{ "type": "Feature", "properties": { "location": "6100 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226582568443902, 39.926219003183597 ] } }, +{ "type": "Feature", "properties": { "location": "255 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175935, 39.941695 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070545, 40.0465 ] } }, +{ "type": "Feature", "properties": { "location": "220 S 51ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223755, 39.956102 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ATLANTIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14934, 40.006338 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172177, 39.928455 ] } }, +{ "type": "Feature", "properties": { "location": "3401 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 40TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "2700 A ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128924076978706, 39.990896436561698 ] } }, +{ "type": "Feature", "properties": { "location": "200 QUARRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145, 39.953445 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 4TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145217, 39.960748 ] } }, +{ "type": "Feature", "properties": { "location": "300 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13886, 39.955803 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15743, 39.985497 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157433, 39.985495 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153677, 39.928935 ] } }, +{ "type": "Feature", "properties": { "location": "101 S 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225270096306602, 39.958096808929099 ] } }, +{ "type": "Feature", "properties": { "location": "100 ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12841, 39.998583 ] } }, +{ "type": "Feature", "properties": { "location": "125 S 54TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229208309786202, 39.957802784611502 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163387, 39.967082 ] } }, +{ "type": "Feature", "properties": { "location": "60 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164298523013301, 40.030578741590404 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228052, 40.028333 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151903171246701, 39.966261014450403 ] } }, +{ "type": "Feature", "properties": { "location": "OPPX1934 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174127, 39.946283 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226478, 40.027752 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141522, 40.039375 ] } }, +{ "type": "Feature", "properties": { "location": "630 OREGON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159532209812099, 39.915247866056198 ] } }, +{ "type": "Feature", "properties": { "location": "899 N STILLMAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17842, 39.971302 ] } }, +{ "type": "Feature", "properties": { "location": "100 W HEWSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135118, 39.979778 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179515, 39.941187 ] } }, +{ "type": "Feature", "properties": { "location": "1538 S CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165060574597504, 39.930543116683303 ] } }, +{ "type": "Feature", "properties": { "location": "300 HORTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242916403362202, 39.967743580342898 ] } }, +{ "type": "Feature", "properties": { "location": "1831 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175107323686404, 39.933446167026197 ] } }, +{ "type": "Feature", "properties": { "location": "1800 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175107323686404, 39.933446167026197 ] } }, +{ "type": "Feature", "properties": { "location": "1831 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175107323686404, 39.933446167026197 ] } }, +{ "type": "Feature", "properties": { "location": "4700 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216639666255105, 39.955850644206897 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224508, 40.028115 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163902, 39.918558 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163672, 39.919727 ] } }, +{ "type": "Feature", "properties": { "location": "119 MANHEIM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167800669969097, 40.027742281792001 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160658, 39.958623 ] } }, +{ "type": "Feature", "properties": { "location": "581 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146218, 40.041418 ] } }, +{ "type": "Feature", "properties": { "location": "5100 HENLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169612745736103, 40.027242242841801 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165543, 39.918782 ] } }, +{ "type": "Feature", "properties": { "location": "2532 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237293441597501, 39.916219986919103 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150055084119003, 39.921206374405699 ] } }, +{ "type": "Feature", "properties": { "location": "7500 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.06172, 40.055727 ] } }, +{ "type": "Feature", "properties": { "location": "433 ROSELYN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128128969250398, 40.042975181119601 ] } }, +{ "type": "Feature", "properties": { "location": "3500 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170672, 39.935395 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170662, 39.935367 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "299 S ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236582655652498, 39.956532687705803 ] } }, +{ "type": "Feature", "properties": { "location": "4600 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209959044643895, 39.9442423635642 ] } }, +{ "type": "Feature", "properties": { "location": "200 E INDIANA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127670845717006, 39.99516976572 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157278, 39.958977 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164153397583902, 39.967866122955101 ] } }, +{ "type": "Feature", "properties": { "location": "800 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687857051997, 39.922383040809997 ] } }, +{ "type": "Feature", "properties": { "location": "800 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687857051997, 39.922383040809997 ] } }, +{ "type": "Feature", "properties": { "location": "800 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687857051997, 39.922383040809997 ] } }, +{ "type": "Feature", "properties": { "location": "99 FERN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120887658402097, 40.042541723495297 ] } }, +{ "type": "Feature", "properties": { "location": "3700 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197723, 39.955833 ] } }, +{ "type": "Feature", "properties": { "location": "500 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15414, 39.93315 ] } }, +{ "type": "Feature", "properties": { "location": "500 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502227031296, 39.933105053217403 ] } }, +{ "type": "Feature", "properties": { "location": "100 GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138405, 39.969315 ] } }, +{ "type": "Feature", "properties": { "location": "5900 WALTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241916268211597, 39.951583678455201 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238531464519596, 39.953222984175603 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157948, 39.931623 ] } }, +{ "type": "Feature", "properties": { "location": "1300 ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142132, 39.971733 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127478300031996, 40.041568511747499 ] } }, +{ "type": "Feature", "properties": { "location": "820 CAMERON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166568065882103, 39.968816360528002 ] } }, +{ "type": "Feature", "properties": { "location": "634 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156974931681304, 39.924777147009202 ] } }, +{ "type": "Feature", "properties": { "location": "5147 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126915753892703, 40.028876636888498 ] } }, +{ "type": "Feature", "properties": { "location": "5800 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.100718274320698, 40.041296691824499 ] } }, +{ "type": "Feature", "properties": { "location": "7100 DITMAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.039271704833595, 40.029543145023503 ] } }, +{ "type": "Feature", "properties": { "location": "5800 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121478040567496, 40.039243066232899 ] } }, +{ "type": "Feature", "properties": { "location": "5327 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228132669713105, 39.9719854004992 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160099296902004, 39.983849577512302 ] } }, +{ "type": "Feature", "properties": { "location": "2400 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171047602969907, 39.996076185454299 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160015, 39.960818 ] } }, +{ "type": "Feature", "properties": { "location": "2429 N 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148443459971602, 39.989490603363301 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156833, 39.92818 ] } }, +{ "type": "Feature", "properties": { "location": "5800 BINGHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100718274320698, 40.041296691824499 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "519 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "519 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N MARSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177209458298904, 39.992925884062501 ] } }, +{ "type": "Feature", "properties": { "location": "3300 RACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190031803180901, 39.958790331931503 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187989848690293, 39.9588431484175 ] } }, +{ "type": "Feature", "properties": { "location": "500 VAN KIRK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102108960261106, 40.043679069465803 ] } }, +{ "type": "Feature", "properties": { "location": "299 S ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236582655652498, 39.956532687705803 ] } }, +{ "type": "Feature", "properties": { "location": "1215 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162287, 39.943772 ] } }, +{ "type": "Feature", "properties": { "location": "3101 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.186323, 39.976813 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S WILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220025020422696, 39.940736907030697 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13925, 39.959058 ] } }, +{ "type": "Feature", "properties": { "location": "4200 STATION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219888, 40.024002 ] } }, +{ "type": "Feature", "properties": { "location": "100 N SALFORD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239601391036004, 39.964212624702 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146817, 40.029495 ] } }, +{ "type": "Feature", "properties": { "location": "4500 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225367, 40.026802 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16517, 39.935245 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170805, 39.927032 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087998, 40.01056 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157841990458095, 39.917093987196402 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RUAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088992, 40.010102 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139253, 39.959033 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170936384558502, 39.9526308179598 ] } }, +{ "type": "Feature", "properties": { "location": "6000 CHESTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232050332724398, 39.933274611828203 ] } }, +{ "type": "Feature", "properties": { "location": "311 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157017801052902, 39.9576419838642 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168754932070797, 39.928958519601402 ] } }, +{ "type": "Feature", "properties": { "location": "100 W LOUDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124452, 40.023215 ] } }, +{ "type": "Feature", "properties": { "location": "727 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158334695615395, 39.925834606298999 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155675, 39.929755 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15566, 39.929218 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 61ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241368670365205, 39.9687429429218 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155898, 39.954603 ] } }, +{ "type": "Feature", "properties": { "location": "6800 PASCHALL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238028287658807, 39.9211161758017 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134127, 39.972907 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153163, 39.93475 ] } }, +{ "type": "Feature", "properties": { "location": "1200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158928, 39.963257 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168292, 39.95379 ] } }, +{ "type": "Feature", "properties": { "location": "5136 SPRUCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225015604926796, 39.954468422602098 ] } }, +{ "type": "Feature", "properties": { "location": "6150 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244720028116802, 39.957578304770301 ] } }, +{ "type": "Feature", "properties": { "location": "5500 HAZEL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233657380756597, 39.952108556674702 ] } }, +{ "type": "Feature", "properties": { "location": "6160 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244720028116802, 39.957578304770301 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N 61ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242213284052696, 39.977957951726701 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N ALDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235642598098806, 39.9740325557296 ] } }, +{ "type": "Feature", "properties": { "location": "100 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142874125009797, 39.948224894949497 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163533, 39.946792 ] } }, +{ "type": "Feature", "properties": { "location": "4700 N 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1315994415028, 40.022742780919302 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176623, 39.951823 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212437, 40.021683 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134262, 39.97232 ] } }, +{ "type": "Feature", "properties": { "location": "609 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099698519485102, 40.0410411268061 ] } }, +{ "type": "Feature", "properties": { "location": "7800 LIMEKILN PIKE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161158025101201, 40.071828269110597 ] } }, +{ "type": "Feature", "properties": { "location": "2200 SHIELDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235631033326896, 39.923731297543199 ] } }, +{ "type": "Feature", "properties": { "location": "700 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158985, 39.965888 ] } }, +{ "type": "Feature", "properties": { "location": "700 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15918, 39.965295 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173363, 39.937928 ] } }, +{ "type": "Feature", "properties": { "location": "1712 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172931545813796, 39.933577847589902 ] } }, +{ "type": "Feature", "properties": { "location": "2300 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178727, 39.953077 ] } }, +{ "type": "Feature", "properties": { "location": "300 PARLIN PL", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.031987928548602, 40.114044266508202 ] } }, +{ "type": "Feature", "properties": { "location": "5200 N HOWARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123978, 40.0295 ] } }, +{ "type": "Feature", "properties": { "location": "1922 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169782, 39.965658 ] } }, +{ "type": "Feature", "properties": { "location": "4437 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134307624672999, 40.019070887608898 ] } }, +{ "type": "Feature", "properties": { "location": "432 GASKILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150317, 39.942397 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1344, 39.972385 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17974, 39.973753 ] } }, +{ "type": "Feature", "properties": { "location": "500 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148672, 39.958045 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073533, 40.04377 ] } }, +{ "type": "Feature", "properties": { "location": "4133 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090917, 40.007023 ] } }, +{ "type": "Feature", "properties": { "location": "4500 G ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111216974244797, 40.016540004331702 ] } }, +{ "type": "Feature", "properties": { "location": "1900 HOFFNAGLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.052698, 40.065622 ] } }, +{ "type": "Feature", "properties": { "location": "8100 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.054155, 40.064088 ] } }, +{ "type": "Feature", "properties": { "location": "100 POLLARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138068, 39.965787 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150867, 40.004502 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205495, 39.952618 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22825, 40.028615 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177087, 39.935425 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176542, 39.936812 ] } }, +{ "type": "Feature", "properties": { "location": "1501 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133768, 39.973455 ] } }, +{ "type": "Feature", "properties": { "location": "100 N WOODSTOCK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173032, 39.957287 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134742, 39.97335 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228035, 40.028263 ] } }, +{ "type": "Feature", "properties": { "location": "195 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176863, 39.921447 ] } }, +{ "type": "Feature", "properties": { "location": "1205 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161775, 39.944275 ] } }, +{ "type": "Feature", "properties": { "location": "2011 BRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071377901302796, 40.015698311252798 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179793, 39.973382 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S HICKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17135, 39.92967 ] } }, +{ "type": "Feature", "properties": { "location": "1613 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155302, 39.928233 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156117, 39.961207 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154832, 39.929545 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154777, 39.929518 ] } }, +{ "type": "Feature", "properties": { "location": "1500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172172, 39.923403 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17481, 39.953097 ] } }, +{ "type": "Feature", "properties": { "location": "3400 CONRAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18937, 40.011955 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156608, 39.958902 ] } }, +{ "type": "Feature", "properties": { "location": "1806 S CONESTOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219219828417394, 39.935287067315699 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224487, 40.028113 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22447, 40.02813 ] } }, +{ "type": "Feature", "properties": { "location": "4200 STATION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219905, 40.023952 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175783, 39.9264 ] } }, +{ "type": "Feature", "properties": { "location": "3900 WARREN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202263, 39.962202 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228118, 40.028393 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224267, 40.028277 ] } }, +{ "type": "Feature", "properties": { "location": "509 N 40TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202285, 39.962097 ] } }, +{ "type": "Feature", "properties": { "location": "700 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117129520992904, 39.9969759614482 ] } }, +{ "type": "Feature", "properties": { "location": "1000 ARCH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15744, 39.953677 ] } }, +{ "type": "Feature", "properties": { "location": "862 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182018721701795, 39.9751042426007 ] } }, +{ "type": "Feature", "properties": { "location": "1300 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160743, 39.958417 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154142, 40.003428 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151912, 39.94158 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159383, 39.97632 ] } }, +{ "type": "Feature", "properties": { "location": "5600 N UBER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153603, 40.03956 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156808, 39.961018 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156855, 39.960838 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228165, 40.028237 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156523, 39.958018 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22445, 40.02814 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22539, 40.029005 ] } }, +{ "type": "Feature", "properties": { "location": "4500 RITCHIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22515, 40.028597 ] } }, +{ "type": "Feature", "properties": { "location": "1088 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089406024067102, 40.0359479395254 ] } }, +{ "type": "Feature", "properties": { "location": "300 COMLY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104412439623005, 40.046940666035297 ] } }, +{ "type": "Feature", "properties": { "location": "2500 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234266811906295, 39.918353779573501 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160522, 39.958998 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158108, 39.958432 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LANSING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.059918, 40.057297 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S HICKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17217, 39.923558 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155852, 39.921385 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14115, 39.96183 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167725, 39.963985 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154286372780902, 39.918332882349603 ] } }, +{ "type": "Feature", "properties": { "location": "300 VINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145283, 39.955925 ] } }, +{ "type": "Feature", "properties": { "location": "500 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156445, 39.916237 ] } }, +{ "type": "Feature", "properties": { "location": "400 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216944907253193, 40.031313106409698 ] } }, +{ "type": "Feature", "properties": { "location": "200 QUARRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14335, 39.95329 ] } }, +{ "type": "Feature", "properties": { "location": "1914 RITTENHOUSE SQ", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17314, 39.948923 ] } }, +{ "type": "Feature", "properties": { "location": "5900 WALTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241916268211597, 39.951583678455201 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 54TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227955013941795, 39.963760274893097 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166828, 39.920152 ] } }, +{ "type": "Feature", "properties": { "location": "1015 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157765, 39.949982 ] } }, +{ "type": "Feature", "properties": { "location": "400 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151930129375302, 39.932893846230201 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BENNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079933470051401, 40.035129605483299 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086515, 40.01535 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086192, 40.013828 ] } }, +{ "type": "Feature", "properties": { "location": "4226 MAYWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099188672810698, 40.011204897964099 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160872, 39.925385 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158347, 39.929605 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177465347660203, 39.9944932491739 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182848487988693, 39.995189741029698 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182848487988693, 39.995189741029698 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155228, 39.984425 ] } }, +{ "type": "Feature", "properties": { "location": "6800 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070710380987194, 40.044272419847402 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178890950877502, 39.997080498819898 ] } }, +{ "type": "Feature", "properties": { "location": "100 SHURS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218165625409796, 40.022307890018297 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142362, 39.970052 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177192428355994, 40.003388119706003 ] } }, +{ "type": "Feature", "properties": { "location": "3100 D ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.121440341631498, 39.996715527922198 ] } }, +{ "type": "Feature", "properties": { "location": "3463 KEIM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117123940405904, 40.000928704119097 ] } }, +{ "type": "Feature", "properties": { "location": "808 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113921102918198, 39.998649280475497 ] } }, +{ "type": "Feature", "properties": { "location": "800 E CORNWALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113921102918198, 39.998649280475497 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "200 E CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127982921392999, 39.993679328318599 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "3100 HURLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121922315190304, 39.996776717591104 ] } }, +{ "type": "Feature", "properties": { "location": "2990 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107183426448998, 39.980800647970099 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163263, 39.930183 ] } }, +{ "type": "Feature", "properties": { "location": "1300 PASSMORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079899478009295, 40.042066813910203 ] } }, +{ "type": "Feature", "properties": { "location": "601 ALCOTT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099266372023294, 40.041400272881503 ] } }, +{ "type": "Feature", "properties": { "location": "1900 STERLING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149464295844496, 40.067772126999103 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 31ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187602, 39.96458 ] } }, +{ "type": "Feature", "properties": { "location": "7300 COTTAGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.037358193699504, 40.0335146341762 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17973, 39.973765 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16842, 39.943803 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1745592450647, 39.935958819506297 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205641772576897, 39.951786057834497 ] } }, +{ "type": "Feature", "properties": { "location": "300 E SHARPNACK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178179902519304, 40.054874793706702 ] } }, +{ "type": "Feature", "properties": { "location": "200 IDELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191770931862195, 40.054095108936998 ] } }, +{ "type": "Feature", "properties": { "location": "1513 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159225, 39.976673 ] } }, +{ "type": "Feature", "properties": { "location": "1502 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159407, 39.976228 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WOMRATH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087491014485394, 40.007812019555601 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155572, 39.95953 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N HOWARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130147003518999, 39.999473548668703 ] } }, +{ "type": "Feature", "properties": { "location": "3601 LOCUST WALK", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196029741089305, 39.952136869575902 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104503, 39.996573 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166398, 39.942403 ] } }, +{ "type": "Feature", "properties": { "location": "3401 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192837, 39.957148 ] } }, +{ "type": "Feature", "properties": { "location": "300 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153017474320606, 39.919676186059803 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "6000 ARDLEIGH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165384448357798, 40.052659238411799 ] } }, +{ "type": "Feature", "properties": { "location": "5300 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226547591533901, 39.963373653187404 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.069926599667994, 40.0466266245245 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.069926599667994, 40.0466266245245 ] } }, +{ "type": "Feature", "properties": { "location": "5978 REACH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104370460730905, 40.047555071050901 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157842, 39.931563 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181114576860494, 39.971056082780301 ] } }, +{ "type": "Feature", "properties": { "location": "153 W CHEW AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123266513700401, 40.037092852485401 ] } }, +{ "type": "Feature", "properties": { "location": "1200 JOHNSTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169465, 39.915187 ] } }, +{ "type": "Feature", "properties": { "location": "1851 ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112208, 39.995342 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NEW MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138902, 39.965047 ] } }, +{ "type": "Feature", "properties": { "location": "1946 S REDFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229960137787103, 39.933744637602203 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157925, 39.958113 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169732, 39.950978 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14504, 39.970262 ] } }, +{ "type": "Feature", "properties": { "location": "6500 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230045163023405, 39.921006059095497 ] } }, +{ "type": "Feature", "properties": { "location": "800 STILLMAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178427, 39.971225 ] } }, +{ "type": "Feature", "properties": { "location": "1200 WATTS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158652, 39.971292 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RITTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165378, 39.91998 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WYLIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1651182089701, 39.970239714613399 ] } }, +{ "type": "Feature", "properties": { "location": "300 HOWELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105149277885403, 40.047166552726203 ] } }, +{ "type": "Feature", "properties": { "location": "200 E STELLA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126541988791701, 39.9957922514157 ] } }, +{ "type": "Feature", "properties": { "location": "611 SPRING GARDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149409535798497, 39.961484510673699 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158133063145598, 39.915777001000698 ] } }, +{ "type": "Feature", "properties": { "location": "143 N 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15482, 39.954633 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174778, 39.923762 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ARLINGTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163412, 39.983582 ] } }, +{ "type": "Feature", "properties": { "location": "640 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156241458550298, 39.928063370512 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153755, 39.931105 ] } }, +{ "type": "Feature", "properties": { "location": "300 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153017474320606, 39.919676186059803 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185015057300305, 39.931151998334897 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151666914140307, 39.920563788661497 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BERKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162155, 39.98244 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N HOWARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133754831907893, 39.982565998832001 ] } }, +{ "type": "Feature", "properties": { "location": "100 RECTOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220517, 40.025082 ] } }, +{ "type": "Feature", "properties": { "location": "400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154258, 39.926058 ] } }, +{ "type": "Feature", "properties": { "location": "12000 MEDFORD RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -74.981393796572107, 40.0957807547938 ] } }, +{ "type": "Feature", "properties": { "location": "10604 COWDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.012860196107596, 40.101428496541203 ] } }, +{ "type": "Feature", "properties": { "location": "6060 WEBSTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244213103765503, 39.950294899111299 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169511398190494, 39.986715387695199 ] } }, +{ "type": "Feature", "properties": { "location": "7708 OGONTZ AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157515111898306, 40.071169761940403 ] } }, +{ "type": "Feature", "properties": { "location": "300 ROBBINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099897996041705, 40.0500604897817 ] } }, +{ "type": "Feature", "properties": { "location": "14 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142064522451193, 39.949993390567499 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "100 FOUNTAIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231807, 40.032767 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16536, 39.919488 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "2300 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1777339660091, 39.957173734651597 ] } }, +{ "type": "Feature", "properties": { "location": "2006 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176857, 39.937833 ] } }, +{ "type": "Feature", "properties": { "location": "1413 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169018329613905, 39.929306198693098 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157932, 39.931597 ] } }, +{ "type": "Feature", "properties": { "location": "525 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "531 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "2300 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181300552878696, 39.941489058303702 ] } }, +{ "type": "Feature", "properties": { "location": "6300 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229337034842004, 39.924330545924001 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14197, 39.967775 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "600 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156423238159604, 39.927220948577698 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S MILLICK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223731760517197, 39.925799354806102 ] } }, +{ "type": "Feature", "properties": { "location": "6020 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.240035721399906, 39.972731276917798 ] } }, +{ "type": "Feature", "properties": { "location": "1 N YEWDALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229074391941097, 39.961320764846398 ] } }, +{ "type": "Feature", "properties": { "location": "512 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "1402 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15622, 39.931323 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E BIRCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117624145460198, 39.9916361934024 ] } }, +{ "type": "Feature", "properties": { "location": "764 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173807, 39.969165 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155672, 39.9295 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155613, 39.929432 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165525, 39.966772 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FAIRHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156502, 39.920632 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FAIRHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156472, 39.920637 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108779703617003, 39.996269105585199 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172523376321493, 39.934152430971203 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173303, 39.925712 ] } }, +{ "type": "Feature", "properties": { "location": "1538 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16004, 39.929395 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KENILWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16298, 39.942178 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224527, 40.028093 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224463, 40.028108 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160462, 39.942093 ] } }, +{ "type": "Feature", "properties": { "location": "1000 HOPE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137628, 39.966547 ] } }, +{ "type": "Feature", "properties": { "location": "5787 DUNLAP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237382404049896, 39.978604753829401 ] } }, +{ "type": "Feature", "properties": { "location": "300 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217640426211005, 40.029120525284299 ] } }, +{ "type": "Feature", "properties": { "location": "5100 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223735, 39.955533 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226208, 40.027755 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170511155214996, 39.936005638948302 ] } }, +{ "type": "Feature", "properties": { "location": "2022 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179637, 39.926983 ] } }, +{ "type": "Feature", "properties": { "location": "2328 N GARNET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164238296690201, 39.989720800124999 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158658, 39.920752 ] } }, +{ "type": "Feature", "properties": { "location": "6233 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149786129488604, 40.049179571233999 ] } }, +{ "type": "Feature", "properties": { "location": "6233 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149786129488604, 40.049179571233999 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "700 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150497234860396, 39.963319831493699 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197422, 39.954305 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197547, 39.954415 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191902, 39.95335 ] } }, +{ "type": "Feature", "properties": { "location": "138 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192115, 39.953237 ] } }, +{ "type": "Feature", "properties": { "location": "215 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162407902534397, 40.032409377693597 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140007, 39.956887 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142373, 39.970037 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14237, 39.970262 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171018, 39.938763 ] } }, +{ "type": "Feature", "properties": { "location": "500 S SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16146, 39.943177 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211433, 39.956302 ] } }, +{ "type": "Feature", "properties": { "location": "700 IONIC ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15364, 39.949072 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 59TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241146572393106, 39.950428894535001 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224552, 40.028062 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224493, 40.0281 ] } }, +{ "type": "Feature", "properties": { "location": "200 LAURISTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206018177634206, 40.020725235893103 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12814, 39.967262 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223977, 40.026392 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 40TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203518, 39.950093 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1541, 39.927808 ] } }, +{ "type": "Feature", "properties": { "location": "2067 KINGSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101405860742702, 39.997359615725401 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1494, 40.007318 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155627, 39.92968 ] } }, +{ "type": "Feature", "properties": { "location": "799 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180748, 39.969252 ] } }, +{ "type": "Feature", "properties": { "location": "600 E RAYMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112056349455401, 40.017840758811801 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156438, 39.959073 ] } }, +{ "type": "Feature", "properties": { "location": "6100 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243061756618701, 39.962244220818 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142485, 39.96911 ] } }, +{ "type": "Feature", "properties": { "location": "1 BANK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14507, 39.949708 ] } }, +{ "type": "Feature", "properties": { "location": "4400 SMICK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225448, 40.028045 ] } }, +{ "type": "Feature", "properties": { "location": "1334 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164305, 39.944612 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140357, 39.95442 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 54TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229607, 39.955598 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070517, 40.046478 ] } }, +{ "type": "Feature", "properties": { "location": "1800 VINEYARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167795, 39.969942 ] } }, +{ "type": "Feature", "properties": { "location": "5700 CHARLES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068283297670703, 40.0223232312199 ] } }, +{ "type": "Feature", "properties": { "location": "700 MONTROSE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156493, 39.937777 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143507, 39.96794 ] } }, +{ "type": "Feature", "properties": { "location": "500 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127758, 39.969923 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175237, 39.947837 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115697, 39.99507 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S BEULAH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156933, 39.931418 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154978, 39.937388 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197002, 39.960783 ] } }, +{ "type": "Feature", "properties": { "location": "311 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162827, 39.946043 ] } }, +{ "type": "Feature", "properties": { "location": "1035 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159343, 39.946218 ] } }, +{ "type": "Feature", "properties": { "location": "3701 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196178, 39.957232 ] } }, +{ "type": "Feature", "properties": { "location": "800 JOHNSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16187, 39.914293 ] } }, +{ "type": "Feature", "properties": { "location": "3701 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196197, 39.957262 ] } }, +{ "type": "Feature", "properties": { "location": "1900 W OLNEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153722, 40.03938 ] } }, +{ "type": "Feature", "properties": { "location": "2030 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "1300 COMLY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0832899674174, 40.035098598700102 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158733, 39.920232 ] } }, +{ "type": "Feature", "properties": { "location": "827 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "2640 E LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114404947942205, 39.978160705314103 ] } }, +{ "type": "Feature", "properties": { "location": "1006 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15952, 39.942512 ] } }, +{ "type": "Feature", "properties": { "location": "5700 WINDSOR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229939961484007, 39.937980140993801 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130442, 39.972315 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144435, 39.963648 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150102, 40.003783 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N HUTCHINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135832, 40.04351 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22423, 40.028292 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "4099 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202797, 39.959043 ] } }, +{ "type": "Feature", "properties": { "location": "300 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131153, 39.969995 ] } }, +{ "type": "Feature", "properties": { "location": "500 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156027, 39.920787 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S ROSEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169637, 39.928175 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1398325087372, 39.957321124916703 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225557, 40.026857 ] } }, +{ "type": "Feature", "properties": { "location": "2600 SOUTH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18322, 39.945917 ] } }, +{ "type": "Feature", "properties": { "location": "3037 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153415, 39.99969 ] } }, +{ "type": "Feature", "properties": { "location": "6831 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044445638549504, 40.026121624760101 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1798, 39.973643 ] } }, +{ "type": "Feature", "properties": { "location": "3000 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184716375879006, 39.977829388133202 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154362, 39.926972 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SANSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213607, 39.956223 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18951, 39.954737 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153767, 39.929022 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206332, 39.954273 ] } }, +{ "type": "Feature", "properties": { "location": "4229 MARKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.098631532917395, 40.011131985645299 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177153, 39.953845 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143080727049295, 40.006643016473802 ] } }, +{ "type": "Feature", "properties": { "location": "5645 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234729604511102, 39.977733102029603 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176897, 39.921478 ] } }, +{ "type": "Feature", "properties": { "location": "700 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153342, 39.950533 ] } }, +{ "type": "Feature", "properties": { "location": "600 PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15772, 39.94241 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 31ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187627, 39.964533 ] } }, +{ "type": "Feature", "properties": { "location": "3500 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114418369115398, 40.0015963270829 ] } }, +{ "type": "Feature", "properties": { "location": "4024 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101202194041093, 40.008260715641597 ] } }, +{ "type": "Feature", "properties": { "location": "800 MERCER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124651654160999, 39.9744127641859 ] } }, +{ "type": "Feature", "properties": { "location": "800 MERCER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124651654160999, 39.9744127641859 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NEDRO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141577, 40.042627 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.086433, 40.013937 ] } }, +{ "type": "Feature", "properties": { "location": "200 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151047, 39.927017 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N LEE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130734597604999, 39.9884632128039 ] } }, +{ "type": "Feature", "properties": { "location": "3400 REACH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1152831300316, 40.000689465926001 ] } }, +{ "type": "Feature", "properties": { "location": "3000 POTTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117251945440998, 39.994913960077199 ] } }, +{ "type": "Feature", "properties": { "location": "3000 POTTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117251945440998, 39.994913960077199 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1206014877272, 40.039123749098501 ] } }, +{ "type": "Feature", "properties": { "location": "5045 N FRANKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136599443604297, 40.028580863655698 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W COURTLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153308554550705, 40.023621495405798 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14044, 39.954473 ] } }, +{ "type": "Feature", "properties": { "location": "3000 REED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194139946981196, 39.936317453706003 ] } }, +{ "type": "Feature", "properties": { "location": "5933 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.240392641228297, 39.961916336101403 ] } }, +{ "type": "Feature", "properties": { "location": "3900 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200738, 39.960472 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171277, 39.9396 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143248, 39.96932 ] } }, +{ "type": "Feature", "properties": { "location": "1530 E SUSQUEHANNA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127182, 39.97658 ] } }, +{ "type": "Feature", "properties": { "location": "4000 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202988, 39.960295 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153667, 39.942687 ] } }, +{ "type": "Feature", "properties": { "location": "200 S SYDENHAM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166998, 39.949063 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159055, 39.94912 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155503, 39.92947 ] } }, +{ "type": "Feature", "properties": { "location": "600 CROSS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155667, 39.929317 ] } }, +{ "type": "Feature", "properties": { "location": "6100 ARCH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.242742457301702, 39.963822645039002 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140097, 39.95537 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160233, 39.942137 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160247, 39.942083 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "6000 CHESTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232050332724398, 39.933274611828203 ] } }, +{ "type": "Feature", "properties": { "location": "1041 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156432, 39.960233 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 51ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224595, 39.951733 ] } }, +{ "type": "Feature", "properties": { "location": "5600 LEBANON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2359301931765, 39.9866874878483 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15339, 39.942498 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226293, 40.027757 ] } }, +{ "type": "Feature", "properties": { "location": "64 N ROBINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243866275519807, 39.9631531775564 ] } }, +{ "type": "Feature", "properties": { "location": "136 N EDGEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240914249903, 39.964375209885098 ] } }, +{ "type": "Feature", "properties": { "location": "7107 KEYSTONE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.036118716891295, 40.0259468892149 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188157, 39.961058 ] } }, +{ "type": "Feature", "properties": { "location": "7113 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.038817452657497, 40.029030628713997 ] } }, +{ "type": "Feature", "properties": { "location": "3600 ELDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14974, 40.008643 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140392, 39.968685 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090962, 40.006768 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140677, 39.96867 ] } }, +{ "type": "Feature", "properties": { "location": "4300 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197375, 40.01024 ] } }, +{ "type": "Feature", "properties": { "location": "7365 ELMWOOD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243825237438998, 39.912700255772201 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 66TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237666847365105, 39.9264632730589 ] } }, +{ "type": "Feature", "properties": { "location": "5200 SAYBROOK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216127391859501, 39.937834875387097 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228080711070206, 39.925256005062799 ] } }, +{ "type": "Feature", "properties": { "location": "6732 KINDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070618571432803, 40.042316066716197 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "7200 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.066275809656702, 40.049883062190098 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086347, 40.013853 ] } }, +{ "type": "Feature", "properties": { "location": "2400 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176508032988593, 39.971041543558997 ] } }, +{ "type": "Feature", "properties": { "location": "5100 N 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136928790448707, 40.030189670414799 ] } }, +{ "type": "Feature", "properties": { "location": "4099 FILBERT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203513, 39.958065 ] } }, +{ "type": "Feature", "properties": { "location": "500 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14665, 39.966802 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219442, 40.028345 ] } }, +{ "type": "Feature", "properties": { "location": "3700 MIDVALE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193408, 40.009457 ] } }, +{ "type": "Feature", "properties": { "location": "4664 STENTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159336638225597, 40.026048333756698 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090763, 40.007667 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "200 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142188, 39.962223 ] } }, +{ "type": "Feature", "properties": { "location": "400 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14766, 39.949955 ] } }, +{ "type": "Feature", "properties": { "location": "3100 F ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117689798692595, 39.995614904743398 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CRESTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080697456554702, 40.034334939438601 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153207, 39.938068 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "400 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216017592750603, 40.029829748777402 ] } }, +{ "type": "Feature", "properties": { "location": "403 RIPKA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220683733540298, 40.034937533913897 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "322 S 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159718, 39.945428 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160788, 39.9181 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175587, 39.927632 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176350286710701, 39.927743697498897 ] } }, +{ "type": "Feature", "properties": { "location": "100 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145500327971504, 39.935631097565903 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158586236202098, 39.9384364580173 ] } }, +{ "type": "Feature", "properties": { "location": "600 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153909336029102, 39.937190512924197 ] } }, +{ "type": "Feature", "properties": { "location": "600 W CUMBERLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143057738165794, 39.989286237193802 ] } }, +{ "type": "Feature", "properties": { "location": "1215 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158995, 39.958482 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160045, 39.958353 ] } }, +{ "type": "Feature", "properties": { "location": "370 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221032342641394, 40.0328599036282 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KENILWORTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162913, 39.942302 ] } }, +{ "type": "Feature", "properties": { "location": "1100 VAN KIRK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087882349857495, 40.035765584390397 ] } }, +{ "type": "Feature", "properties": { "location": "7100 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190133, 40.060945 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 37TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196405, 39.953787 ] } }, +{ "type": "Feature", "properties": { "location": "1500 JOHN F KENNEDY BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165841044044001, 39.9537045668025 ] } }, +{ "type": "Feature", "properties": { "location": "4000 PINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.20338, 39.950737 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14593, 39.966685 ] } }, +{ "type": "Feature", "properties": { "location": "165 N 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.242247300089005, 39.9645426757343 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14195, 39.967577 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARKET ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16651, 39.952843 ] } }, +{ "type": "Feature", "properties": { "location": "4200 GRISCOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091903611425096, 40.009621523468098 ] } }, +{ "type": "Feature", "properties": { "location": "1949 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "3417 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1175767096166, 40.000987289979797 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 30TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185045949345707, 39.975013534715302 ] } }, +{ "type": "Feature", "properties": { "location": "100 LOUDON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124618, 40.02311 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134285, 39.972418 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153668, 39.96017 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N MARVINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152211766144703, 39.983351888787503 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153945060507994, 39.982820771933397 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160099296902004, 39.983849577512302 ] } }, +{ "type": "Feature", "properties": { "location": "1911 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "600 JOHNSTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158654576058197, 39.913823090582397 ] } }, +{ "type": "Feature", "properties": { "location": "300 VINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144659512567202, 39.955881075166502 ] } }, +{ "type": "Feature", "properties": { "location": "2037 LOCUST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175235608771999, 39.949540490359702 ] } }, +{ "type": "Feature", "properties": { "location": "2300 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178525, 39.953722 ] } }, +{ "type": "Feature", "properties": { "location": "5700 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229939961484007, 39.937980140993801 ] } }, +{ "type": "Feature", "properties": { "location": "2100 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174413, 39.962485 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "3400 REACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1152831300316, 40.000689465926001 ] } }, +{ "type": "Feature", "properties": { "location": "1500 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164193, 39.963463 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18282, 39.941118 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.089765, 40.009417 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W OXFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161830663930104, 39.9777455707587 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158032, 39.923628 ] } }, +{ "type": "Feature", "properties": { "location": "1000 APPLETREE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157467, 39.954238 ] } }, +{ "type": "Feature", "properties": { "location": "1000 APPLETREE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157508, 39.954328 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 41ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204525, 39.95594 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19288, 39.957198 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125288, 39.970793 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153715, 39.945812 ] } }, +{ "type": "Feature", "properties": { "location": "3451 N 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145050952999696, 40.005028997894001 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159462, 39.924768 ] } }, +{ "type": "Feature", "properties": { "location": "3500 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192992, 39.956847 ] } }, +{ "type": "Feature", "properties": { "location": "2300 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179023, 39.953307 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173222, 39.925863 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142303, 39.969217 ] } }, +{ "type": "Feature", "properties": { "location": "4400 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211038, 39.95398 ] } }, +{ "type": "Feature", "properties": { "location": "1599 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086292, 40.015052 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174283, 39.92623 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172192, 39.928513 ] } }, +{ "type": "Feature", "properties": { "location": "4900 ORMES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118984155091198, 40.024568377173601 ] } }, +{ "type": "Feature", "properties": { "location": "4701 GERMANTOWN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160779249863097, 40.026989676423398 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157713, 39.95833 ] } }, +{ "type": "Feature", "properties": { "location": "700 LOCUST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153618, 39.946803 ] } }, +{ "type": "Feature", "properties": { "location": "4200 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089362, 40.010158 ] } }, +{ "type": "Feature", "properties": { "location": "800 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160827, 39.925665 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16728, 39.917628 ] } }, +{ "type": "Feature", "properties": { "location": "1626 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170052, 39.943332 ] } }, +{ "type": "Feature", "properties": { "location": "1402 FANSHAWE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075208050885195, 40.042980749741197 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085687, 40.014893 ] } }, +{ "type": "Feature", "properties": { "location": "5100 LUDLOW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22504, 39.959523 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193985, 39.96048 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159302, 39.976807 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160738, 39.959455 ] } }, +{ "type": "Feature", "properties": { "location": "1160 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163532048922704, 39.931670234835401 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "2301 MARKET ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178592, 39.954017 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155415, 39.990442 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168027, 39.947703 ] } }, +{ "type": "Feature", "properties": { "location": "3815 PEAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197745, 39.960032 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 41ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205667, 39.948365 ] } }, +{ "type": "Feature", "properties": { "location": "900 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089113493495404, 40.033841531766797 ] } }, +{ "type": "Feature", "properties": { "location": "5200 KERSHAW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226945551075701, 39.9735424992597 ] } }, +{ "type": "Feature", "properties": { "location": "1453 N VOGDES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231855899987394, 39.974449988033001 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178072, 39.945238 ] } }, +{ "type": "Feature", "properties": { "location": "3442 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1175767096166, 40.000987289979797 ] } }, +{ "type": "Feature", "properties": { "location": "622 PEMBERTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153842, 39.940663 ] } }, +{ "type": "Feature", "properties": { "location": "2000 IONIC ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17406, 39.95169 ] } }, +{ "type": "Feature", "properties": { "location": "900 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153552, 39.959568 ] } }, +{ "type": "Feature", "properties": { "location": "3300 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191243, 39.952645 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163877, 39.950157 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159417, 39.97631 ] } }, +{ "type": "Feature", "properties": { "location": "4631 SANSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214978168342, 39.9564290265211 ] } }, +{ "type": "Feature", "properties": { "location": "500 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502227031296, 39.933105053217403 ] } }, +{ "type": "Feature", "properties": { "location": "1404 W PACIFIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151962, 40.008845 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "900 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153697, 39.95958 ] } }, +{ "type": "Feature", "properties": { "location": "90 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153727, 39.959635 ] } }, +{ "type": "Feature", "properties": { "location": "4425 OAKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091717832300901, 40.015898841684397 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W WESTMORELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151197, 40.003012 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140354590774606, 39.994504961216897 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134382, 39.972345 ] } }, +{ "type": "Feature", "properties": { "location": "1536 WOMRATH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090579824175606, 40.009451763378699 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158048, 39.937465 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192095, 39.952148 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155388485861593, 39.959648400917096 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218565, 40.02351 ] } }, +{ "type": "Feature", "properties": { "location": "4200 STATION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219887, 40.024023 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 47TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215642, 39.955843 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151903171246701, 39.966261014450403 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173668, 39.92863 ] } }, +{ "type": "Feature", "properties": { "location": "3049 POTTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117251945440998, 39.994913960077199 ] } }, +{ "type": "Feature", "properties": { "location": "2729 JASPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1228402273711, 39.989635134129102 ] } }, +{ "type": "Feature", "properties": { "location": "200 W LOUDON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129159392381496, 40.023774217118103 ] } }, +{ "type": "Feature", "properties": { "location": "4500 SILVERWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224122, 40.030273 ] } }, +{ "type": "Feature", "properties": { "location": "6800 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243161553093898, 39.925447691313501 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 26TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182895, 39.946942 ] } }, +{ "type": "Feature", "properties": { "location": "1900 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168048, 39.96996 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153205, 39.942453 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170223, 39.942333 ] } }, +{ "type": "Feature", "properties": { "location": "1622 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169803, 39.943373 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142522, 39.969233 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158702, 39.920695 ] } }, +{ "type": "Feature", "properties": { "location": "608 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152667, 39.942427 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160913, 39.968912 ] } }, +{ "type": "Feature", "properties": { "location": "400 RUSCOMB ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132427, 40.027285 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149574818347503, 39.916022976373696 ] } }, +{ "type": "Feature", "properties": { "location": "1716 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169538, 39.95077 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "140 N DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242920393407701, 39.964625138066602 ] } }, +{ "type": "Feature", "properties": { "location": "1 BANK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145178, 39.94884 ] } }, +{ "type": "Feature", "properties": { "location": "1 BANK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145262, 39.948538 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 42ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206142, 39.955388 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S BROAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170273, 39.92189 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHRISTIAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159438, 39.939282 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147808, 39.931517 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212728, 39.955283 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1542379848689, 39.985197749036203 ] } }, +{ "type": "Feature", "properties": { "location": "1900 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153992, 40.041052 ] } }, +{ "type": "Feature", "properties": { "location": "200 S BROAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164495, 39.948448 ] } }, +{ "type": "Feature", "properties": { "location": "200 S BROAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164583, 39.948528 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155865, 39.959535 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154623, 39.960802 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214102, 40.023493 ] } }, +{ "type": "Feature", "properties": { "location": "3900 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200160959312299, 39.961115487234103 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168955569276093, 39.935752762843002 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225392, 40.027072 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160867, 39.968915 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141347, 39.965373 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141313, 39.965375 ] } }, +{ "type": "Feature", "properties": { "location": "3815 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197785, 39.96003 ] } }, +{ "type": "Feature", "properties": { "location": "3817 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197877, 39.960043 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156395, 39.938537 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170907, 39.965802 ] } }, +{ "type": "Feature", "properties": { "location": "200 THOMAS PAINE PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145682, 39.946523 ] } }, +{ "type": "Feature", "properties": { "location": "2000 TITAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177549853521896, 39.9359178058968 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174145, 39.919743 ] } }, +{ "type": "Feature", "properties": { "location": "549 E LURAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115470254301997, 40.019830726054003 ] } }, +{ "type": "Feature", "properties": { "location": "400 FERN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128022785333499, 40.043457788584398 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174688147976596, 39.927971122729801 ] } }, +{ "type": "Feature", "properties": { "location": "3304 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125603558290507, 40.000469657914898 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154727, 39.948963 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176665, 39.96873 ] } }, +{ "type": "Feature", "properties": { "location": "100 E CLEARFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129343677754903, 39.996921583508097 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155735, 39.929267 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155607, 39.929197 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 37TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195487, 39.957138 ] } }, +{ "type": "Feature", "properties": { "location": "1912 S 4TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152989635564197, 39.924471035427104 ] } }, +{ "type": "Feature", "properties": { "location": "2014 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177097, 39.937778 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "3200 CROMWELL RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -74.995484482146395, 40.0805826761692 ] } }, +{ "type": "Feature", "properties": { "location": "400 SEPVIVA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132063, 39.975147 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N UBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166249090736002, 39.981547404446097 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170205, 39.94234 ] } }, +{ "type": "Feature", "properties": { "location": "5800 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231318782024701, 39.937021854286101 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1593 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1200 GREEBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080249206869198, 40.043556619249998 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.069926599667994, 40.0466266245245 ] } }, +{ "type": "Feature", "properties": { "location": "1045 S PAXON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221488323555207, 39.943612365451401 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150283, 39.92936 ] } }, +{ "type": "Feature", "properties": { "location": "132 S BONSALL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179005, 39.951557 ] } }, +{ "type": "Feature", "properties": { "location": "199 S BONSALL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17904, 39.95154 ] } }, +{ "type": "Feature", "properties": { "location": "6800 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233286425901596, 39.917966129545299 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16007, 39.965935 ] } }, +{ "type": "Feature", "properties": { "location": "600 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156974931681304, 39.924777147009202 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155247, 39.984533 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160863376627304, 39.9821762449087 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188137, 39.961088 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188653, 39.958815 ] } }, +{ "type": "Feature", "properties": { "location": "6100 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230893870472798, 39.928937255083099 ] } }, +{ "type": "Feature", "properties": { "location": "7027 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2391293384932, 39.9174278242876 ] } }, +{ "type": "Feature", "properties": { "location": "1699 SNYDER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174245, 39.924887 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1471, 39.967258 ] } }, +{ "type": "Feature", "properties": { "location": "500 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147143, 39.967075 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143663, 40.043532 ] } }, +{ "type": "Feature", "properties": { "location": "1527 DICKINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170579793144796, 39.932026547983 ] } }, +{ "type": "Feature", "properties": { "location": "2800 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191526427743099, 39.9334618247481 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156178461314695, 39.957776657981 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARCH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153931128861103, 39.953252120901404 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S MOLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172008917575297, 39.9265629487466 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228232, 40.02842 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228083, 40.028305 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22818, 40.028393 ] } }, +{ "type": "Feature", "properties": { "location": "6000 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.239625495229802, 39.969915929144499 ] } }, +{ "type": "Feature", "properties": { "location": "635 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099698519485102, 40.0410411268061 ] } }, +{ "type": "Feature", "properties": { "location": "4800 WALTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220118574760406, 39.948942652061298 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157443, 39.933363 ] } }, +{ "type": "Feature", "properties": { "location": "1000 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161592, 39.929595 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182848487988693, 39.995189741029698 ] } }, +{ "type": "Feature", "properties": { "location": "5300 MALCOLM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2285253930539, 39.945287694344501 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136681744966097, 40.0113145367051 ] } }, +{ "type": "Feature", "properties": { "location": "4510 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148595, 40.021782 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141223, 39.965357 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 37TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195168, 39.958597 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E LIPPINCOTT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114338, 39.99579 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "700 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "3500 WARREN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19383, 39.95776 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196967, 39.960242 ] } }, +{ "type": "Feature", "properties": { "location": "4000 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203032, 39.960572 ] } }, +{ "type": "Feature", "properties": { "location": "400 HERMITAGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221188541954504, 40.035566977433 ] } }, +{ "type": "Feature", "properties": { "location": "7300 SOMMERS RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155010154434294, 40.066585846714702 ] } }, +{ "type": "Feature", "properties": { "location": "500 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104902207422697, 40.041363709164202 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143483, 40.034867 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175068, 39.922478 ] } }, +{ "type": "Feature", "properties": { "location": "2500 SHIELDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231529575241396, 39.920274434265401 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14229, 39.970013 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13072, 39.972672 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150730083822594, 39.980873163110402 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15532, 39.928787 ] } }, +{ "type": "Feature", "properties": { "location": "945 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162260987378801, 39.922582911292103 ] } }, +{ "type": "Feature", "properties": { "location": "2127 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158414766553193, 39.921877717884399 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151903171246701, 39.966261014450403 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159737, 39.918035 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155983, 39.954443 ] } }, +{ "type": "Feature", "properties": { "location": "9608 HOFF ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.031757189451795, 40.085665048050799 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161732, 39.983805 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175018, 39.92245 ] } }, +{ "type": "Feature", "properties": { "location": "5559 WALTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234036866233097, 39.950327331750103 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147983, 39.971737 ] } }, +{ "type": "Feature", "properties": { "location": "400 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144325, 39.971368 ] } }, +{ "type": "Feature", "properties": { "location": "925 GRANITE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091344380469593, 40.031211659254197 ] } }, +{ "type": "Feature", "properties": { "location": "3200 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189157, 39.953665 ] } }, +{ "type": "Feature", "properties": { "location": "600 N PEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227897833938997, 39.970715112489202 ] } }, +{ "type": "Feature", "properties": { "location": "600 N PEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227897833938997, 39.970715112489202 ] } }, +{ "type": "Feature", "properties": { "location": "857 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 23RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178002, 39.952253 ] } }, +{ "type": "Feature", "properties": { "location": "3000 RUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116698396863796, 39.994059493709898 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159832, 39.942642 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159835, 39.942713 ] } }, +{ "type": "Feature", "properties": { "location": "1908 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16941, 39.965558 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133575, 39.97504 ] } }, +{ "type": "Feature", "properties": { "location": "1742 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133333, 39.97556 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160488, 39.926945 ] } }, +{ "type": "Feature", "properties": { "location": "2911 S FELTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222310373834802, 39.9213775715967 ] } }, +{ "type": "Feature", "properties": { "location": "4100 HENRY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194433, 40.0228 ] } }, +{ "type": "Feature", "properties": { "location": "300 N HOLLY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20573, 39.95897 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105817076121994, 39.999585519195698 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157172889510406, 39.954789774974103 ] } }, +{ "type": "Feature", "properties": { "location": "199 S BONSALL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178932, 39.951733 ] } }, +{ "type": "Feature", "properties": { "location": "199 S BONSALL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178917, 39.951647 ] } }, +{ "type": "Feature", "properties": { "location": "199 S BONSALL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1789, 39.951647 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153508, 39.929017 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149452888609204, 40.009023130776399 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17955, 39.941228 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129057, 39.97207 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154925, 39.929545 ] } }, +{ "type": "Feature", "properties": { "location": "900 N PENN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135173, 39.962592 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159453, 39.924253 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E EYRE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130558, 39.972447 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162382, 39.9259 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155212, 39.958943 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S JUNIPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166907, 39.932848 ] } }, +{ "type": "Feature", "properties": { "location": "100 RECTOR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22031, 40.025205 ] } }, +{ "type": "Feature", "properties": { "location": "2800 S ISEMINGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168977, 39.915138 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21241, 40.021697 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212847, 39.95534 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148103, 39.939945 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15544, 39.990452 ] } }, +{ "type": "Feature", "properties": { "location": "6100 WHEELER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226582568443902, 39.926219003183597 ] } }, +{ "type": "Feature", "properties": { "location": "3400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.195357, 40.012453 ] } }, +{ "type": "Feature", "properties": { "location": "800 WATKINS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160235, 39.927772 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16285, 39.946787 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134327, 39.970427 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "3000 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126017579456303, 39.995160933448403 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 40TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "1100 ANNIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161918, 39.935315 ] } }, +{ "type": "Feature", "properties": { "location": "2300 DELANCEY PL", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179237, 39.948033 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088537, 40.010863 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09069, 40.007655 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S GARNET ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178083852223395, 39.926081595121701 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 44TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209665, 39.95724 ] } }, +{ "type": "Feature", "properties": { "location": "6300 GREENWAY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233656845879295, 39.9279973013412 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S BEULAH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156962, 39.931457 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225328, 40.02708 ] } }, +{ "type": "Feature", "properties": { "location": "100 W WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136946456217501, 39.967327634254502 ] } }, +{ "type": "Feature", "properties": { "location": "4300 SILVERWOOD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221862, 40.027315 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162577, 39.964282 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162682, 39.963963 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "600 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155893, 39.926763 ] } }, +{ "type": "Feature", "properties": { "location": "300 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162093, 39.94555 ] } }, +{ "type": "Feature", "properties": { "location": "1216 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162285, 39.945505 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155927, 39.959672 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1738, 39.940917 ] } }, +{ "type": "Feature", "properties": { "location": "11 S ROBINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244102357559498, 39.961977842896999 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159395, 39.931837 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 35TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193007, 39.963388 ] } }, +{ "type": "Feature", "properties": { "location": "299 CECIL B MOORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142782, 39.976807 ] } }, +{ "type": "Feature", "properties": { "location": "100 SHURS LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217435, 40.022737 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.07108, 40.045953 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188688, 39.96441 ] } }, +{ "type": "Feature", "properties": { "location": "3110 KENSINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115278, 39.995558 ] } }, +{ "type": "Feature", "properties": { "location": "928 S DELHI ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15905, 39.938977 ] } }, +{ "type": "Feature", "properties": { "location": "928 S DELHI ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159028, 39.938978 ] } }, +{ "type": "Feature", "properties": { "location": "800 S HUTCHINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158415, 39.939663 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17022, 39.936187 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16304, 39.923023 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187989848690293, 39.9588431484175 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162792, 39.967257 ] } }, +{ "type": "Feature", "properties": { "location": "1900 NORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168902, 39.966728 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155672, 39.929048 ] } }, +{ "type": "Feature", "properties": { "location": "4400 MAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224805, 40.025812 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "3400 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191082, 39.9599 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159532, 39.976112 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164658498483007, 39.981444208252597 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161203, 39.98217 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193898, 39.95781 ] } }, +{ "type": "Feature", "properties": { "location": "5600 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13933, 40.039097 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S ALDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227013821463203, 39.9358202863434 ] } }, +{ "type": "Feature", "properties": { "location": "400 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130470366894897, 40.032227804018802 ] } }, +{ "type": "Feature", "properties": { "location": "1905 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176120743923605, 39.9362210772357 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155398, 39.989527 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159442, 39.976228 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W CUMBERLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148619552645897, 39.990004668245398 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15354, 39.959058 ] } }, +{ "type": "Feature", "properties": { "location": "900 RITNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162383065447003, 39.919597259785498 ] } }, +{ "type": "Feature", "properties": { "location": "5500 DEVON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159151779537694, 40.046234650634801 ] } }, +{ "type": "Feature", "properties": { "location": "499 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197115, 39.96154 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151705, 39.941572 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MONUMENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163327, 39.983028 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "3500 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194078, 39.953995 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206687, 39.952587 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CHERRY ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164752, 39.955505 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176192, 39.947983 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115397, 39.994818 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15905, 39.963075 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213437, 39.956172 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153443, 39.928883 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1535, 39.928938 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153393, 39.929062 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1606349386674, 39.981382342078 ] } }, +{ "type": "Feature", "properties": { "location": "1 STRAWBERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144492, 39.948978 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W OXFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153272979239702, 39.976640145191404 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134345, 39.972233 ] } }, +{ "type": "Feature", "properties": { "location": "500 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "6100 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123734537075094, 40.043695749716903 ] } }, +{ "type": "Feature", "properties": { "location": "200 E CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127982921392999, 39.993679328318599 ] } }, +{ "type": "Feature", "properties": { "location": "200 E CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127982921392999, 39.993679328318599 ] } }, +{ "type": "Feature", "properties": { "location": "554 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103136602350901, 40.040376633806602 ] } }, +{ "type": "Feature", "properties": { "location": "170 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "5700 CHARLES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068283297670703, 40.0223232312199 ] } }, +{ "type": "Feature", "properties": { "location": "3118 LEVICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.059222906208007, 40.029302194355402 ] } }, +{ "type": "Feature", "properties": { "location": "2800 BRILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.063171619195003, 40.0026699205876 ] } }, +{ "type": "Feature", "properties": { "location": "2119 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064010298178701, 40.014484142812499 ] } }, +{ "type": "Feature", "properties": { "location": "2922 HALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064027418365995, 40.029449116713899 ] } }, +{ "type": "Feature", "properties": { "location": "2918 HALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064027418365995, 40.029449116713899 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142278148977596, 40.005691642203999 ] } }, +{ "type": "Feature", "properties": { "location": "3800 SALINA RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.978250870642299, 40.088501480257101 ] } }, +{ "type": "Feature", "properties": { "location": "3700 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197498, 39.953612 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155958, 39.95944 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156983, 39.928163 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157038, 39.928108 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157015, 39.928068 ] } }, +{ "type": "Feature", "properties": { "location": "1645 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168562, 39.929195 ] } }, +{ "type": "Feature", "properties": { "location": "1899 S 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167145, 39.926615 ] } }, +{ "type": "Feature", "properties": { "location": "2500 CLEVELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178043, 39.920307 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155702, 39.929362 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "608 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152772, 39.942445 ] } }, +{ "type": "Feature", "properties": { "location": "200 E STELLA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126541988791701, 39.9957922514157 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176657, 39.94367 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176803, 39.943718 ] } }, +{ "type": "Feature", "properties": { "location": "7600 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.061752, 40.055682 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155852372484702, 39.977683400871101 ] } }, +{ "type": "Feature", "properties": { "location": "4000 OAKMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.035209025186901, 40.038251594976799 ] } }, +{ "type": "Feature", "properties": { "location": "3400 G ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114727701512393, 40.0001050493116 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 31ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187695714913104, 39.964657494955297 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 31ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187695714913104, 39.964657494955297 ] } }, +{ "type": "Feature", "properties": { "location": "1432 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "5900 SPRING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238712160414806, 39.965404481275897 ] } }, +{ "type": "Feature", "properties": { "location": "1701 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1750748353316, 39.929874757961599 ] } }, +{ "type": "Feature", "properties": { "location": "2000 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178957850700897, 39.9314059874349 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213338, 39.956222 ] } }, +{ "type": "Feature", "properties": { "location": "800 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15997, 39.96973 ] } }, +{ "type": "Feature", "properties": { "location": "262 COBBS CREEK PKWY", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.247765984983999, 39.957897975983101 ] } }, +{ "type": "Feature", "properties": { "location": "5800 CEDAR AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239787492408297, 39.952068670958802 ] } }, +{ "type": "Feature", "properties": { "location": "100 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150372, 39.919272 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15999, 39.96078 ] } }, +{ "type": "Feature", "properties": { "location": "100 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135203, 39.980348 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152937, 39.942483 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 4TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14496, 39.96136 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125530013261397, 39.987509814559303 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151753, 39.941533 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151882, 39.941478 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N LEITHGOW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131555, 40.024538 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 45TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212202, 39.953283 ] } }, +{ "type": "Feature", "properties": { "location": "5600 ELLIOTT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233602384232, 39.9438774249275 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180413, 39.974077 ] } }, +{ "type": "Feature", "properties": { "location": "1200 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133417, 39.969522 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183619473665203, 39.975309191876697 ] } }, +{ "type": "Feature", "properties": { "location": "3500 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192733, 39.961313 ] } }, +{ "type": "Feature", "properties": { "location": "3500 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19275, 39.96134 ] } }, +{ "type": "Feature", "properties": { "location": "3500 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192672, 39.96127 ] } }, +{ "type": "Feature", "properties": { "location": "1714 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170883, 39.94499 ] } }, +{ "type": "Feature", "properties": { "location": "1700 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1711, 39.946327 ] } }, +{ "type": "Feature", "properties": { "location": "121 PLEASANT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184243714047994, 40.056099058307801 ] } }, +{ "type": "Feature", "properties": { "location": "6146 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244720028116802, 39.957578304770301 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157137, 39.952725 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CONLYN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154299971591499, 40.042762315088297 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162763, 39.958967 ] } }, +{ "type": "Feature", "properties": { "location": "2300 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17856, 39.953372 ] } }, +{ "type": "Feature", "properties": { "location": "4601 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214150681328903, 39.955546089996098 ] } }, +{ "type": "Feature", "properties": { "location": "5443 NORFOLK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232239623768095, 39.948581513477997 ] } }, +{ "type": "Feature", "properties": { "location": "229 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211798109472994, 39.954669285421097 ] } }, +{ "type": "Feature", "properties": { "location": "432 S 52ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226387714661797, 39.9527718225605 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "200 N NATRONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188575, 39.959168 ] } }, +{ "type": "Feature", "properties": { "location": "5600 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234182550131493, 39.959587991555303 ] } }, +{ "type": "Feature", "properties": { "location": "2000 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170507, 39.971553 ] } }, +{ "type": "Feature", "properties": { "location": "6600 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235898990721395, 39.9244707588648 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156142730224403, 39.924888725101901 ] } }, +{ "type": "Feature", "properties": { "location": "6000 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228784180985599, 39.930629750573097 ] } }, +{ "type": "Feature", "properties": { "location": "6700 DOREL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229944109033795, 39.916753760948701 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GUYER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230382381546093, 39.917111764473503 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158979083660498, 39.9634602048801 ] } }, +{ "type": "Feature", "properties": { "location": "600 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156974931681304, 39.924777147009202 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 40TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202747587731096, 39.965728259636002 ] } }, +{ "type": "Feature", "properties": { "location": "4827 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211983660720904, 39.941649865604099 ] } }, +{ "type": "Feature", "properties": { "location": "4827 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211983660720904, 39.941649865604099 ] } }, +{ "type": "Feature", "properties": { "location": "809 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "8900 LEWIN PL", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.025213348409906, 40.056809545637897 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177245, 39.927917 ] } }, +{ "type": "Feature", "properties": { "location": "5600 ADDISON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235423460931699, 39.953652921380097 ] } }, +{ "type": "Feature", "properties": { "location": "1500 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167638, 39.94831 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170275, 39.949477 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157172889510406, 39.954789774974103 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161893, 39.943765 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141318, 39.965457 ] } }, +{ "type": "Feature", "properties": { "location": "5100 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224900493397101, 39.972423861236898 ] } }, +{ "type": "Feature", "properties": { "location": "2649 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235869889657195, 39.915071672111203 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16264, 39.964652 ] } }, +{ "type": "Feature", "properties": { "location": "800 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156865, 39.942688 ] } }, +{ "type": "Feature", "properties": { "location": "800 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15684, 39.942553 ] } }, +{ "type": "Feature", "properties": { "location": "200 E INDIANA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127670845717006, 39.99516976572 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160308932115996, 39.982879157617504 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160308932115996, 39.982879157617504 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128988, 39.972023 ] } }, +{ "type": "Feature", "properties": { "location": "5100 SHELDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161376441088805, 40.0342012052459 ] } }, +{ "type": "Feature", "properties": { "location": "400 S WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164745, 39.944847 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139518, 39.995175 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15389, 39.929132 ] } }, +{ "type": "Feature", "properties": { "location": "576 ALCOTT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101011898529606, 40.042378908994799 ] } }, +{ "type": "Feature", "properties": { "location": "5316 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226547591533901, 39.963373653187404 ] } }, +{ "type": "Feature", "properties": { "location": "2001 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175055, 39.945863 ] } }, +{ "type": "Feature", "properties": { "location": "5200 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127713595637005, 40.030312754005699 ] } }, +{ "type": "Feature", "properties": { "location": "3300 E ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.118951350200106, 39.999064794878599 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153662, 39.928972 ] } }, +{ "type": "Feature", "properties": { "location": "6300 EVERETT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.074580462861704, 40.036959188093498 ] } }, +{ "type": "Feature", "properties": { "location": "1 SUMMER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140453, 39.953818 ] } }, +{ "type": "Feature", "properties": { "location": "1 SUMMER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139959572061997, 39.954267863426303 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170682, 39.920635 ] } }, +{ "type": "Feature", "properties": { "location": "400 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130470366894897, 40.032227804018802 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159012, 39.926692 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139033, 39.96458 ] } }, +{ "type": "Feature", "properties": { "location": "608 GREENWICH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155677, 39.929723 ] } }, +{ "type": "Feature", "properties": { "location": "3100 POTTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114924971536098, 39.996205261446804 ] } }, +{ "type": "Feature", "properties": { "location": "899 TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180183, 39.971533 ] } }, +{ "type": "Feature", "properties": { "location": "899 N TANEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18018, 39.971565 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153243, 39.94251 ] } }, +{ "type": "Feature", "properties": { "location": "600 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153305, 39.941597 ] } }, +{ "type": "Feature", "properties": { "location": "1647 BRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075502444909006, 40.022007674473102 ] } }, +{ "type": "Feature", "properties": { "location": "2500 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18309, 39.943752 ] } }, +{ "type": "Feature", "properties": { "location": "5315 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227710113265005, 39.960345409779997 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159378, 39.976712 ] } }, +{ "type": "Feature", "properties": { "location": "1518 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158758, 39.976587 ] } }, +{ "type": "Feature", "properties": { "location": "1000 IRVING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158933, 39.946837 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152515, 39.94243 ] } }, +{ "type": "Feature", "properties": { "location": "0PP 419 WYOMING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117577, 40.020783 ] } }, +{ "type": "Feature", "properties": { "location": "4600 BOUDINOT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117628, 40.020725 ] } }, +{ "type": "Feature", "properties": { "location": "4600 HURLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116953, 40.020608 ] } }, +{ "type": "Feature", "properties": { "location": "4600 HURLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11695, 40.0205 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1398325087372, 39.957321124916703 ] } }, +{ "type": "Feature", "properties": { "location": "300 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151305, 39.926907 ] } }, +{ "type": "Feature", "properties": { "location": "2100 GOULD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235764520071896, 39.92554626706 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SEARS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179926768635696, 39.935303896537498 ] } }, +{ "type": "Feature", "properties": { "location": "400 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154529043453806, 39.918582992812397 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157571175938699, 39.918338403367997 ] } }, +{ "type": "Feature", "properties": { "location": "1509 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167772, 39.94302 ] } }, +{ "type": "Feature", "properties": { "location": "1916 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176227025428801, 39.935750655900499 ] } }, +{ "type": "Feature", "properties": { "location": "640 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156241458550298, 39.928063370512 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155872, 39.933813 ] } }, +{ "type": "Feature", "properties": { "location": "2114 CARPENTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178512, 39.940642 ] } }, +{ "type": "Feature", "properties": { "location": "100 KRAMS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228002, 40.028882 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17458, 39.953012 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159515, 39.975225 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226395, 40.027493 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S WARNOCK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161697, 39.93345 ] } }, +{ "type": "Feature", "properties": { "location": "1399 W VENANGO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15035, 40.007595 ] } }, +{ "type": "Feature", "properties": { "location": "2000 SAINT JAMES ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17428, 39.949658 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171622, 39.923352 ] } }, +{ "type": "Feature", "properties": { "location": "1616 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153848011289398, 39.927932153734098 ] } }, +{ "type": "Feature", "properties": { "location": "3300 E THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099405015376504, 39.986605077691898 ] } }, +{ "type": "Feature", "properties": { "location": "4600 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213207, 39.95844 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 48TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215348, 39.945203 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ARCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19102, 39.957852 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086247, 40.013823 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1557, 39.987618 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153945060507994, 39.982820771933397 ] } }, +{ "type": "Feature", "properties": { "location": "2700 PARRISH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181348365320005, 39.971651771260802 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168245, 39.949138 ] } }, +{ "type": "Feature", "properties": { "location": "1200 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168122, 39.921553 ] } }, +{ "type": "Feature", "properties": { "location": "6400 CHELWYNDE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227404158794599, 39.920691487607897 ] } }, +{ "type": "Feature", "properties": { "location": "900 MIFFLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162095, 39.92605 ] } }, +{ "type": "Feature", "properties": { "location": "841 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687857051997, 39.922383040809997 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164043, 39.932382 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141257, 39.965325 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163387, 39.92098 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S MOLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169977, 39.937183 ] } }, +{ "type": "Feature", "properties": { "location": "500 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156675014976798, 39.916299874743999 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153593, 39.929382 ] } }, +{ "type": "Feature", "properties": { "location": "3600 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195557, 39.953203 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166203, 39.92312 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SEPVIVA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132053, 39.97511 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158198, 39.923327 ] } }, +{ "type": "Feature", "properties": { "location": "941 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156682, 39.937225 ] } }, +{ "type": "Feature", "properties": { "location": "3417 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1175767096166, 40.000987289979797 ] } }, +{ "type": "Feature", "properties": { "location": "7200 RUPERT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057283748461103, 40.044799370188301 ] } }, +{ "type": "Feature", "properties": { "location": "300 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148447, 39.937982 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 59TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237343, 39.967682 ] } }, +{ "type": "Feature", "properties": { "location": "1115 SHACKAMAXON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13325, 39.968162 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158582, 39.923735 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15825, 39.923723 ] } }, +{ "type": "Feature", "properties": { "location": "6100 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223706377762198, 39.924703617757302 ] } }, +{ "type": "Feature", "properties": { "location": "2061 KATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177112, 39.944638 ] } }, +{ "type": "Feature", "properties": { "location": "370 W DUVAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187271683136004, 40.039269170013199 ] } }, +{ "type": "Feature", "properties": { "location": "801 CORINTHIAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170898416777007, 39.969781554772098 ] } }, +{ "type": "Feature", "properties": { "location": "2200 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174117243548096, 39.970751656057999 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228080711070206, 39.925256005062799 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227018414596103, 39.942084266968202 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SHIELDS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.237124739356403, 39.9250796090774 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOBSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233186011450002, 39.919113482363798 ] } }, +{ "type": "Feature", "properties": { "location": "6702 GUYER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230382381546093, 39.917111764473503 ] } }, +{ "type": "Feature", "properties": { "location": "7200 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.037265041886897, 40.031326052479699 ] } }, +{ "type": "Feature", "properties": { "location": "300 EMILY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151760671025002, 39.922872904779503 ] } }, +{ "type": "Feature", "properties": { "location": "300 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142458, 39.969052 ] } }, +{ "type": "Feature", "properties": { "location": "800 MARCELLA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.093053068065998, 40.0315505431292 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168503, 39.930553 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CROSKEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176662, 39.956823 ] } }, +{ "type": "Feature", "properties": { "location": "1914 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173858, 39.945273 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237293441597501, 39.916219986919103 ] } }, +{ "type": "Feature", "properties": { "location": "7039 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2391293384932, 39.9174278242876 ] } }, +{ "type": "Feature", "properties": { "location": "621 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156153336714894, 39.9284454627538 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.230797962640906, 39.935526274669002 ] } }, +{ "type": "Feature", "properties": { "location": "6800 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243161553093898, 39.925447691313501 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227018414596103, 39.942084266968202 ] } }, +{ "type": "Feature", "properties": { "location": "6600 GUYER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228950817736802, 39.9180926880165 ] } }, +{ "type": "Feature", "properties": { "location": "7039 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2391293384932, 39.9174278242876 ] } }, +{ "type": "Feature", "properties": { "location": "5861 WALTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239994780185597, 39.951074446819199 ] } }, +{ "type": "Feature", "properties": { "location": "6100 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227529884946094, 39.926954104333802 ] } }, +{ "type": "Feature", "properties": { "location": "1312 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16921, 39.919148 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 45TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211972, 39.954108 ] } }, +{ "type": "Feature", "properties": { "location": "600 W ERIE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139241261315107, 40.007702724037003 ] } }, +{ "type": "Feature", "properties": { "location": "500 E LOUDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115728960409001, 40.022067391427697 ] } }, +{ "type": "Feature", "properties": { "location": "1223 S RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224320820992503, 39.941633137796799 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GROVERS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229447423696897, 39.916331200786097 ] } }, +{ "type": "Feature", "properties": { "location": "6500 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232792966578799, 39.923318525425003 ] } }, +{ "type": "Feature", "properties": { "location": "314 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188155, 39.961153 ] } }, +{ "type": "Feature", "properties": { "location": "1516 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151975, 39.929152 ] } }, +{ "type": "Feature", "properties": { "location": "400 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153052, 39.93095 ] } }, +{ "type": "Feature", "properties": { "location": "600 THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146418, 39.97163 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152204742616902, 39.935346360136599 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N CAMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140538, 40.044128 ] } }, +{ "type": "Feature", "properties": { "location": "2018 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179623, 39.926915 ] } }, +{ "type": "Feature", "properties": { "location": "110 S 53RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227245895451901, 39.958341266174699 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 59TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240195346637705, 39.954989774344497 ] } }, +{ "type": "Feature", "properties": { "location": "1 S ROBINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244102357559498, 39.961977842896999 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172517218911807, 39.937970035699699 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRING GARDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192735, 39.962788 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15578, 39.928957 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155625, 39.929282 ] } }, +{ "type": "Feature", "properties": { "location": "6400 UPLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235097740389406, 39.927844397926002 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151563, 39.941538 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2246, 40.028005 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153652, 39.959683 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134375, 39.972488 ] } }, +{ "type": "Feature", "properties": { "location": "200 DOCK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145245, 39.946605 ] } }, +{ "type": "Feature", "properties": { "location": "226 E ELEANOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120960227366297, 40.023502219994199 ] } }, +{ "type": "Feature", "properties": { "location": "100 W CAMBRIA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130516756687996, 39.994000916511503 ] } }, +{ "type": "Feature", "properties": { "location": "3747 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "800 W BUTLER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141670286803404, 40.009643343842299 ] } }, +{ "type": "Feature", "properties": { "location": "3751 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "1527 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153562, 39.928992 ] } }, +{ "type": "Feature", "properties": { "location": "1215 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159092, 39.958448 ] } }, +{ "type": "Feature", "properties": { "location": "3717 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149003189545596, 40.005222725417298 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.969962 ] } }, +{ "type": "Feature", "properties": { "location": "7018 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.06913, 40.04684 ] } }, +{ "type": "Feature", "properties": { "location": "5900 DELANCEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240995970706706, 39.955998133149201 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228168, 40.028352 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ELLA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127298235565505, 39.995328587683701 ] } }, +{ "type": "Feature", "properties": { "location": "200 E STELLA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126541988791701, 39.9957922514157 ] } }, +{ "type": "Feature", "properties": { "location": "2500 KIMBALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185496519750998, 39.941028206072602 ] } }, +{ "type": "Feature", "properties": { "location": "1456 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "2532 WEBB ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118718964919196, 39.976107690950499 ] } }, +{ "type": "Feature", "properties": { "location": "916 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155162, 39.954418 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141342, 39.965368 ] } }, +{ "type": "Feature", "properties": { "location": "299 S CAMAC ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161768, 39.946818 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157853, 39.961293 ] } }, +{ "type": "Feature", "properties": { "location": "4921 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129824315265793, 40.026109194816598 ] } }, +{ "type": "Feature", "properties": { "location": "129 E ROOSEVELT BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122373, 40.026098 ] } }, +{ "type": "Feature", "properties": { "location": "129 ROOSEVELT BL", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122338, 40.026185 ] } }, +{ "type": "Feature", "properties": { "location": "1440 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171825, 39.922048 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.086405, 40.013853 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 61ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226473483932693, 39.927372825749003 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111745, 39.994562 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228245, 40.028438 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N ALDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235943686351504, 39.975604926872499 ] } }, +{ "type": "Feature", "properties": { "location": "411 N 64TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.247360879059798, 39.969852440477503 ] } }, +{ "type": "Feature", "properties": { "location": "2906 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090798, 40.007658 ] } }, +{ "type": "Feature", "properties": { "location": "1919 E PASSYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167845, 39.926315 ] } }, +{ "type": "Feature", "properties": { "location": "1919 E PASSYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16784, 39.926288 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154317, 39.947963 ] } }, +{ "type": "Feature", "properties": { "location": "4000 SANSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203192, 39.95502 ] } }, +{ "type": "Feature", "properties": { "location": "512 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155787, 39.92123 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09085, 40.007632 ] } }, +{ "type": "Feature", "properties": { "location": "1600 HAWORTH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.079945, 40.020762 ] } }, +{ "type": "Feature", "properties": { "location": "199 N 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189153, 39.95801 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 40TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209382315601303, 39.944111042071697 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208938, 39.943783 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152308, 39.94245 ] } }, +{ "type": "Feature", "properties": { "location": "5900 DELANCEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240995970706706, 39.955998133149201 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105483, 39.98352 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166767, 39.937142 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166782, 39.937163 ] } }, +{ "type": "Feature", "properties": { "location": "1216 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163755, 39.934437 ] } }, +{ "type": "Feature", "properties": { "location": "1312 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165667, 39.935447 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155627, 39.95775 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168845, 39.918292 ] } }, +{ "type": "Feature", "properties": { "location": "3200 HURLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121582288345707, 39.998367365473101 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128515, 39.967133 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N WATTS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153372, 39.99616 ] } }, +{ "type": "Feature", "properties": { "location": "100 E LOUDON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124185, 40.023075 ] } }, +{ "type": "Feature", "properties": { "location": "6800 BUIST AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233286425901596, 39.917966129545299 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157825, 39.958242 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220333, 40.024887 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086187, 40.013763 ] } }, +{ "type": "Feature", "properties": { "location": "400 W WYOMING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132707, 40.022582 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176962, 39.953687 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LENOX AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152025, 40.008292 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LENOX AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151887, 40.008172 ] } }, +{ "type": "Feature", "properties": { "location": "100 OSBORN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211277517425899, 40.017838124011902 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15347, 40.006115 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MORAVIAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17304, 39.950905 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 60TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241936390865803, 39.956336853346599 ] } }, +{ "type": "Feature", "properties": { "location": "5141 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224886612534803, 39.955095042371497 ] } }, +{ "type": "Feature", "properties": { "location": "7001 RUTLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141332086540501, 39.996169311781699 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157907, 39.931568 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173928, 39.966212 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17393, 39.966118 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155628, 39.929853 ] } }, +{ "type": "Feature", "properties": { "location": "2700 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14755, 39.994003 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1602, 39.928088 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173028, 39.957603 ] } }, +{ "type": "Feature", "properties": { "location": "6200 ARCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244726319179705, 39.964068228444702 ] } }, +{ "type": "Feature", "properties": { "location": "100 BREAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143933, 39.953237 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 38TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197768, 39.957477 ] } }, +{ "type": "Feature", "properties": { "location": "100 E LOUDON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12435, 40.023085 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183838, 39.952338 ] } }, +{ "type": "Feature", "properties": { "location": "500 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145593, 39.971477 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMITAGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22975, 40.031848 ] } }, +{ "type": "Feature", "properties": { "location": "400 LEVERINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219297, 40.034585 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091, 40.007658 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146938, 39.936212 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.091017, 40.007487 ] } }, +{ "type": "Feature", "properties": { "location": "1200 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547, 39.942498 ] } }, +{ "type": "Feature", "properties": { "location": "960 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145453, 39.968257 ] } }, +{ "type": "Feature", "properties": { "location": "2443 MEMPHIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124338, 39.979835 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14096, 40.039252 ] } }, +{ "type": "Feature", "properties": { "location": "6500 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129285504851893, 40.051236424971997 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173868071894503, 39.967310226089701 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151722, 40.001523 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142268, 40.039615 ] } }, +{ "type": "Feature", "properties": { "location": "221 S ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234315520075796, 39.957459300003997 ] } }, +{ "type": "Feature", "properties": { "location": "6600 UPLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238190089314699, 39.925888608565401 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153815, 39.929137 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15481, 39.929472 ] } }, +{ "type": "Feature", "properties": { "location": "130 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21352, 39.956227 ] } }, +{ "type": "Feature", "properties": { "location": "2700 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160623, 39.9149 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16382, 39.950627 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134407, 39.972498 ] } }, +{ "type": "Feature", "properties": { "location": "35 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "400 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153375672391903, 39.926435117060798 ] } }, +{ "type": "Feature", "properties": { "location": "6300 N GRATZ ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149485980405501, 40.050543801114003 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177367, 39.955597 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176932, 39.95378 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177042, 39.953768 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17737, 39.953512 ] } }, +{ "type": "Feature", "properties": { "location": "439 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202987447586494, 39.960949236462199 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228133, 40.02835 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213822, 40.023247 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155147, 39.936712 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ARLINGTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162272, 39.983395 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170865755404705, 39.9282984210557 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MONUMENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163175, 39.983058 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158864884675793, 39.923441627947597 ] } }, +{ "type": "Feature", "properties": { "location": "2300 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184071432821, 39.931688877464403 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E COLUMBIA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131122, 39.971642 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171267, 39.940238 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "5800 LUDLOW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217897, 39.958345 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158293, 39.923745 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155893, 39.92141 ] } }, +{ "type": "Feature", "properties": { "location": "300 ROCKLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130815, 40.02552 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157973, 39.916518 ] } }, +{ "type": "Feature", "properties": { "location": "3600 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195045, 39.963177 ] } }, +{ "type": "Feature", "properties": { "location": "3300 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191113, 39.952798 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CARDINAL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239997, 39.992103 ] } }, +{ "type": "Feature", "properties": { "location": "700 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158065, 39.930438 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159747, 39.96823 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151538, 39.949713 ] } }, +{ "type": "Feature", "properties": { "location": "4200 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206647, 39.954682 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "5803 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225002091728697, 39.932126101603401 ] } }, +{ "type": "Feature", "properties": { "location": "4200 WAYNE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156947679206596, 40.017536041202199 ] } }, +{ "type": "Feature", "properties": { "location": "30 S 62ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.244951985189402, 39.9613079583374 ] } }, +{ "type": "Feature", "properties": { "location": "200 JAMESTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215153, 40.025608 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225853, 40.02635 ] } }, +{ "type": "Feature", "properties": { "location": "614 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152818, 39.942518 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140145, 39.966332 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155767, 39.929613 ] } }, +{ "type": "Feature", "properties": { "location": "845 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687857051997, 39.922383040809997 ] } }, +{ "type": "Feature", "properties": { "location": "600 GREENWICH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155725, 39.929597 ] } }, +{ "type": "Feature", "properties": { "location": "5400 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229647, 39.956268 ] } }, +{ "type": "Feature", "properties": { "location": "3500 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192698, 39.95803 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162588, 39.948283 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189552765097901, 39.933829505942299 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155425, 39.990282 ] } }, +{ "type": "Feature", "properties": { "location": "2041 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163680270459807, 39.9853182692164 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CARPENTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162888, 39.938567 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165467, 39.918653 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 25TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175328993336905, 39.982615928463296 ] } }, +{ "type": "Feature", "properties": { "location": "200 S DARIEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1554, 39.94654 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16121, 39.930812 ] } }, +{ "type": "Feature", "properties": { "location": "200 E HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174246300807695, 40.040948821864497 ] } }, +{ "type": "Feature", "properties": { "location": "2300 W INDIANA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168452228506496, 40.0004485204311 ] } }, +{ "type": "Feature", "properties": { "location": "2747 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131266217413199, 39.991752396303198 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177896943629804, 40.003821290594303 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N HICKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150606956111602, 40.022509575181203 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 33RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190817, 39.960123 ] } }, +{ "type": "Feature", "properties": { "location": "919 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156533, 39.937833 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155427, 39.984552 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "2100 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174233, 39.962828 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E ELKHART ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114187, 39.991097 ] } }, +{ "type": "Feature", "properties": { "location": "6800 DICKS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231893643267199, 39.916783624691298 ] } }, +{ "type": "Feature", "properties": { "location": "200 FLORIST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143770667853005, 39.9543880549096 ] } }, +{ "type": "Feature", "properties": { "location": "200 FLORIST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143770667853005, 39.9543880549096 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "5813 WALTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239994780185597, 39.951074446819199 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140354590774606, 39.994504961216897 ] } }, +{ "type": "Feature", "properties": { "location": "5437 NORFOLK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232239623768095, 39.948581513477997 ] } }, +{ "type": "Feature", "properties": { "location": "2426 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171793385482303, 39.9950758319969 ] } }, +{ "type": "Feature", "properties": { "location": "2600 SHIELDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230129822325495, 39.919097764043002 ] } }, +{ "type": "Feature", "properties": { "location": "4901 CEDAR AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221925988411698, 39.949851933028299 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158732075490207, 39.982669015578502 ] } }, +{ "type": "Feature", "properties": { "location": "2317 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1754177930884, 39.970915735608997 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170685, 39.923202 ] } }, +{ "type": "Feature", "properties": { "location": "3200 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189028, 39.953767 ] } }, +{ "type": "Feature", "properties": { "location": "1400 E HUNTING PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099883, 40.0105 ] } }, +{ "type": "Feature", "properties": { "location": "1400 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167977, 39.932947 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155695, 39.928015 ] } }, +{ "type": "Feature", "properties": { "location": "3933 N DARIEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141419388586598, 40.011928406579102 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172708, 39.918398 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228242, 40.028513 ] } }, +{ "type": "Feature", "properties": { "location": "2100 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175695, 39.953923 ] } }, +{ "type": "Feature", "properties": { "location": "6300 WHEELER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229337034842004, 39.924330545924001 ] } }, +{ "type": "Feature", "properties": { "location": "2400 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176752532805594, 39.969948174210501 ] } }, +{ "type": "Feature", "properties": { "location": "4400 MAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22666, 40.0267 ] } }, +{ "type": "Feature", "properties": { "location": "400 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150653, 39.938665 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17169, 39.923267 ] } }, +{ "type": "Feature", "properties": { "location": "200 WIDENER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125320729671998, 40.041025810056901 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 66TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.251979412694993, 39.974969803031698 ] } }, +{ "type": "Feature", "properties": { "location": "3351 RIDGE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.186731232369894, 39.993847426385798 ] } }, +{ "type": "Feature", "properties": { "location": "3500 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192655, 39.958047 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E FLETCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126838, 39.977295 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160268, 39.934987 ] } }, +{ "type": "Feature", "properties": { "location": "5347 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143517, 40.034927 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146308, 39.937865 ] } }, +{ "type": "Feature", "properties": { "location": "600 AMERICAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147688, 39.941397 ] } }, +{ "type": "Feature", "properties": { "location": "248 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147392, 39.941493 ] } }, +{ "type": "Feature", "properties": { "location": "600 AMERICAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146775, 39.9412 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BELMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225294978211593, 39.940625097825198 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 46TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215007, 39.948855 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140457, 39.95421 ] } }, +{ "type": "Feature", "properties": { "location": "100 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135579646793602, 39.971909757871003 ] } }, +{ "type": "Feature", "properties": { "location": "300 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124861067352498, 39.997974517684597 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 48TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218575, 39.950972 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172517218911807, 39.937970035699699 ] } }, +{ "type": "Feature", "properties": { "location": "400 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153375672391903, 39.926435117060798 ] } }, +{ "type": "Feature", "properties": { "location": "2500 CLEVELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178048, 39.920235 ] } }, +{ "type": "Feature", "properties": { "location": "3965 BALTIMORE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202523212277399, 39.949951546984501 ] } }, +{ "type": "Feature", "properties": { "location": "3900 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201172, 39.962537 ] } }, +{ "type": "Feature", "properties": { "location": "731 E HILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116314154562303, 39.997369171418001 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ROSEHILL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124758449941993, 39.9940249648226 ] } }, +{ "type": "Feature", "properties": { "location": "2000 W MONTGOMERY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167410349819207, 39.981495462550498 ] } }, +{ "type": "Feature", "properties": { "location": "1700 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173037, 39.9324 ] } }, +{ "type": "Feature", "properties": { "location": "200 FITZWATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147528, 39.938838 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141297, 39.965405 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141268, 39.965418 ] } }, +{ "type": "Feature", "properties": { "location": "900 N LAWRENCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144522, 39.968063 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130507, 39.972405 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159542, 39.924792 ] } }, +{ "type": "Feature", "properties": { "location": "7200 FORREST AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1549471179938, 40.064148135543697 ] } }, +{ "type": "Feature", "properties": { "location": "1500 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162330121276298, 39.969907045523101 ] } }, +{ "type": "Feature", "properties": { "location": "OPP3113 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187992, 39.963853 ] } }, +{ "type": "Feature", "properties": { "location": "100 W THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137403, 39.970592 ] } }, +{ "type": "Feature", "properties": { "location": "2800 E PACIFIC ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090537237890402, 39.988013211782501 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ATLANTIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149283, 40.006388 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157278, 39.941472 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N 30TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178757664091904, 40.0036146836961 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 16TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165997, 39.955308 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170865, 39.929568 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 15TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166117, 39.948095 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.089757, 40.009557 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168798, 39.959907 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139335, 39.959095 ] } }, +{ "type": "Feature", "properties": { "location": "800 MARCELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.093053068065998, 40.0315505431292 ] } }, +{ "type": "Feature", "properties": { "location": "6400 TRINITY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239750763136101, 39.9291984466008 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174312, 39.953378 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158608, 39.920638 ] } }, +{ "type": "Feature", "properties": { "location": "906 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158365, 39.938387 ] } }, +{ "type": "Feature", "properties": { "location": "400 RIPKA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220683733540298, 40.034937533913897 ] } }, +{ "type": "Feature", "properties": { "location": "1020 S 19TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174522, 39.93955 ] } }, +{ "type": "Feature", "properties": { "location": "1100 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161495, 39.942782 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179803, 39.973442 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176107, 39.922667 ] } }, +{ "type": "Feature", "properties": { "location": "24 S 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20625, 39.95687 ] } }, +{ "type": "Feature", "properties": { "location": "4700 CHESTNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217302, 39.957472 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228213, 40.028445 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228192, 40.028487 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228205, 40.02844 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E WENSLEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.108568, 39.99691 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 68TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236994356284697, 39.921537015574899 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 11TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163772, 39.926015 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1548, 39.929592 ] } }, +{ "type": "Feature", "properties": { "location": "230 E HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173498509546704, 40.041670009076 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155387, 39.921355 ] } }, +{ "type": "Feature", "properties": { "location": "3000 SALMON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.104488, 39.982232 ] } }, +{ "type": "Feature", "properties": { "location": "3100 EDGEMONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104555221727395, 39.983108697791899 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 13TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159877, 39.958693 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169658, 39.928233 ] } }, +{ "type": "Feature", "properties": { "location": "4630 GREENE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162122036631402, 40.0251220713672 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22822, 40.028312 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228205, 40.028345 ] } }, +{ "type": "Feature", "properties": { "location": "900 LOCUST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157395, 39.947422 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183702050635304, 39.973542504934699 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228080711070206, 39.925256005062799 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GROVERS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229447423696897, 39.916331200786097 ] } }, +{ "type": "Feature", "properties": { "location": "1914 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160816253736897, 39.925506610276301 ] } }, +{ "type": "Feature", "properties": { "location": "3100 GLENVIEW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.053935294436201, 40.034911210857501 ] } }, +{ "type": "Feature", "properties": { "location": "3600 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19517, 39.953438 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158295, 39.958493 ] } }, +{ "type": "Feature", "properties": { "location": "1100 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087946233186003, 40.035059847694399 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134375, 39.972443 ] } }, +{ "type": "Feature", "properties": { "location": "6100 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223706377762198, 39.924703617757302 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "13 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "3300 F ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117011306597504, 39.998810500751901 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220433, 40.024878 ] } }, +{ "type": "Feature", "properties": { "location": "1208 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162532, 39.942267 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128068, 39.96732 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CATHARINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166397, 39.94077 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WEYMOUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115922137075401, 40.000779003129097 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155703, 39.959602 ] } }, +{ "type": "Feature", "properties": { "location": "732 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157974070036104, 39.927452652952702 ] } }, +{ "type": "Feature", "properties": { "location": "1610 FONTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160603, 39.984663 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FAIRHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156532, 39.920213 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134568, 39.973648 ] } }, +{ "type": "Feature", "properties": { "location": "6400 TRINITY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239750763136101, 39.9291984466008 ] } }, +{ "type": "Feature", "properties": { "location": "6300 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229337034842004, 39.924330545924001 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N TAYLOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170942073631593, 39.9999976042687 ] } }, +{ "type": "Feature", "properties": { "location": "801 W BRISTOL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139999735901, 40.017309957302999 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W VENANGO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153113, 40.00782 ] } }, +{ "type": "Feature", "properties": { "location": "4200 MAYWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099188672810698, 40.011204897964099 ] } }, +{ "type": "Feature", "properties": { "location": "5100 WAYNE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170119746180603, 40.026723015798702 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S BROAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169868, 39.924315 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S BROAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16984, 39.924098 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125307, 39.97083 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176340025879398, 40.0035320270309 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176340025879398, 40.0035320270309 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073713, 40.043402 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205685, 39.95329 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165432, 39.91941 ] } }, +{ "type": "Feature", "properties": { "location": "1006 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159438, 39.941995 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144475, 39.968443 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144368, 39.968413 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144518, 39.96831 ] } }, +{ "type": "Feature", "properties": { "location": "200 W ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132874310681302, 40.002174094843397 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W OLNEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147562, 40.039077 ] } }, +{ "type": "Feature", "properties": { "location": "2523 MEREDITH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179246934559202, 39.968403499901598 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155237, 39.958823 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168052, 39.954313 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167978, 39.953767 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168245, 39.95439 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168373, 39.953852 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164292, 39.951832 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169315, 39.953982 ] } }, +{ "type": "Feature", "properties": { "location": "800 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156703, 39.937158 ] } }, +{ "type": "Feature", "properties": { "location": "799 N 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17675, 39.968165 ] } }, +{ "type": "Feature", "properties": { "location": "4200 MAYWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099188672810698, 40.011204897964099 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131047, 40.025643 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROCKLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130977, 40.025575 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175322, 39.936162 ] } }, +{ "type": "Feature", "properties": { "location": "761 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148172, 39.938942 ] } }, +{ "type": "Feature", "properties": { "location": "400 QUEEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15109, 39.937743 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 23RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175981800591501, 39.9646245598951 ] } }, +{ "type": "Feature", "properties": { "location": "1400 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168278, 39.93194 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153173, 39.930873 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152173, 39.949885 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158905, 39.96303 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15172, 39.949935 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15205, 39.950015 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157493, 39.949397 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157648, 39.949277 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157482, 39.949353 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157858, 39.949322 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157575, 39.949175 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157418, 39.949397 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157548, 39.949393 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157563, 39.94914 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157413, 39.949295 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157645, 39.949358 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157598, 39.949152 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157663, 39.94913 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157483, 39.949217 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157372, 39.949333 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15756, 39.949313 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157643, 39.949323 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15755, 39.94946 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157725, 39.949353 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487, 39.949498 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487, 39.949417 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157408, 39.9495 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157442, 39.949377 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157938, 39.949292 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15795, 39.949395 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157717, 39.949478 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157813, 39.949395 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15779, 39.949352 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157663, 39.94944 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15755, 39.949477 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157947, 39.949262 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157837, 39.949398 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15798, 39.949385 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15795, 39.949333 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157682, 39.94933 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157682, 39.949412 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157272, 39.949385 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157693, 39.94945 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160703, 39.95947 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157658, 39.949492 ] } }, +{ "type": "Feature", "properties": { "location": "1000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157833, 39.949462 ] } }, +{ "type": "Feature", "properties": { "location": "906 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155025, 39.954645 ] } }, +{ "type": "Feature", "properties": { "location": "1100 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155855, 39.959747 ] } }, +{ "type": "Feature", "properties": { "location": "6500 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18386, 40.049002 ] } }, +{ "type": "Feature", "properties": { "location": "901 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1624526448106, 39.921732354050697 ] } }, +{ "type": "Feature", "properties": { "location": "900 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143060030768794, 40.008191789944298 ] } }, +{ "type": "Feature", "properties": { "location": "1399 W TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150463, 40.005932 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15487, 39.954292 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154823, 39.954455 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154832, 39.954413 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154848, 39.954222 ] } }, +{ "type": "Feature", "properties": { "location": "3340 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191262, 39.952763 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154592, 39.954435 ] } }, +{ "type": "Feature", "properties": { "location": "6011 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.24168, 39.961277 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 23RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179045, 39.948143 ] } }, +{ "type": "Feature", "properties": { "location": "200 S DARIEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155533, 39.946378 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13261, 40.02724 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 4TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1454, 39.958567 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155762, 39.928973 ] } }, +{ "type": "Feature", "properties": { "location": "1200 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166147, 39.930267 ] } }, +{ "type": "Feature", "properties": { "location": "200 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142917, 39.963422 ] } }, +{ "type": "Feature", "properties": { "location": "4000 MONUMENT RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213622266055097, 40.006602409891599 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168208, 39.935313 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168248, 39.935313 ] } }, +{ "type": "Feature", "properties": { "location": "5500 N 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13987, 40.036132 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197273, 39.954347 ] } }, +{ "type": "Feature", "properties": { "location": "3600 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195322, 39.954723 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CHURCHVIEW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21682, 40.02509 ] } }, +{ "type": "Feature", "properties": { "location": "300 E LOUDON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.119479301269493, 40.022540597853599 ] } }, +{ "type": "Feature", "properties": { "location": "300 W INDIANA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136596613896401, 39.996321531300602 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22558, 40.02689 ] } }, +{ "type": "Feature", "properties": { "location": "700 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154928, 39.939473 ] } }, +{ "type": "Feature", "properties": { "location": "2616 SOUTH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183773, 39.945943 ] } }, +{ "type": "Feature", "properties": { "location": "500 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157083, 39.9202 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157048, 39.957707 ] } }, +{ "type": "Feature", "properties": { "location": "118 DURFOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149776944048597, 39.918809227849799 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171063, 39.93334 ] } }, +{ "type": "Feature", "properties": { "location": "1316 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163918, 39.943985 ] } }, +{ "type": "Feature", "properties": { "location": "253 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "100 FERN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.120887658402097, 40.042541723495297 ] } }, +{ "type": "Feature", "properties": { "location": "100 ROSELYN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.120987101344298, 40.042059221279501 ] } }, +{ "type": "Feature", "properties": { "location": "2300 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175715, 39.967767 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168117, 39.947163 ] } }, +{ "type": "Feature", "properties": { "location": "2021 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175742, 39.945495 ] } }, +{ "type": "Feature", "properties": { "location": "114 S 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1603, 39.949723 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 47TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216808, 39.948348 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160237, 39.920612 ] } }, +{ "type": "Feature", "properties": { "location": "800 STILLMAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178652, 39.97017 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156625, 39.952775 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160933121139607, 39.983727267426097 ] } }, +{ "type": "Feature", "properties": { "location": "607 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156512714226906, 39.926852111975499 ] } }, +{ "type": "Feature", "properties": { "location": "400 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202987447586494, 39.960949236462199 ] } }, +{ "type": "Feature", "properties": { "location": "435 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202987447586494, 39.960949236462199 ] } }, +{ "type": "Feature", "properties": { "location": "435 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202987447586494, 39.960949236462199 ] } }, +{ "type": "Feature", "properties": { "location": "4400 OAKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091717832300901, 40.015898841684397 ] } }, +{ "type": "Feature", "properties": { "location": "6650 LYNFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.073054678703699, 40.041780568123997 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "4700 MASCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126022, 40.021673 ] } }, +{ "type": "Feature", "properties": { "location": "3900 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.20122, 39.959157 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N MARVINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13947, 40.041443 ] } }, +{ "type": "Feature", "properties": { "location": "133 E ALBANUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122239347681301, 40.026739318841997 ] } }, +{ "type": "Feature", "properties": { "location": "1724 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133465, 39.975252 ] } }, +{ "type": "Feature", "properties": { "location": "4700 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128236836093194, 40.022465817052399 ] } }, +{ "type": "Feature", "properties": { "location": "3400 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191088, 39.960218 ] } }, +{ "type": "Feature", "properties": { "location": "4000 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203318, 39.955758 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152727, 39.9625 ] } }, +{ "type": "Feature", "properties": { "location": "199 WIDENER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123331378820097, 40.040781849417002 ] } }, +{ "type": "Feature", "properties": { "location": "1926 S 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159427254690698, 39.924508302293297 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167092, 39.919047 ] } }, +{ "type": "Feature", "properties": { "location": "3757 RICHMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088387086289003, 39.989695769509403 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163965, 39.95001 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163775, 39.950247 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173742, 39.955142 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179587780004894, 39.971431611038 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152437, 40.006305 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182615, 39.970692 ] } }, +{ "type": "Feature", "properties": { "location": "546 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154055, 39.933163 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172203, 39.920902 ] } }, +{ "type": "Feature", "properties": { "location": "715 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159118, 39.920572 ] } }, +{ "type": "Feature", "properties": { "location": "1500 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168925, 39.943255 ] } }, +{ "type": "Feature", "properties": { "location": "500 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154508, 39.932395 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163943, 39.950162 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152518, 39.942355 ] } }, +{ "type": "Feature", "properties": { "location": "2501 S MILDRED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161498653227994, 39.917556712142598 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 35TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194075, 39.96104 ] } }, +{ "type": "Feature", "properties": { "location": "4936 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221303984573197, 39.955260035227298 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143747, 39.969703 ] } }, +{ "type": "Feature", "properties": { "location": "500 ELKINS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132313, 40.037352 ] } }, +{ "type": "Feature", "properties": { "location": "1041 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156397, 39.96036 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124942885909505, 40.037878772340001 ] } }, +{ "type": "Feature", "properties": { "location": "6618 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235898990721395, 39.9244707588648 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ATLANTIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149302, 40.006348 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185893122079094, 39.974878321914801 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165035015015803, 39.9209998465208 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165322, 39.919338 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165418, 39.919362 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164413, 39.931205 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LOMBARD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178648053750507, 39.946314984438501 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S HOWARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147308, 39.929053 ] } }, +{ "type": "Feature", "properties": { "location": "300 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222495, 40.029518 ] } }, +{ "type": "Feature", "properties": { "location": "300 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222523, 40.02952 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "3013 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153362, 39.9989 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176545, 39.936785 ] } }, +{ "type": "Feature", "properties": { "location": "700 S JESSUP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161021210395504, 39.9417047506318 ] } }, +{ "type": "Feature", "properties": { "location": "700 S JESSUP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161021210395504, 39.9417047506318 ] } }, +{ "type": "Feature", "properties": { "location": "2447 OLIVE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177728102367197, 39.967819114889799 ] } }, +{ "type": "Feature", "properties": { "location": "4000 OAKMONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.035563, 40.038645 ] } }, +{ "type": "Feature", "properties": { "location": "2500 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178331543988193, 39.970147694148501 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152027, 39.941587 ] } }, +{ "type": "Feature", "properties": { "location": "1253 N 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.237599440767298, 39.970911199879303 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162558, 39.924758 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144465, 39.963707 ] } }, +{ "type": "Feature", "properties": { "location": "620 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153025, 39.942485 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153055, 39.94256 ] } }, +{ "type": "Feature", "properties": { "location": "618 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153002, 39.942513 ] } }, +{ "type": "Feature", "properties": { "location": "623 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15312, 39.942438 ] } }, +{ "type": "Feature", "properties": { "location": "700 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180775, 39.9692 ] } }, +{ "type": "Feature", "properties": { "location": "232 LOCUST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145532, 39.945313 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MORAVIAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174352, 39.951022 ] } }, +{ "type": "Feature", "properties": { "location": "700 LATONA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157408, 39.933377 ] } }, +{ "type": "Feature", "properties": { "location": "200 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14759, 39.940457 ] } }, +{ "type": "Feature", "properties": { "location": "200 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147545, 39.940435 ] } }, +{ "type": "Feature", "properties": { "location": "3500 RYAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.040877, 40.037282 ] } }, +{ "type": "Feature", "properties": { "location": "4600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211166128814298, 39.945192055643801 ] } }, +{ "type": "Feature", "properties": { "location": "809 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238925750023895, 39.9480870781859 ] } }, +{ "type": "Feature", "properties": { "location": "224 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124695974647196, 40.044583159159998 ] } }, +{ "type": "Feature", "properties": { "location": "5500 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129728112218402, 40.035366412951099 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175013, 39.936962 ] } }, +{ "type": "Feature", "properties": { "location": "1713 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171002, 39.94344 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168827, 39.943603 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16883, 39.943617 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168847, 39.94357 ] } }, +{ "type": "Feature", "properties": { "location": "200 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146537, 39.937522 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205938, 39.956827 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139622, 39.956835 ] } }, +{ "type": "Feature", "properties": { "location": "1900 LOCUST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17378, 39.94945 ] } }, +{ "type": "Feature", "properties": { "location": "600 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15335, 39.942257 ] } }, +{ "type": "Feature", "properties": { "location": "2400 NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12725, 39.976645 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162993, 39.94679 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 19TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175503, 39.935225 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179993, 39.921823 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15197, 39.94994 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163815, 39.95045 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152005, 39.949702 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15201, 39.949883 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151942, 39.949518 ] } }, +{ "type": "Feature", "properties": { "location": "5800 WISSAHICKON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185772, 40.029128 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160298, 39.949557 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180814394467703, 39.942758722938201 ] } }, +{ "type": "Feature", "properties": { "location": "300 GREENWICH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150437, 39.928978 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157867, 39.958423 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "3400 A ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126517764366795, 40.002120857752097 ] } }, +{ "type": "Feature", "properties": { "location": "700 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15592, 39.939623 ] } }, +{ "type": "Feature", "properties": { "location": "64 N ROBINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243866275519807, 39.9631531775564 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226337, 40.027708 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172998, 39.948548 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15609, 39.959827 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19691, 39.95097 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172065, 39.947398 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179932, 39.922267 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153733, 39.959798 ] } }, +{ "type": "Feature", "properties": { "location": "900 BUTTONWOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153655, 39.960672 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123172, 39.973797 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163843, 39.933702 ] } }, +{ "type": "Feature", "properties": { "location": "5400 MALCOLM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2297731851111, 39.944406311984601 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163705, 39.949895 ] } }, +{ "type": "Feature", "properties": { "location": "799 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147925, 39.939545 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152827, 39.949943 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152758, 39.95005 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151723, 39.949488 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164, 39.949027 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15211, 39.950052 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152043, 39.950153 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152013, 39.95081 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152265, 39.950415 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151922, 39.949818 ] } }, +{ "type": "Feature", "properties": { "location": "4000 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203435, 39.963922 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228085, 40.028375 ] } }, +{ "type": "Feature", "properties": { "location": "1741 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132677, 39.975377 ] } }, +{ "type": "Feature", "properties": { "location": "700 S FRONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144305504358996, 39.939853576991702 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141358, 39.967818 ] } }, +{ "type": "Feature", "properties": { "location": "991 N RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146145, 39.969315 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160465, 39.942158 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160418, 39.942092 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196197, 39.957222 ] } }, +{ "type": "Feature", "properties": { "location": "1 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13459, 39.971708 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225805, 40.026497 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225893, 40.026485 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225753, 40.026598 ] } }, +{ "type": "Feature", "properties": { "location": "200 N SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158295, 39.956833 ] } }, +{ "type": "Feature", "properties": { "location": "200 N SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158223, 39.95679 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 25TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18176, 39.946365 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163775748443996, 39.9369371381934 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166272028734994, 39.951753267343001 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155135, 39.954345 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155153, 39.954257 ] } }, +{ "type": "Feature", "properties": { "location": "1300 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16799, 39.923 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172417, 39.92724 ] } }, +{ "type": "Feature", "properties": { "location": "700 S ALDER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159402, 39.941835 ] } }, +{ "type": "Feature", "properties": { "location": "4400 ALMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075150939374794, 40.000472200867101 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167515, 39.918842 ] } }, +{ "type": "Feature", "properties": { "location": "200 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147532, 39.937805 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177283, 39.954383 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148027, 39.939237 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.06943, 40.046145 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CRESTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080697456554702, 40.034334939438601 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.091048, 40.007458 ] } }, +{ "type": "Feature", "properties": { "location": "1838 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177085893626696, 39.928061577130698 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198463, 39.951195 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167433, 39.917688 ] } }, +{ "type": "Feature", "properties": { "location": "3800 HAMILTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197992452272203, 39.961430868010503 ] } }, +{ "type": "Feature", "properties": { "location": "2033 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156578533326396, 39.922915906480803 ] } }, +{ "type": "Feature", "properties": { "location": "700 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180793, 39.96934 ] } }, +{ "type": "Feature", "properties": { "location": "700 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180728, 39.969372 ] } }, +{ "type": "Feature", "properties": { "location": "900 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162704884816705, 39.918357899125603 ] } }, +{ "type": "Feature", "properties": { "location": "2100 75TH AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151791167357203, 40.068834736760401 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CHESTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206023265010998, 39.948506225023202 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171707, 39.947308 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153207, 39.950248 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15116, 39.9497 ] } }, +{ "type": "Feature", "properties": { "location": "4200 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206573, 39.954735 ] } }, +{ "type": "Feature", "properties": { "location": "766 E PASSYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152565, 39.93879 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N 20TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153853561167196, 40.044136714674501 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 3RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143253, 39.961935 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153643, 39.945978 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153568, 39.946095 ] } }, +{ "type": "Feature", "properties": { "location": "5911 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240284118109997, 39.982373910371102 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193845, 39.957812 ] } }, +{ "type": "Feature", "properties": { "location": "300 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217640426211005, 40.029120525284299 ] } }, +{ "type": "Feature", "properties": { "location": "3340 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191342, 39.952808 ] } }, +{ "type": "Feature", "properties": { "location": "7300 N 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151717295221104, 40.066752396691001 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PENNSYLVANIA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17926, 39.966647 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S AVONDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241367251961904, 39.929912890529103 ] } }, +{ "type": "Feature", "properties": { "location": "3500 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194865, 39.950567 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152808, 39.949568 ] } }, +{ "type": "Feature", "properties": { "location": "1416 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171203, 39.9207 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 10TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156128, 39.954383 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140717, 39.964068 ] } }, +{ "type": "Feature", "properties": { "location": "199 N 22ND ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175978, 39.956863 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182668, 39.970665 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1595, 39.942117 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161953, 39.93536 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183718, 39.956933 ] } }, +{ "type": "Feature", "properties": { "location": "6100 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244720028116802, 39.957578304770301 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 7TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153185, 39.94502 ] } }, +{ "type": "Feature", "properties": { "location": "2899 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182959668383006, 39.973116229474499 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "2236 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155783, 39.959637 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155897, 39.959603 ] } }, +{ "type": "Feature", "properties": { "location": "926 FARRAGUT TER", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215278668577199, 39.948083951348998 ] } }, +{ "type": "Feature", "properties": { "location": "700 CLYMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155068, 39.940007 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175827, 39.947993 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170447, 39.92947 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 4TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14516, 39.959917 ] } }, +{ "type": "Feature", "properties": { "location": "1500 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166578, 39.9479 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FITZWATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171332, 39.942458 ] } }, +{ "type": "Feature", "properties": { "location": "2300 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181659253546499, 39.942730435679501 ] } }, +{ "type": "Feature", "properties": { "location": "2059 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177263, 39.9432 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141257, 39.965347 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182611070365994, 39.970891215557899 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 29TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184117075838202, 39.971648513496099 ] } }, +{ "type": "Feature", "properties": { "location": "1200 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162158, 39.942342 ] } }, +{ "type": "Feature", "properties": { "location": "600 CHRISTIAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154817, 39.938037 ] } }, +{ "type": "Feature", "properties": { "location": "1911 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17395, 39.944903 ] } }, +{ "type": "Feature", "properties": { "location": "1005 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160757, 39.935155 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162092, 39.958685 ] } }, +{ "type": "Feature", "properties": { "location": "N 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166475, 39.953408 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115438, 39.994718 ] } }, +{ "type": "Feature", "properties": { "location": "4600 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145090308194, 40.023382578036099 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S CHADWICK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174778, 39.921242 ] } }, +{ "type": "Feature", "properties": { "location": "504 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155595, 39.921295 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163738, 39.949387 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147788, 39.931547 ] } }, +{ "type": "Feature", "properties": { "location": "500 W SOMERVILLE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132115, 40.033558 ] } }, +{ "type": "Feature", "properties": { "location": "2700 N 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167392373525004, 39.996410514459001 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 43RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.20861, 39.955657 ] } }, +{ "type": "Feature", "properties": { "location": "4900 GREENE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164641465461003, 40.027183691140301 ] } }, +{ "type": "Feature", "properties": { "location": "3600 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194075, 39.96118 ] } }, +{ "type": "Feature", "properties": { "location": "700 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15579, 39.93378 ] } }, +{ "type": "Feature", "properties": { "location": "1513 SPRUCE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167005, 39.947325 ] } }, +{ "type": "Feature", "properties": { "location": "300 MONROE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148012, 39.9397 ] } }, +{ "type": "Feature", "properties": { "location": "850 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151814472821897, 39.966859140845997 ] } }, +{ "type": "Feature", "properties": { "location": "500 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148613, 39.958058 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149208, 39.939528 ] } }, +{ "type": "Feature", "properties": { "location": "2400 ARDELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244046601119194, 39.913266205112798 ] } }, +{ "type": "Feature", "properties": { "location": "700 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159117, 39.965992 ] } }, +{ "type": "Feature", "properties": { "location": "3335 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186731232369894, 39.993847426385798 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15485, 39.937433 ] } }, +{ "type": "Feature", "properties": { "location": "4529 OAKMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.031560477533205, 40.034079336093903 ] } }, +{ "type": "Feature", "properties": { "location": "2252 S DARIEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1611554005421, 39.921367054069499 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134342, 39.972462 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172728, 39.948357 ] } }, +{ "type": "Feature", "properties": { "location": "4400 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211932, 39.954068 ] } }, +{ "type": "Feature", "properties": { "location": "3821 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19788, 39.960003 ] } }, +{ "type": "Feature", "properties": { "location": "800 N OPAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168985, 39.971343 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173913, 39.952715 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BIGLER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166952, 39.913485 ] } }, +{ "type": "Feature", "properties": { "location": "4200 SANSOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206355, 39.955315 ] } }, +{ "type": "Feature", "properties": { "location": "200 S SYDENHAM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166958, 39.948718 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171467, 39.922038 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17184, 39.92235 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153592, 39.929357 ] } }, +{ "type": "Feature", "properties": { "location": "732 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155053, 39.941907 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123685, 39.972902 ] } }, +{ "type": "Feature", "properties": { "location": "811 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "1 E GARFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163158160783397, 40.030493346771401 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154877, 39.933022 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16389, 39.945838 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179587780004894, 39.971431611038 ] } }, +{ "type": "Feature", "properties": { "location": "200 WALNUT ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155912, 39.947298 ] } }, +{ "type": "Feature", "properties": { "location": "5100 SHELDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161376441088805, 40.0342012052459 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115468, 39.994763 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 10TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15599, 39.955307 ] } }, +{ "type": "Feature", "properties": { "location": "6900 WEATHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191743297408706, 40.052831389722698 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166242, 39.94291 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "1248 S ISEMINGER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16492, 39.934068 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181114576860494, 39.971056082780301 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213853, 40.023142 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213753, 40.023123 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173725, 39.928608 ] } }, +{ "type": "Feature", "properties": { "location": "3243 BIRCH RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -74.981461176579501, 40.096271472261201 ] } }, +{ "type": "Feature", "properties": { "location": "5900 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239802, 39.961043 ] } }, +{ "type": "Feature", "properties": { "location": "200 TROTTERS ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1443, 39.948875 ] } }, +{ "type": "Feature", "properties": { "location": "200 TROTTERS ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14441, 39.948792 ] } }, +{ "type": "Feature", "properties": { "location": "200 TROTTERS ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144402, 39.948732 ] } }, +{ "type": "Feature", "properties": { "location": "200 TROTTERS ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144230999718403, 39.949091549161402 ] } }, +{ "type": "Feature", "properties": { "location": "2400 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180865, 39.94457 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151978, 39.924543 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176612, 39.922758 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CHURCHVIEW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216885, 40.024987 ] } }, +{ "type": "Feature", "properties": { "location": "2400 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180903, 39.944618 ] } }, +{ "type": "Feature", "properties": { "location": "200 N NATRONA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188451956325295, 39.959083052204598 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169849341646994, 39.970221850758499 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143698, 39.969705 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "209 S 50TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221623809056894, 39.956159122193299 ] } }, +{ "type": "Feature", "properties": { "location": "4000 PINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203395, 39.950725 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156305, 39.931378 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156908, 39.928982 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090793, 40.007677 ] } }, +{ "type": "Feature", "properties": { "location": "500 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156487, 39.91623 ] } }, +{ "type": "Feature", "properties": { "location": "263 S 60TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241780359730797, 39.957086376941099 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E FLETCHER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124707, 39.973752 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SMICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228437, 40.030495 ] } }, +{ "type": "Feature", "properties": { "location": "300 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217640426211005, 40.029120525284299 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RUAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089007, 40.01023 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155373, 39.921182 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156928, 39.92147 ] } }, +{ "type": "Feature", "properties": { "location": "300 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216233997078703, 40.027777327623603 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174509628977901, 39.9287649771343 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166928, 39.96728 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARLBOROUGH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13244, 39.970933 ] } }, +{ "type": "Feature", "properties": { "location": "3400 GERMANTOWN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14981, 40.005595 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152155, 40.00632 ] } }, +{ "type": "Feature", "properties": { "location": "3400 GERMANTOWN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1498, 40.005822 ] } }, +{ "type": "Feature", "properties": { "location": "3400 GERMANTOWN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149862, 40.005842 ] } }, +{ "type": "Feature", "properties": { "location": "6029 SUMMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.240428965863202, 39.965953184986603 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154533, 39.924873 ] } }, +{ "type": "Feature", "properties": { "location": "5700 WYNNEFIELD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239715, 39.992033 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "650 N 57TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234155687294404, 39.970244959355099 ] } }, +{ "type": "Feature", "properties": { "location": "2200 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181886850476005, 39.933922860583202 ] } }, +{ "type": "Feature", "properties": { "location": "4939 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.119718847768894, 40.024620784515299 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172665, 39.918377 ] } }, +{ "type": "Feature", "properties": { "location": "600 HOFFMAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157717, 39.924908 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154897, 39.93748 ] } }, +{ "type": "Feature", "properties": { "location": "921 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156573, 39.937832 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155643, 39.929168 ] } }, +{ "type": "Feature", "properties": { "location": "1041 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156068023917996, 39.959979283882902 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 7TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153917, 39.941757 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153388, 39.942573 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154965, 39.933025 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WALNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1626269596009, 39.949144266835603 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204437, 39.956662 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174567893687396, 39.993582371013801 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161408, 39.977722 ] } }, +{ "type": "Feature", "properties": { "location": "5200 MONTOUR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107107999462698, 40.030276159504702 ] } }, +{ "type": "Feature", "properties": { "location": "1200 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160444598686794, 39.953032377347803 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165468, 39.918697 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164213, 39.943963 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164265, 39.943952 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164317, 39.94393 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164357, 39.943933 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176173, 39.941723 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154769384778206, 39.993146815762302 ] } }, +{ "type": "Feature", "properties": { "location": "4000 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203108277268498, 39.962201503852803 ] } }, +{ "type": "Feature", "properties": { "location": "600 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156712, 39.922772 ] } }, +{ "type": "Feature", "properties": { "location": "2955 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182277273820503, 39.954707680498402 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177247, 39.954615 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160647, 39.936213 ] } }, +{ "type": "Feature", "properties": { "location": "906 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154915, 39.95431 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175682, 39.947302 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174754906039595, 39.970265735694497 ] } }, +{ "type": "Feature", "properties": { "location": "500 W LUZERNE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136198231987507, 40.012026523666897 ] } }, +{ "type": "Feature", "properties": { "location": "1033 S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170993, 39.938767 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168202, 39.935313 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158787, 39.920373 ] } }, +{ "type": "Feature", "properties": { "location": "1199 BIGLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167553, 39.913617 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173313, 39.925525 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133007, 39.968858 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154286372780902, 39.918332882349603 ] } }, +{ "type": "Feature", "properties": { "location": "1149 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163263, 39.936098 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163317, 39.967073 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163428, 39.967007 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 24TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179247, 39.9529 ] } }, +{ "type": "Feature", "properties": { "location": "521 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502227031296, 39.933105053217403 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172517218911807, 39.937970035699699 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "600 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155332, 39.928787 ] } }, +{ "type": "Feature", "properties": { "location": "1900 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169982, 39.96054 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201825, 39.954867 ] } }, +{ "type": "Feature", "properties": { "location": "3800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198927, 39.955977 ] } }, +{ "type": "Feature", "properties": { "location": "4412 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211273428100199, 39.955191365241298 ] } }, +{ "type": "Feature", "properties": { "location": "706 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156401610341305, 39.934784001985399 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SAINT PAUL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154778154907504, 40.019448074429498 ] } }, +{ "type": "Feature", "properties": { "location": "300 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15174, 39.925793 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164395, 39.93883 ] } }, +{ "type": "Feature", "properties": { "location": "2100 DORRANCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17722, 39.925073 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171372, 39.929597 ] } }, +{ "type": "Feature", "properties": { "location": "4400 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210028, 39.957312 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170322, 39.920525 ] } }, +{ "type": "Feature", "properties": { "location": "859 CORINTHIAN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170616753788394, 39.971232801710698 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161858, 39.964523 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167388, 39.956605 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SANSOM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161793, 39.949853 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 19TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171728, 39.951952 ] } }, +{ "type": "Feature", "properties": { "location": "300 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146402, 39.95408 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ATLANTIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149205, 40.006337 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160603, 39.95319 ] } }, +{ "type": "Feature", "properties": { "location": "125 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146812, 39.933087 ] } }, +{ "type": "Feature", "properties": { "location": "125 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14672, 39.933052 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146887, 39.933163 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218525, 40.023468 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S DAGGETT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228848872348294, 39.919996731254997 ] } }, +{ "type": "Feature", "properties": { "location": "1400 ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15227, 40.009442 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17608, 39.951677 ] } }, +{ "type": "Feature", "properties": { "location": "5000 SANSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222608, 39.957353 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1588, 39.935258 ] } }, +{ "type": "Feature", "properties": { "location": "4001 SANSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202705, 39.954865 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15683, 39.952835 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136681744966097, 40.0113145367051 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137932, 39.959082 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137933, 39.959087 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137887, 39.95904 ] } }, +{ "type": "Feature", "properties": { "location": "499 N 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158065, 39.96047 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165603, 39.918678 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165513, 39.918662 ] } }, +{ "type": "Feature", "properties": { "location": "600 WILLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14901, 39.95859 ] } }, +{ "type": "Feature", "properties": { "location": "4601 WEYMOUTH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112236674572301, 40.019219666747503 ] } }, +{ "type": "Feature", "properties": { "location": "1399 W TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181188, 39.97047 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162088, 39.97171 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173853, 39.95513 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147978, 39.93958 ] } }, +{ "type": "Feature", "properties": { "location": "1221 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164127, 39.935653 ] } }, +{ "type": "Feature", "properties": { "location": "400 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1464, 39.964163 ] } }, +{ "type": "Feature", "properties": { "location": "232 N 56TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232131003138306, 39.964458990105499 ] } }, +{ "type": "Feature", "properties": { "location": "5501 WESTMINSTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230394456851698, 39.967614641455498 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128298, 39.967188 ] } }, +{ "type": "Feature", "properties": { "location": "400 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137672, 39.95799 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181268944518806, 39.9406890191391 ] } }, +{ "type": "Feature", "properties": { "location": "616 MIFFLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156881737264897, 39.9252095396374 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158343, 39.923757 ] } }, +{ "type": "Feature", "properties": { "location": "4600 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213733, 39.95783 ] } }, +{ "type": "Feature", "properties": { "location": "1530 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155155, 39.929132 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 4TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154567036306801, 39.916933462463803 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165802, 39.94434 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15346, 39.933858 ] } }, +{ "type": "Feature", "properties": { "location": "4135 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101648997886997, 40.009898994380002 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205542, 39.952692 ] } }, +{ "type": "Feature", "properties": { "location": "168 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159998, 39.920518 ] } }, +{ "type": "Feature", "properties": { "location": "300 N BROAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162375, 39.959407 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214455, 40.023908 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159327, 39.959262 ] } }, +{ "type": "Feature", "properties": { "location": "5645 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234729604511102, 39.977733102029603 ] } }, +{ "type": "Feature", "properties": { "location": "700 W LUZERNE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139805652945995, 40.012496844980497 ] } }, +{ "type": "Feature", "properties": { "location": "600 W LUZERNE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138240181700695, 40.0122888562803 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153487, 39.929253 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193388, 39.953028 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154222, 39.947427 ] } }, +{ "type": "Feature", "properties": { "location": "1000 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149970732892996, 39.983841597998101 ] } }, +{ "type": "Feature", "properties": { "location": "199 W THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137572, 39.970647 ] } }, +{ "type": "Feature", "properties": { "location": "1628 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165159007657095, 39.964294343688998 ] } }, +{ "type": "Feature", "properties": { "location": "1324 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167442, 39.930353 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159395, 39.976387 ] } }, +{ "type": "Feature", "properties": { "location": "1504 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159458, 39.976343 ] } }, +{ "type": "Feature", "properties": { "location": "2106 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174707, 39.956905 ] } }, +{ "type": "Feature", "properties": { "location": "700 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15584, 39.933782 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N DARIEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141419388586598, 40.011928406579102 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178413, 39.968132 ] } }, +{ "type": "Feature", "properties": { "location": "1636 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169562, 39.94569 ] } }, +{ "type": "Feature", "properties": { "location": "1320 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162487, 39.948382 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S HICKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171529307727397, 39.926497961230901 ] } }, +{ "type": "Feature", "properties": { "location": "761 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175522, 39.94232 ] } }, +{ "type": "Feature", "properties": { "location": "500 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150368, 39.944272 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146758, 39.93137 ] } }, +{ "type": "Feature", "properties": { "location": "2810 S 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163733864223403, 39.9138306480843 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16361, 39.94643 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W OXFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161830663930104, 39.9777455707587 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225398, 39.97239 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157172889510406, 39.954789774974103 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CARLISLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164882, 39.955813 ] } }, +{ "type": "Feature", "properties": { "location": "1232 SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125303, 39.97314 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16435, 39.92347 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176148705257901, 39.918802982195899 ] } }, +{ "type": "Feature", "properties": { "location": "309 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157017801052902, 39.9576419838642 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134268, 39.97238 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128175, 39.967313 ] } }, +{ "type": "Feature", "properties": { "location": "3000 REED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194139946981196, 39.936317453706003 ] } }, +{ "type": "Feature", "properties": { "location": "600 AMERICAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146857, 39.941168 ] } }, +{ "type": "Feature", "properties": { "location": "100 N MOLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165735, 39.95602 ] } }, +{ "type": "Feature", "properties": { "location": "324 S 24TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180215, 39.948197 ] } }, +{ "type": "Feature", "properties": { "location": "4228 CHESTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208059527264993, 39.948435881178298 ] } }, +{ "type": "Feature", "properties": { "location": "2326 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165120287040494, 39.9205935111465 ] } }, +{ "type": "Feature", "properties": { "location": "199 JAMESTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218552, 40.023505 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158792, 39.934893 ] } }, +{ "type": "Feature", "properties": { "location": "700 S JESSUP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161021210395504, 39.9417047506318 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158705, 39.920402 ] } }, +{ "type": "Feature", "properties": { "location": "6000 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242977, 39.961382 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142743, 39.961388 ] } }, +{ "type": "Feature", "properties": { "location": "170 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224502, 40.028103 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133085, 39.969213 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 29TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176765034261194, 40.005392490320602 ] } }, +{ "type": "Feature", "properties": { "location": "700 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15116, 39.940247 ] } }, +{ "type": "Feature", "properties": { "location": "400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149723, 39.945078 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163547, 39.950478 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 66TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.251979412694993, 39.974969803031698 ] } }, +{ "type": "Feature", "properties": { "location": "5408 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232140940282605, 39.949042244151698 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122997, 39.973722 ] } }, +{ "type": "Feature", "properties": { "location": "1941 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E BOSTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1292057093588, 39.984172688489899 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155677, 39.92887 ] } }, +{ "type": "Feature", "properties": { "location": "6400 VINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.248137336668904, 39.967610021047001 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133500952501905, 39.975297397213602 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W OXFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153272979239702, 39.976640145191404 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 48TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21845, 39.951843 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OSAGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219487776029496, 39.951913664417603 ] } }, +{ "type": "Feature", "properties": { "location": "3501 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127520391343793, 40.003642017451597 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134970461838506, 40.025297568942001 ] } }, +{ "type": "Feature", "properties": { "location": "2500 ASPEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179117904387297, 39.968987190782002 ] } }, +{ "type": "Feature", "properties": { "location": "1299 E FLETCHER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124382, 39.973455 ] } }, +{ "type": "Feature", "properties": { "location": "2100 DREER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130809495986895, 39.979643120718002 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153652, 39.928952 ] } }, +{ "type": "Feature", "properties": { "location": "1527 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153633, 39.929012 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22134, 40.029842 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221345, 40.029838 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22135, 40.029862 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221382, 40.029868 ] } }, +{ "type": "Feature", "properties": { "location": "900 SHACKAMAXON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13208, 39.966237 ] } }, +{ "type": "Feature", "properties": { "location": "3113 WHARTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195462468922798, 39.937730118898898 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SEPVIVA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131878, 39.975252 ] } }, +{ "type": "Feature", "properties": { "location": "1599 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132, 39.97516 ] } }, +{ "type": "Feature", "properties": { "location": "500 THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127952, 39.972795 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168727, 39.966638 ] } }, +{ "type": "Feature", "properties": { "location": "1530 E SUSQUEHANNA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127068, 39.976645 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228080711070206, 39.925256005062799 ] } }, +{ "type": "Feature", "properties": { "location": "1914 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173965, 39.945225 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157897, 39.961123 ] } }, +{ "type": "Feature", "properties": { "location": "231 N WATER ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140261951790094, 39.954926794402901 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1660690222364, 39.917512988560503 ] } }, +{ "type": "Feature", "properties": { "location": "908 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158288, 39.938392 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160628, 39.936395 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160562, 39.936363 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172747, 39.91842 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158753, 39.949393 ] } }, +{ "type": "Feature", "properties": { "location": "2100 OAKFORD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172045, 39.928442 ] } }, +{ "type": "Feature", "properties": { "location": "4606 N PENN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086785978963604, 40.016150306991698 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163797, 39.922795 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164555, 39.923715 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164583, 39.923307 ] } }, +{ "type": "Feature", "properties": { "location": "1101 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164478, 39.923793 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164552, 39.923302 ] } }, +{ "type": "Feature", "properties": { "location": "600 GAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128993, 39.975082 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146602, 39.936412 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129558, 39.972918 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129608, 39.973027 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129622, 39.972928 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167615, 39.954555 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168377, 39.954515 ] } }, +{ "type": "Feature", "properties": { "location": "2101 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161355753216199, 39.9230610780888 ] } }, +{ "type": "Feature", "properties": { "location": "1800 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170543, 39.95238 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192837, 39.950475 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176955, 39.94795 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158448, 39.958345 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17026, 39.920532 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129555, 39.97289 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "1 QUEEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143157, 39.936385 ] } }, +{ "type": "Feature", "properties": { "location": "10100 GALAHAD RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.019713954811095, 40.101156553016999 ] } }, +{ "type": "Feature", "properties": { "location": "800 W CAMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144670433075603, 39.995831356144897 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W GRANGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143987, 40.041353 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172262, 39.97055 ] } }, +{ "type": "Feature", "properties": { "location": "500 OREGON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157097360423407, 39.914915449824697 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166094769453096, 39.972325695723001 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SPRUCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214218, 39.953215 ] } }, +{ "type": "Feature", "properties": { "location": "300 KAUFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149675, 39.93784 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 67TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.253582292262607, 39.973924709183997 ] } }, +{ "type": "Feature", "properties": { "location": "2700 PARRISH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181348365320005, 39.971651771260802 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170865755404705, 39.9282984210557 ] } }, +{ "type": "Feature", "properties": { "location": "800 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154518, 39.948205 ] } }, +{ "type": "Feature", "properties": { "location": "800 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154793, 39.948305 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153412, 39.948177 ] } }, +{ "type": "Feature", "properties": { "location": "840 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154938, 39.948187 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154903, 39.945245 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154292, 39.94814 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154272, 39.947978 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122988, 39.973688 ] } }, +{ "type": "Feature", "properties": { "location": "899 S SWANSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143397, 39.936322 ] } }, +{ "type": "Feature", "properties": { "location": "899 S SWANSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143372, 39.935718 ] } }, +{ "type": "Feature", "properties": { "location": "899 S SWANSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143322, 39.936315 ] } }, +{ "type": "Feature", "properties": { "location": "899 S SWANSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143252, 39.936302 ] } }, +{ "type": "Feature", "properties": { "location": "1126 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160985, 39.94386 ] } }, +{ "type": "Feature", "properties": { "location": "899 S SWANSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1433, 39.93635 ] } }, +{ "type": "Feature", "properties": { "location": "2 QUEEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143475, 39.93642 ] } }, +{ "type": "Feature", "properties": { "location": "2 QUEEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143388, 39.936385 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 6TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153862, 39.942185 ] } }, +{ "type": "Feature", "properties": { "location": "N 4TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147077, 39.950902 ] } }, +{ "type": "Feature", "properties": { "location": "1500 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169487, 39.933122 ] } }, +{ "type": "Feature", "properties": { "location": "1400 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167987, 39.932923 ] } }, +{ "type": "Feature", "properties": { "location": "2021 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17431, 39.952153 ] } }, +{ "type": "Feature", "properties": { "location": "2021 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174225, 39.952295 ] } }, +{ "type": "Feature", "properties": { "location": "100 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176283, 39.952092 ] } }, +{ "type": "Feature", "properties": { "location": "2020 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174367, 39.952178 ] } }, +{ "type": "Feature", "properties": { "location": "100 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17643, 39.951982 ] } }, +{ "type": "Feature", "properties": { "location": "100 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176088, 39.95183 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174403, 39.952168 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 20TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173533175488998, 39.951855108571301 ] } }, +{ "type": "Feature", "properties": { "location": "2121 CONLYN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156385829407995, 40.042811806009603 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163437273571901, 39.939270976189697 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163348, 39.922808 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161535, 39.929405 ] } }, +{ "type": "Feature", "properties": { "location": "400 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145237650051897, 39.963401600086897 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W CUMBERLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150197773120993, 39.990209422094502 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARPENTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16834, 39.93938 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RORER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120239275291297, 39.997676867920703 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17395, 39.927395 ] } }, +{ "type": "Feature", "properties": { "location": "9373 NEIL RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043093581883198, 40.085036880182798 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183045, 39.957118 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191995, 39.95518 ] } }, +{ "type": "Feature", "properties": { "location": "600 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157882, 39.917652 ] } }, +{ "type": "Feature", "properties": { "location": "200 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142255, 39.962178 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 18TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171738, 39.94544 ] } }, +{ "type": "Feature", "properties": { "location": "236 CHRISTIAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148049311920801, 39.936318853922003 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129607, 39.973002 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 38TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198537, 39.953373 ] } }, +{ "type": "Feature", "properties": { "location": "2100 ARCH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17479, 39.95572 ] } }, +{ "type": "Feature", "properties": { "location": "871 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174773046027894, 39.942395280181799 ] } }, +{ "type": "Feature", "properties": { "location": "573 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132788, 40.026287 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177577, 39.942857 ] } }, +{ "type": "Feature", "properties": { "location": "2123 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1774425886655, 39.948566213345401 ] } }, +{ "type": "Feature", "properties": { "location": "2200 E THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123332, 39.974473 ] } }, +{ "type": "Feature", "properties": { "location": "600 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153533, 39.941582 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154045, 39.94615 ] } }, +{ "type": "Feature", "properties": { "location": "3600 ELDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14972, 40.00873 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160915, 39.953483 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160107, 39.953622 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15971, 39.953365 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159922, 39.953343 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159923, 39.953413 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15999, 39.953548 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 69TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243671112476804, 39.924599856092797 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126188235286605, 40.000543253065203 ] } }, +{ "type": "Feature", "properties": { "location": "3800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199742, 39.956105 ] } }, +{ "type": "Feature", "properties": { "location": "3180 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1875, 39.953898 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180978316132993, 39.944533441380003 ] } }, +{ "type": "Feature", "properties": { "location": "1221 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162385, 39.94388 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155485, 39.957767 ] } }, +{ "type": "Feature", "properties": { "location": "5800 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236492967437997, 39.964607785201999 ] } }, +{ "type": "Feature", "properties": { "location": "1300 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163952, 39.942955 ] } }, +{ "type": "Feature", "properties": { "location": "3733 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198422, 39.951168 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197227, 39.951038 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197228, 39.951033 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 33RD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19042, 39.95135 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197233, 39.951072 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197208, 39.951065 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19725, 39.95104 ] } }, +{ "type": "Feature", "properties": { "location": "3733 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197278, 39.951092 ] } }, +{ "type": "Feature", "properties": { "location": "3733 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19719, 39.951053 ] } }, +{ "type": "Feature", "properties": { "location": "3733 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197228, 39.951053 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 26TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183033, 39.946118 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174293, 39.926238 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174198, 39.926188 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13771, 39.968253 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175228, 39.950162 ] } }, +{ "type": "Feature", "properties": { "location": "2100 DELANCEY PL", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177952, 39.947732 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17983, 39.973487 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154855, 39.92948 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154852, 39.92958 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15499, 39.929518 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154712, 39.929435 ] } }, +{ "type": "Feature", "properties": { "location": "400 S HUTCHINSON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157382, 39.94451 ] } }, +{ "type": "Feature", "properties": { "location": "700 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158858, 39.926697 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158045, 39.958787 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158235, 39.958422 ] } }, +{ "type": "Feature", "properties": { "location": "400 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216017592750603, 40.029829748777402 ] } }, +{ "type": "Feature", "properties": { "location": "4400 MITCHELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215066657491903, 40.030705583339 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158525, 39.958745 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167085, 39.956568 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168088, 39.95467 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175022, 39.922502 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175022, 39.922453 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175017, 39.922508 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "2900 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184309844026302, 39.973286436461699 ] } }, +{ "type": "Feature", "properties": { "location": "6700 OAKLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068255519396203, 40.041008933091099 ] } }, +{ "type": "Feature", "properties": { "location": "931 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164283429741502, 39.939084812278097 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173305, 39.925593 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176773335667306, 39.922087351171101 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176683, 39.92266 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174292, 39.926302 ] } }, +{ "type": "Feature", "properties": { "location": "813 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172672, 39.941262 ] } }, +{ "type": "Feature", "properties": { "location": "1409 W PACIFIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15208, 40.00878 ] } }, +{ "type": "Feature", "properties": { "location": "1416 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170977, 39.92195 ] } }, +{ "type": "Feature", "properties": { "location": "2800 MERCER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112042171253194, 39.9806622629565 ] } }, +{ "type": "Feature", "properties": { "location": "324 S 24TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18015, 39.948207 ] } }, +{ "type": "Feature", "properties": { "location": "6100 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.23058, 39.928142 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231673, 39.927405 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199647, 39.954475 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 17TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173056820277395, 39.931717734410398 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155337, 39.989945 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175282, 39.92126 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17092, 39.922017 ] } }, +{ "type": "Feature", "properties": { "location": "3100 POTTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114924971536098, 39.996205261446804 ] } }, +{ "type": "Feature", "properties": { "location": "4500 MARKET ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21113, 39.958432 ] } }, +{ "type": "Feature", "properties": { "location": "3700 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196525, 39.955765 ] } }, +{ "type": "Feature", "properties": { "location": "1800 OLIVE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168472, 39.967648 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157342, 39.962465 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153652, 39.959655 ] } }, +{ "type": "Feature", "properties": { "location": "300 W DUNCANNON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129489487578894, 40.030015564798603 ] } }, +{ "type": "Feature", "properties": { "location": "600 S MARSHALL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15298, 39.941515 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163735, 39.919772 ] } }, +{ "type": "Feature", "properties": { "location": "3600 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196972, 39.955763 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197303, 39.95748 ] } }, +{ "type": "Feature", "properties": { "location": "300 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144362, 39.96371 ] } }, +{ "type": "Feature", "properties": { "location": "1900 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175867, 39.934002 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156178461314695, 39.957776657981 ] } }, +{ "type": "Feature", "properties": { "location": "2300 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17851, 39.953858 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 10TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156619164807594, 39.952048698167097 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073758, 40.043348 ] } }, +{ "type": "Feature", "properties": { "location": "500 SIGEL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154478, 39.925282 ] } }, +{ "type": "Feature", "properties": { "location": "500 SIGEL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154502, 39.925282 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141302, 39.965353 ] } }, +{ "type": "Feature", "properties": { "location": "1230 SUMMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159835, 39.957128 ] } }, +{ "type": "Feature", "properties": { "location": "4600 TILTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0691416087666, 40.0011491348654 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153592, 39.928958 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1537, 39.92901 ] } }, +{ "type": "Feature", "properties": { "location": "1527 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15359, 39.928913 ] } }, +{ "type": "Feature", "properties": { "location": "7000 VALLEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219314418937898, 40.044461697376398 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153537, 39.929275 ] } }, +{ "type": "Feature", "properties": { "location": "1614 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153592, 39.929455 ] } }, +{ "type": "Feature", "properties": { "location": "300 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152917232308994, 39.917092675955402 ] } }, +{ "type": "Feature", "properties": { "location": "700 MONTROSE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156473, 39.937833 ] } }, +{ "type": "Feature", "properties": { "location": "700 MONTROSE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156487, 39.937868 ] } }, +{ "type": "Feature", "properties": { "location": "4601 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214150681328903, 39.955546089996098 ] } }, +{ "type": "Feature", "properties": { "location": "7039 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238704806655903, 39.917073900737897 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163458, 39.95006 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070452, 40.046465 ] } }, +{ "type": "Feature", "properties": { "location": "500 RUSCOMB ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132705, 40.027348 ] } }, +{ "type": "Feature", "properties": { "location": "800 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181900742187693, 39.970805606270901 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174283, 39.926297 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168147, 39.939735 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168115, 39.939652 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168113, 39.93971 ] } }, +{ "type": "Feature", "properties": { "location": "6200 REEDLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227625596527005, 39.924901286655498 ] } }, +{ "type": "Feature", "properties": { "location": "100 W WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138895, 39.966578 ] } }, +{ "type": "Feature", "properties": { "location": "2700 S 68TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231376008158605, 39.916777052913197 ] } }, +{ "type": "Feature", "properties": { "location": "144 SHURS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216283, 40.023498 ] } }, +{ "type": "Feature", "properties": { "location": "720 E ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117129520992904, 39.9969759614482 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "2146 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178842, 39.942152 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S HICKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171529307727397, 39.926497961230901 ] } }, +{ "type": "Feature", "properties": { "location": "300 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1477, 39.944342 ] } }, +{ "type": "Feature", "properties": { "location": "900 S CECIL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.239211322196397, 39.946702754627701 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123023, 39.973707 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157172889510406, 39.954789774974103 ] } }, +{ "type": "Feature", "properties": { "location": "100 VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176197, 39.951848 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140527, 39.955165 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12924, 39.972252 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171215, 39.940137 ] } }, +{ "type": "Feature", "properties": { "location": "900 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162457, 39.918447 ] } }, +{ "type": "Feature", "properties": { "location": "900 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162704884816705, 39.918357899125603 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159418, 39.917985 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151338, 40.002962 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176618, 39.922765 ] } }, +{ "type": "Feature", "properties": { "location": "529 E WALNUT LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170999004166106, 40.048468010076697 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146573, 39.961277 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129235, 39.972233 ] } }, +{ "type": "Feature", "properties": { "location": "1100 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088307602204097, 40.034684730937002 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16692, 39.936592 ] } }, +{ "type": "Feature", "properties": { "location": "600 GREENWICH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155708, 39.929752 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157793, 39.949577 ] } }, +{ "type": "Feature", "properties": { "location": "4300 TOWER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220045, 40.026503 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171217, 39.939695 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171297, 39.939612 ] } }, +{ "type": "Feature", "properties": { "location": "1722 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13348, 39.975145 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206683, 39.952453 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142763, 39.961302 ] } }, +{ "type": "Feature", "properties": { "location": "900 N FRONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137713, 39.964862 ] } }, +{ "type": "Feature", "properties": { "location": "1800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176447, 39.923975 ] } }, +{ "type": "Feature", "properties": { "location": "700 KATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "501 PINEWOOD RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.018657984785406, 40.123772714521003 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 2ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142727, 39.955445 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163562, 39.949892 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187409269068695, 39.995389396919997 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S PERCY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163057, 39.918315 ] } }, +{ "type": "Feature", "properties": { "location": "2544 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234788011345998, 39.9179860542299 ] } }, +{ "type": "Feature", "properties": { "location": "640 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15364, 39.94265 ] } }, +{ "type": "Feature", "properties": { "location": "1406 S FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146632, 39.929697 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16689, 39.927035 ] } }, +{ "type": "Feature", "properties": { "location": "206 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124695974647196, 40.044583159159998 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180988, 39.971635 ] } }, +{ "type": "Feature", "properties": { "location": "2700 PARRISH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181348365320005, 39.971651771260802 ] } }, +{ "type": "Feature", "properties": { "location": "300 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150422815913799, 39.932331430137999 ] } }, +{ "type": "Feature", "properties": { "location": "100 MANHEIM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1673254840738, 40.028259431388697 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171023, 39.938755 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146558, 39.929743 ] } }, +{ "type": "Feature", "properties": { "location": "2314 LOCUST ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179385, 39.950048 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FARRAGUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21368, 39.946622 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171225, 39.945967 ] } }, +{ "type": "Feature", "properties": { "location": "2400 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176508032988593, 39.971041543558997 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183138, 39.957003 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156135, 39.96118 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130938, 39.973377 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155415, 39.989643 ] } }, +{ "type": "Feature", "properties": { "location": "1164 N 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161080480769201, 39.971895913784998 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128833, 39.97154 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 15TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164765, 39.954477 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170468, 39.943332 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171923, 39.939685 ] } }, +{ "type": "Feature", "properties": { "location": "1803 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129615, 39.97603 ] } }, +{ "type": "Feature", "properties": { "location": "505 S 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158477147607599, 39.943513911539299 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170883, 39.965728 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170812, 39.965728 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155425, 39.990345 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15485, 39.930898 ] } }, +{ "type": "Feature", "properties": { "location": "7100 RODNEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158087000430299, 40.058991251793699 ] } }, +{ "type": "Feature", "properties": { "location": "711 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15709, 39.930268 ] } }, +{ "type": "Feature", "properties": { "location": "1600 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160597745499402, 39.985244938189503 ] } }, +{ "type": "Feature", "properties": { "location": "400 UNION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.201198071992295, 39.961008416040798 ] } }, +{ "type": "Feature", "properties": { "location": "3313 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151153, 40.003568 ] } }, +{ "type": "Feature", "properties": { "location": "1099 N LEITHGOW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14371, 39.969635 ] } }, +{ "type": "Feature", "properties": { "location": "1599 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086295, 40.01509 ] } }, +{ "type": "Feature", "properties": { "location": "900 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154375, 39.95768 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N PATTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183309296178095, 39.995253935154302 ] } }, +{ "type": "Feature", "properties": { "location": "400 GEORGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14452, 39.968097 ] } }, +{ "type": "Feature", "properties": { "location": "200 HALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147558, 39.935083 ] } }, +{ "type": "Feature", "properties": { "location": "200 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142542, 39.96225 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SEPVIVA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131902, 39.975363 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155448, 39.984587 ] } }, +{ "type": "Feature", "properties": { "location": "20 S 15TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165263635504203, 39.9524317878045 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SAINT VINCENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068227, 40.049512 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13011, 39.968922 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130117, 39.968925 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130098, 39.968883 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130162, 39.968973 ] } }, +{ "type": "Feature", "properties": { "location": "427 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155864691778405, 39.917482027105102 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086197, 40.013808 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128237, 39.967273 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180864860096406, 39.942508322481601 ] } }, +{ "type": "Feature", "properties": { "location": "900 RITNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162383065447003, 39.919597259785498 ] } }, +{ "type": "Feature", "properties": { "location": "4400 SILVERWOOD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221823, 40.027332 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224363, 40.026713 ] } }, +{ "type": "Feature", "properties": { "location": "200 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122967, 39.973768 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17628, 39.95397 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156672, 39.95255 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1678, 39.953728 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156178461314695, 39.957776657981 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155388485861593, 39.959648400917096 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174888, 39.953192 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196918, 39.96078 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160635, 39.940082 ] } }, +{ "type": "Feature", "properties": { "location": "2111 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177385, 39.945488 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134242, 39.972297 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21242, 40.021707 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173982, 39.952692 ] } }, +{ "type": "Feature", "properties": { "location": "2500 ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164815, 39.917392 ] } }, +{ "type": "Feature", "properties": { "location": "2029 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153315, 39.922777 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176082, 39.941723 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181554201215206, 39.939417728449399 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145025, 39.969993 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18961, 39.954772 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137835595271099, 39.994183727505103 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157907, 39.944853 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164017, 39.940245 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154018246213298, 39.919580634062001 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 69TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243671112476804, 39.924599856092797 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157788, 39.92491 ] } }, +{ "type": "Feature", "properties": { "location": "5500 HADFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230734751071097, 39.943102823244999 ] } }, +{ "type": "Feature", "properties": { "location": "5800 COLGATE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102533230407104, 40.042298384526497 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156023, 39.921263 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162973, 39.923395 ] } }, +{ "type": "Feature", "properties": { "location": "200 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15078, 39.918097 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1295, 39.975815 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129445, 39.975897 ] } }, +{ "type": "Feature", "properties": { "location": "3500 POWELTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193728, 39.959825 ] } }, +{ "type": "Feature", "properties": { "location": "3800 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.198057, 39.960787 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14151, 40.039412 ] } }, +{ "type": "Feature", "properties": { "location": "1 FARRAGUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214415, 39.95635 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153888, 39.945208 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154117, 39.945898 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154103, 39.945978 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163692, 39.949962 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16377, 39.950233 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15173, 39.949962 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151373, 39.949902 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159365, 39.942088 ] } }, +{ "type": "Feature", "properties": { "location": "1 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134092, 39.972962 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154795, 39.93745 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15479, 39.937505 ] } }, +{ "type": "Feature", "properties": { "location": "600 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154753, 39.937425 ] } }, +{ "type": "Feature", "properties": { "location": "600 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154913, 39.937438 ] } }, +{ "type": "Feature", "properties": { "location": "110 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157872, 39.958403 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15087, 39.949867 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159288, 39.920555 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176955474311001, 39.921255350811101 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153255, 39.938053 ] } }, +{ "type": "Feature", "properties": { "location": "800 E PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153135, 39.9383 ] } }, +{ "type": "Feature", "properties": { "location": "410 VOLLMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154867, 39.916653 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168567, 39.949402 ] } }, +{ "type": "Feature", "properties": { "location": "1500 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1689, 39.943167 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172543, 39.947482 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155642, 39.988645 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159025, 39.949575 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N FRONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136733, 39.967277 ] } }, +{ "type": "Feature", "properties": { "location": "522 S 20TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174908, 39.945455 ] } }, +{ "type": "Feature", "properties": { "location": "508 S 20TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174918, 39.945487 ] } }, +{ "type": "Feature", "properties": { "location": "2309 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175727, 39.967362 ] } }, +{ "type": "Feature", "properties": { "location": "2309 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175643, 39.967398 ] } }, +{ "type": "Feature", "properties": { "location": "2309 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175617, 39.967465 ] } }, +{ "type": "Feature", "properties": { "location": "2309 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151542, 39.925823 ] } }, +{ "type": "Feature", "properties": { "location": "300 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15178, 39.92575 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152168, 39.924627 ] } }, +{ "type": "Feature", "properties": { "location": "900 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.945595 ] } }, +{ "type": "Feature", "properties": { "location": "1930 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176685091998607, 39.9336365728483 ] } }, +{ "type": "Feature", "properties": { "location": "5300 ARCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226839811781304, 39.961853650488997 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15638, 39.960327 ] } }, +{ "type": "Feature", "properties": { "location": "200 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214197519509298, 40.024607249323999 ] } }, +{ "type": "Feature", "properties": { "location": "1400 FITZWATER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167577, 39.941975 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FITZWATER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1797977647213, 39.943538028947202 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 24TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180583955887499, 39.946319834584898 ] } }, +{ "type": "Feature", "properties": { "location": "2300 FITZWATER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181293431681794, 39.943726529663103 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FITZWATER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1797977647213, 39.943538028947202 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13743, 39.968137 ] } }, +{ "type": "Feature", "properties": { "location": "100 SHURS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217095, 40.022982 ] } }, +{ "type": "Feature", "properties": { "location": "400 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153826460525593, 39.924364113415301 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228118, 40.028283 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228145, 40.028308 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134265, 39.9723 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134382, 39.972503 ] } }, +{ "type": "Feature", "properties": { "location": "2345 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170485398240004, 39.996003056334303 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162322, 39.963785 ] } }, +{ "type": "Feature", "properties": { "location": "900 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153915, 39.960142 ] } }, +{ "type": "Feature", "properties": { "location": "8 W DUVAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182620480027694, 40.0439308830885 ] } }, +{ "type": "Feature", "properties": { "location": "1300 ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14908, 40.009033 ] } }, +{ "type": "Feature", "properties": { "location": "11 S ROBINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244102357559498, 39.961977842896999 ] } }, +{ "type": "Feature", "properties": { "location": "1629 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155505078731494, 39.9277545765733 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152688, 39.95486 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156847, 39.928133 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156907, 39.928092 ] } }, +{ "type": "Feature", "properties": { "location": "700 AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141963, 39.963152 ] } }, +{ "type": "Feature", "properties": { "location": "4200 N 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139923284371804, 40.016480225708101 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12903, 39.972032 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129022, 39.972005 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155182, 39.959037 ] } }, +{ "type": "Feature", "properties": { "location": "2907 S FELTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222310373834802, 39.9213775715967 ] } }, +{ "type": "Feature", "properties": { "location": "3500 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19403, 39.9538 ] } }, +{ "type": "Feature", "properties": { "location": "900 W LUZERNE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142057937716899, 40.012750528419097 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 26TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179317, 39.971442 ] } }, +{ "type": "Feature", "properties": { "location": "820 N 26TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179485934708495, 39.971030938486201 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 25TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177931598840502, 39.970661349081801 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151263, 39.949847 ] } }, +{ "type": "Feature", "properties": { "location": "1700 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166730899829503, 39.9644928664639 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 41ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20575, 39.948198 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1587, 39.920295 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153185, 39.931015 ] } }, +{ "type": "Feature", "properties": { "location": "2208 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174878, 39.964938 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175963, 39.941702 ] } }, +{ "type": "Feature", "properties": { "location": "400 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151685, 39.930885 ] } }, +{ "type": "Feature", "properties": { "location": "1500 PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163115, 39.9301 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167722, 39.954572 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167725, 39.954278 ] } }, +{ "type": "Feature", "properties": { "location": "4919 ROSEHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118281228248705, 40.024509284845998 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175988, 39.941707 ] } }, +{ "type": "Feature", "properties": { "location": "2006 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176847, 39.937785 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213878, 40.023297 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213867, 40.023262 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213897, 40.02326 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213802, 40.023155 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214328751125194, 40.023652320031097 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179778, 39.973787 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160367, 39.935053 ] } }, +{ "type": "Feature", "properties": { "location": "1164 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.935053 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 24TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180012, 39.948898 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156357, 39.954577 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1700 TULIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131015, 39.975748 ] } }, +{ "type": "Feature", "properties": { "location": "1513 SPRUCE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167203, 39.94756 ] } }, +{ "type": "Feature", "properties": { "location": "900 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156142, 39.953095 ] } }, +{ "type": "Feature", "properties": { "location": "900 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156143, 39.953003 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142775, 39.961237 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179427, 39.971397 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196967, 39.960228 ] } }, +{ "type": "Feature", "properties": { "location": "3600 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195908, 39.955553 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15027, 39.92929 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146705, 39.936408 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14673, 39.936383 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146685, 39.936498 ] } }, +{ "type": "Feature", "properties": { "location": "1620 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "1622 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "1620 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1579, 39.924957 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162521567003196, 39.917694693465798 ] } }, +{ "type": "Feature", "properties": { "location": "3813 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197725, 39.960057 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "200 LEVERINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227423, 40.030643 ] } }, +{ "type": "Feature", "properties": { "location": "3700 MANAYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209124571647394, 40.017687462798698 ] } }, +{ "type": "Feature", "properties": { "location": "500 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15132, 39.944398 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FAIRHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15651, 39.920273 ] } }, +{ "type": "Feature", "properties": { "location": "1200 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156742295731107, 39.9681901185714 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153512, 39.928987 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153607, 39.92896 ] } }, +{ "type": "Feature", "properties": { "location": "6500 BOBOLINK PL", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226973964515594, 39.918100014024603 ] } }, +{ "type": "Feature", "properties": { "location": "100 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138552, 39.966733 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NEW MARKET ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138748, 39.965005 ] } }, +{ "type": "Feature", "properties": { "location": "700 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18218, 39.96994 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225555, 40.026785 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221836951648896, 40.0255767713804 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228245, 40.028307 ] } }, +{ "type": "Feature", "properties": { "location": "6202 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227625596527005, 39.924901286655498 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155156621659003, 39.936554969640497 ] } }, +{ "type": "Feature", "properties": { "location": "100 W WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136946456217501, 39.967327634254502 ] } }, +{ "type": "Feature", "properties": { "location": "1121 LEOPARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13578, 39.967727 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166812, 39.967897 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225992799238, 39.927020613403698 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16002, 39.953362 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160638, 39.953635 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170055, 39.965707 ] } }, +{ "type": "Feature", "properties": { "location": "1502 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15939, 39.976242 ] } }, +{ "type": "Feature", "properties": { "location": "800 JUDSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175299801081394, 39.970333700195901 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174916350542503, 39.970854053890299 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160388, 39.935015 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160383, 39.935042 ] } }, +{ "type": "Feature", "properties": { "location": "1200 REED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164413, 39.932468 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192938, 39.957107 ] } }, +{ "type": "Feature", "properties": { "location": "1741 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1300 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166308, 39.930238 ] } }, +{ "type": "Feature", "properties": { "location": "634 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156512714226906, 39.926852111975499 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160358, 39.966452 ] } }, +{ "type": "Feature", "properties": { "location": "400 PINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149668, 39.94355 ] } }, +{ "type": "Feature", "properties": { "location": "2700 PARRISH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181348365320005, 39.971651771260802 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S FRONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146203, 39.93117 ] } }, +{ "type": "Feature", "properties": { "location": "500 S SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161268, 39.9435 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15512, 39.9292 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147935, 39.939493 ] } }, +{ "type": "Feature", "properties": { "location": "2821 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182959668383006, 39.973116229474499 ] } }, +{ "type": "Feature", "properties": { "location": "2819 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182959668383006, 39.973116229474499 ] } }, +{ "type": "Feature", "properties": { "location": "2800 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182959668383006, 39.973116229474499 ] } }, +{ "type": "Feature", "properties": { "location": "2200 SHIELDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235631033326896, 39.923731297543199 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158608, 39.923802 ] } }, +{ "type": "Feature", "properties": { "location": "502 RIGHTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207541975219002, 40.022771162264199 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154782, 39.937437 ] } }, +{ "type": "Feature", "properties": { "location": "200 N NATRONA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188451956325295, 39.959083052204598 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S AVONDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241367251961904, 39.929912890529103 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 41ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204235, 39.956832 ] } }, +{ "type": "Feature", "properties": { "location": "3200 CHATHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105463, 39.987658 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160133, 39.920418 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 33RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189218, 39.958797 ] } }, +{ "type": "Feature", "properties": { "location": "200 W DUVAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184763848230801, 40.041724748123499 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1557, 39.933845 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 23RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1788, 39.9514 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 21ST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175437, 39.952158 ] } }, +{ "type": "Feature", "properties": { "location": "2200 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174625, 39.964243 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153166304473899, 39.934644664834202 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161193, 39.936937 ] } }, +{ "type": "Feature", "properties": { "location": "4300 J ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105604641942904, 40.013631411217297 ] } }, +{ "type": "Feature", "properties": { "location": "1300 ELBRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.07708, 40.039983 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090875, 40.007648 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155715, 39.933775 ] } }, +{ "type": "Feature", "properties": { "location": "2400 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176898, 39.967368 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160437, 39.949583 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223205, 40.028803 ] } }, +{ "type": "Feature", "properties": { "location": "800 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15873, 39.928012 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164211094318503, 39.926614023905799 ] } }, +{ "type": "Feature", "properties": { "location": "248 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124695974647196, 40.044583159159998 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13758, 39.968233 ] } }, +{ "type": "Feature", "properties": { "location": "1722 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133563, 39.975268 ] } }, +{ "type": "Feature", "properties": { "location": "1315 IRVING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163014365282194, 39.947348738543702 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179288, 39.971382 ] } }, +{ "type": "Feature", "properties": { "location": "9CC S WATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142118, 39.957542 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155577, 39.929402 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156241458550298, 39.928063370512 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152663, 39.962393 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139502287838596, 40.033563631153797 ] } }, +{ "type": "Feature", "properties": { "location": "2436 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171793385482303, 39.9950758319969 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150495, 39.928865 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15565, 39.929458 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153207, 39.923583 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171888, 39.939685 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142765, 39.961253 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160317, 39.942115 ] } }, +{ "type": "Feature", "properties": { "location": "2200 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12304, 39.973775 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123062, 39.973768 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150784765493697, 39.966745458599299 ] } }, +{ "type": "Feature", "properties": { "location": "35 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156502, 39.959803 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178303, 39.945328 ] } }, +{ "type": "Feature", "properties": { "location": "700 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180747, 39.969295 ] } }, +{ "type": "Feature", "properties": { "location": "700 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180627, 39.96931 ] } }, +{ "type": "Feature", "properties": { "location": "4227 LAWNSIDE RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.969417140032803, 40.082153065857902 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175498, 39.927592 ] } }, +{ "type": "Feature", "properties": { "location": "700 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153825, 39.944827 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 25TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178023, 39.970095 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147907, 39.939573 ] } }, +{ "type": "Feature", "properties": { "location": "5000 OSAGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223418135980396, 39.952403023651598 ] } }, +{ "type": "Feature", "properties": { "location": "6000 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241540167869601, 39.961263417181897 ] } }, +{ "type": "Feature", "properties": { "location": "258 S ALDER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158168, 39.946717 ] } }, +{ "type": "Feature", "properties": { "location": "299 S ALDER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158223, 39.946592 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152767, 39.962403 ] } }, +{ "type": "Feature", "properties": { "location": "400 GREENWICH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151965, 39.9291 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223777, 40.027115 ] } }, +{ "type": "Feature", "properties": { "location": "5647 HEISKELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169707690700406, 40.039933955989802 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BUTTONWOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162838, 39.961453 ] } }, +{ "type": "Feature", "properties": { "location": "3700 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.196135, 39.959693 ] } }, +{ "type": "Feature", "properties": { "location": "1300 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167833, 39.922795 ] } }, +{ "type": "Feature", "properties": { "location": "4600 MANSION ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227543, 40.030452 ] } }, +{ "type": "Feature", "properties": { "location": "100 DIAMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133146196637398, 39.981666011408599 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161392, 39.929967 ] } }, +{ "type": "Feature", "properties": { "location": "2109 S 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159788088332704, 39.922857154338303 ] } }, +{ "type": "Feature", "properties": { "location": "200 RICHMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13205, 39.967102 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SPRUCE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167998, 39.94725 ] } }, +{ "type": "Feature", "properties": { "location": "4800 PULASKI AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167228248037901, 40.022825236005403 ] } }, +{ "type": "Feature", "properties": { "location": "325 NANDINA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.032702061234303, 40.115716042254697 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155205, 39.954497 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CATHARINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176965, 39.9421 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 61ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226473483932693, 39.927372825749003 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141498, 39.967717 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179807, 39.973327 ] } }, +{ "type": "Feature", "properties": { "location": "300 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150422815913799, 39.932331430137999 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156912, 39.928172 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16106, 39.968425 ] } }, +{ "type": "Feature", "properties": { "location": "300 DURFOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153101684462399, 39.9192365448923 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156732, 39.960767 ] } }, +{ "type": "Feature", "properties": { "location": "5000 WARREN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223904613111699, 39.974766829781998 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ORIANNA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152157, 39.925847 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197902, 39.954473 ] } }, +{ "type": "Feature", "properties": { "location": "499 N 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158057, 39.960515 ] } }, +{ "type": "Feature", "properties": { "location": "6400 RISING SUN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09556, 40.04979 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191557, 39.957537 ] } }, +{ "type": "Feature", "properties": { "location": "2500 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127697, 39.988863 ] } }, +{ "type": "Feature", "properties": { "location": "1327 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1643, 39.943952 ] } }, +{ "type": "Feature", "properties": { "location": "500 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "102 N WOODSTOCK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173070846833298, 39.957057950852601 ] } }, +{ "type": "Feature", "properties": { "location": "3200 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18744, 39.953752 ] } }, +{ "type": "Feature", "properties": { "location": "7200 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065863, 40.050347 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134218, 39.972413 ] } }, +{ "type": "Feature", "properties": { "location": "6000 CASTOR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.08175, 40.034833 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22798, 40.028258 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227942, 40.028348 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228273, 40.028527 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156995, 39.957763 ] } }, +{ "type": "Feature", "properties": { "location": "4900 CEDAR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221925988411698, 39.949851933028299 ] } }, +{ "type": "Feature", "properties": { "location": "200 CAMAC ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159842, 39.956528 ] } }, +{ "type": "Feature", "properties": { "location": "219 CAMAC ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159768, 39.956538 ] } }, +{ "type": "Feature", "properties": { "location": "223 CAMAC ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159813, 39.956565 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 47TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215752837497803, 39.955157496056799 ] } }, +{ "type": "Feature", "properties": { "location": "1599 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086413, 40.015123 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154697, 39.954273 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17347, 39.937427 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173665, 39.95514 ] } }, +{ "type": "Feature", "properties": { "location": "5500 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231441845140793, 39.969836335690601 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143307, 39.961307 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171162396795694, 39.925619608740199 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171162396795694, 39.925619608740199 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157607, 39.949068 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157565, 39.949153 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157765, 39.949378 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151793, 39.95025 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15766, 39.94937 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157942, 39.949453 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157728, 39.949335 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15188, 39.94984 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157792, 39.949602 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151063, 39.949808 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15178, 39.949942 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151507, 39.950032 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155618, 39.957658 ] } }, +{ "type": "Feature", "properties": { "location": "7200 ALGON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073563, 40.055128 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171913, 39.922078 ] } }, +{ "type": "Feature", "properties": { "location": "1200 WHARTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164097, 39.933642 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160737, 39.925657 ] } }, +{ "type": "Feature", "properties": { "location": "600 S PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 39.942255 ] } }, +{ "type": "Feature", "properties": { "location": "900 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147972, 39.93433 ] } }, +{ "type": "Feature", "properties": { "location": "1900 GREEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169162, 39.964733 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161513, 39.956827 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160693, 39.956525 ] } }, +{ "type": "Feature", "properties": { "location": "6300 VINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.246320230342207, 39.967385001751303 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W SILVER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154133, 39.99476 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174027, 39.953085 ] } }, +{ "type": "Feature", "properties": { "location": "3132 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103047974735802, 39.983421844421798 ] } }, +{ "type": "Feature", "properties": { "location": "1900 DURFOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179077081879697, 39.922584914096603 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219445, 40.024167 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175582, 39.947098 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140165, 39.955372 ] } }, +{ "type": "Feature", "properties": { "location": "850 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146058610267801, 39.965870111414503 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16575, 39.932693 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165548, 39.935385 ] } }, +{ "type": "Feature", "properties": { "location": "430 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121994000926307, 39.997604232696901 ] } }, +{ "type": "Feature", "properties": { "location": "811 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161874195192297, 39.916967174701 ] } }, +{ "type": "Feature", "properties": { "location": "600 W NEDRO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131802465433495, 40.041705164695301 ] } }, +{ "type": "Feature", "properties": { "location": "500 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "200 RITNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151183, 39.918205 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206738, 39.956303 ] } }, +{ "type": "Feature", "properties": { "location": "6100 WHEELER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226582568443902, 39.926219003183597 ] } }, +{ "type": "Feature", "properties": { "location": "400 W SOMERVILLE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129232, 40.033178 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 35TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.192425, 39.958658 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138533395585995, 40.027285036913902 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159397, 39.976228 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159215, 39.976905 ] } }, +{ "type": "Feature", "properties": { "location": "100 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141735, 39.952735 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08636, 40.013742 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127393, 39.976885 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127395, 39.976927 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155038427281397, 39.926224225879999 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 21ST ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176797, 39.946183 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167527, 39.931595 ] } }, +{ "type": "Feature", "properties": { "location": "116 DURFOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149776944048597, 39.918809227849799 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143335, 39.969458 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153583, 39.929285 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153523, 39.92937 ] } }, +{ "type": "Feature", "properties": { "location": "300 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14836, 39.940513 ] } }, +{ "type": "Feature", "properties": { "location": "300 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151963, 39.9283 ] } }, +{ "type": "Feature", "properties": { "location": "300 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152917232308994, 39.917092675955402 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159485, 39.924802 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CHELTEN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155767999420604, 40.051865421602102 ] } }, +{ "type": "Feature", "properties": { "location": "701 S 12TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162012906474303, 39.9421317483257 ] } }, +{ "type": "Feature", "properties": { "location": "299 S CAMAC ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161777, 39.946912 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 6TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151728, 39.94497 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 6TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1516, 39.945023 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162187, 39.963923 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073582, 40.043657 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155637, 39.921445 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134263, 39.972355 ] } }, +{ "type": "Feature", "properties": { "location": "500 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153782, 39.92861 ] } }, +{ "type": "Feature", "properties": { "location": "4200 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207855, 39.953573 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15518, 39.920775 ] } }, +{ "type": "Feature", "properties": { "location": "4752 LORING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.031314792646199, 40.031064879179198 ] } }, +{ "type": "Feature", "properties": { "location": "1100 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162663, 39.924718 ] } }, +{ "type": "Feature", "properties": { "location": "1027 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15678, 39.93641 ] } }, +{ "type": "Feature", "properties": { "location": "600 E ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118433893288696, 40.000305814905801 ] } }, +{ "type": "Feature", "properties": { "location": "400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154192, 39.926137 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 17TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171375, 39.93958 ] } }, +{ "type": "Feature", "properties": { "location": "400 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15254, 39.933395 ] } }, +{ "type": "Feature", "properties": { "location": "2000 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170070223079605, 39.969115822825103 ] } }, +{ "type": "Feature", "properties": { "location": "1400 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167362, 39.935675 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155222, 39.984572 ] } }, +{ "type": "Feature", "properties": { "location": "800 WILDER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159523, 39.93095 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 23RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178493, 39.950608 ] } }, +{ "type": "Feature", "properties": { "location": "1700 LATONA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172994257574501, 39.935731232886901 ] } }, +{ "type": "Feature", "properties": { "location": "1700 LATONA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172994257574501, 39.935731232886901 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S PERCY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163230871689194, 39.917798095209697 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130483, 39.972523 ] } }, +{ "type": "Feature", "properties": { "location": "800 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160905, 39.918138 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156915, 39.928192 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176204263815904, 39.932114469660597 ] } }, +{ "type": "Feature", "properties": { "location": "1228 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158257, 39.962803 ] } }, +{ "type": "Feature", "properties": { "location": "800 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125328, 39.975542 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SHARP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213158, 40.01991 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15561, 39.929328 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127378, 39.976872 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127405, 39.976895 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146422, 39.929863 ] } }, +{ "type": "Feature", "properties": { "location": "1406 S FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14658, 39.929773 ] } }, +{ "type": "Feature", "properties": { "location": "500 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.119800283529003, 40.002064679619799 ] } }, +{ "type": "Feature", "properties": { "location": "3468 CRYSTAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118014427427099, 40.001045983065403 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235147, 39.925043 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154547, 39.92494 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127298235565505, 39.995328587683701 ] } }, +{ "type": "Feature", "properties": { "location": "5300 LESHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075091797978899, 40.0224853771699 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15328, 39.93816 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "246 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124695974647196, 40.044583159159998 ] } }, +{ "type": "Feature", "properties": { "location": "123 W ROOSEVELT BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124187, 40.02587 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164312, 39.917187 ] } }, +{ "type": "Feature", "properties": { "location": "1000 DALY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163423, 39.921413 ] } }, +{ "type": "Feature", "properties": { "location": "1000 DALY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164103852945601, 39.921572117598302 ] } }, +{ "type": "Feature", "properties": { "location": "600 S ROSEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166202304549799, 39.943067642101198 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168102, 39.954147 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165173, 39.934675 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224375, 40.02661 ] } }, +{ "type": "Feature", "properties": { "location": "699 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15907, 39.965823 ] } }, +{ "type": "Feature", "properties": { "location": "825 E RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113580765080798, 40.000226613532298 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 15TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166845, 39.945367 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197535, 39.957718 ] } }, +{ "type": "Feature", "properties": { "location": "1328 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164413, 39.944065 ] } }, +{ "type": "Feature", "properties": { "location": "1631 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169352, 39.947527 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090843, 40.007507 ] } }, +{ "type": "Feature", "properties": { "location": "3173 AGATE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108267911109607, 39.988675081499103 ] } }, +{ "type": "Feature", "properties": { "location": "128 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221465, 39.957203 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13062, 39.97252 ] } }, +{ "type": "Feature", "properties": { "location": "100 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134902, 39.977213 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123053, 39.973787 ] } }, +{ "type": "Feature", "properties": { "location": "523 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168557, 39.958293 ] } }, +{ "type": "Feature", "properties": { "location": "600 SANSOM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152237, 39.949207 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "2900 MCKINLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064390454573299, 40.029071760878502 ] } }, +{ "type": "Feature", "properties": { "location": "324 S 24TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180187, 39.94818 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1798, 39.97348 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179214045664594, 39.942299776753799 ] } }, +{ "type": "Feature", "properties": { "location": "2100 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177897, 39.945528 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 57TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236918584374195, 39.951423607853997 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 6TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151773, 39.945112 ] } }, +{ "type": "Feature", "properties": { "location": "504 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155555, 39.921477 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1532, 39.938048 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153888, 39.946002 ] } }, +{ "type": "Feature", "properties": { "location": "6233 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149786129488604, 40.049179571233999 ] } }, +{ "type": "Feature", "properties": { "location": "800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160087, 39.92189 ] } }, +{ "type": "Feature", "properties": { "location": "5000 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224215034611902, 39.948595508450403 ] } }, +{ "type": "Feature", "properties": { "location": "1600 VERNON RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164252016260505, 40.076124342793797 ] } }, +{ "type": "Feature", "properties": { "location": "2500 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178331543988193, 39.970147694148501 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170503, 39.940937 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155112, 39.920825 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 10TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154717, 39.960882 ] } }, +{ "type": "Feature", "properties": { "location": "4835 UMBRIA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233248448445494, 40.033163749223597 ] } }, +{ "type": "Feature", "properties": { "location": "320 E ALLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129646826684805, 39.967286394784303 ] } }, +{ "type": "Feature", "properties": { "location": "2932 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CREASE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132687, 39.96963 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148995, 39.939468 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153777, 39.94597 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174193, 39.92619 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17418, 39.92629 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134497, 39.971603 ] } }, +{ "type": "Feature", "properties": { "location": "3965 BALTIMORE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202523212277399, 39.949951546984501 ] } }, +{ "type": "Feature", "properties": { "location": "6800 BUIST AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233286425901596, 39.917966129545299 ] } }, +{ "type": "Feature", "properties": { "location": "6801 BUIST AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233286425901596, 39.917966129545299 ] } }, +{ "type": "Feature", "properties": { "location": "6800 BUIST AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233286425901596, 39.917966129545299 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161937, 39.958762 ] } }, +{ "type": "Feature", "properties": { "location": "300 BURNSIDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214049194712203, 40.024916876614697 ] } }, +{ "type": "Feature", "properties": { "location": "100 N MOLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16565, 39.956015 ] } }, +{ "type": "Feature", "properties": { "location": "6100 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 38TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198773, 39.953345 ] } }, +{ "type": "Feature", "properties": { "location": "649 S YEWDALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231504300663104, 39.9502701585333 ] } }, +{ "type": "Feature", "properties": { "location": "5943 HAVERFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238818414613704, 39.969699201025897 ] } }, +{ "type": "Feature", "properties": { "location": "414 EARP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152182262491195, 39.931773749520097 ] } }, +{ "type": "Feature", "properties": { "location": "3567 STOUTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103839420626201, 40.000093938472503 ] } }, +{ "type": "Feature", "properties": { "location": "6100 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223706377762198, 39.924703617757302 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155967, 39.959725 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16057, 39.936348 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140217, 39.954852 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163372, 39.946553 ] } }, +{ "type": "Feature", "properties": { "location": "2000 SAINT JAMES ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17436, 39.9495 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155775, 39.928988 ] } }, +{ "type": "Feature", "properties": { "location": "600 SANSOM ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152412, 39.948592 ] } }, +{ "type": "Feature", "properties": { "location": "635 BRILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101953081320005, 40.0391123899295 ] } }, +{ "type": "Feature", "properties": { "location": "300 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153283064191001, 39.918423775502802 ] } }, +{ "type": "Feature", "properties": { "location": "2000 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178184093304594, 39.931754689278499 ] } }, +{ "type": "Feature", "properties": { "location": "1200 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167487, 39.919015 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15353, 39.929238 ] } }, +{ "type": "Feature", "properties": { "location": "2334 ASPEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176283, 39.968735 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178223861281495, 39.930274409589003 ] } }, +{ "type": "Feature", "properties": { "location": "800 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154905, 39.948967 ] } }, +{ "type": "Feature", "properties": { "location": "900 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15704, 39.945603 ] } }, +{ "type": "Feature", "properties": { "location": "900 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157018, 39.945508 ] } }, +{ "type": "Feature", "properties": { "location": "900 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15695, 39.94526 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150037, 39.946915 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1497, 39.946663 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149695, 39.946498 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149778, 39.94617 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149602, 39.946683 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149713, 39.945915 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149672, 39.946693 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149495, 39.946905 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154348, 39.9459 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153798, 39.945907 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176898, 39.966177 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163328, 39.926065 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156627, 39.952808 ] } }, +{ "type": "Feature", "properties": { "location": "700 APPLETREE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15255, 39.953575 ] } }, +{ "type": "Feature", "properties": { "location": "4800 D ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116065948667199, 40.022493557439198 ] } }, +{ "type": "Feature", "properties": { "location": "4000 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091023, 40.007147 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N FRANKLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148565, 39.971918 ] } }, +{ "type": "Feature", "properties": { "location": "1000 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156285, 39.960225 ] } }, +{ "type": "Feature", "properties": { "location": "2199 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170631498932593, 39.979236355996598 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168948, 39.935547 ] } }, +{ "type": "Feature", "properties": { "location": "5100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224903, 39.959467 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151582, 39.925752 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15152, 39.925793 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154815, 39.945643 ] } }, +{ "type": "Feature", "properties": { "location": "6700 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231751826874103, 39.919045028464197 ] } }, +{ "type": "Feature", "properties": { "location": "4600 PAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.083955, 40.015818 ] } }, +{ "type": "Feature", "properties": { "location": "100 QUEEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14616, 39.936893 ] } }, +{ "type": "Feature", "properties": { "location": "1510 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1629, 39.96466 ] } }, +{ "type": "Feature", "properties": { "location": "2423 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107968, 39.986272 ] } }, +{ "type": "Feature", "properties": { "location": "2202 DELANCEY PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178198, 39.947995 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17058, 39.928258 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15968, 39.933023 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165243, 39.919948 ] } }, +{ "type": "Feature", "properties": { "location": "311 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157017801052902, 39.9576419838642 ] } }, +{ "type": "Feature", "properties": { "location": "311 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157017801052902, 39.9576419838642 ] } }, +{ "type": "Feature", "properties": { "location": "1300 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167933, 39.922863 ] } }, +{ "type": "Feature", "properties": { "location": "714 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159248, 39.920577 ] } }, +{ "type": "Feature", "properties": { "location": "400 E TUSCULUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124605796437507, 39.990475751623599 ] } }, +{ "type": "Feature", "properties": { "location": "200 S SYDENHAM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167012, 39.949237 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15356, 39.929335 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205805, 39.948448 ] } }, +{ "type": "Feature", "properties": { "location": "499 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19685, 39.960828 ] } }, +{ "type": "Feature", "properties": { "location": "3117 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153067, 40.000445 ] } }, +{ "type": "Feature", "properties": { "location": "2100 LOMBARD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178225, 39.946343 ] } }, +{ "type": "Feature", "properties": { "location": "602 N 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157367048852507, 39.963432644178198 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156065, 39.932665 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158692, 39.927967 ] } }, +{ "type": "Feature", "properties": { "location": "500 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127737, 39.969882 ] } }, +{ "type": "Feature", "properties": { "location": "200 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140297, 39.966237 ] } }, +{ "type": "Feature", "properties": { "location": "1900 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169248, 39.971357 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134318, 39.972398 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177896943629804, 40.003821290594303 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177896943629804, 40.003821290594303 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FEDERAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16144, 39.934672 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FEDERAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161525, 39.934708 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FEDERAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161443, 39.934685 ] } }, +{ "type": "Feature", "properties": { "location": "400 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130470366894897, 40.032227804018802 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160337, 39.942072 ] } }, +{ "type": "Feature", "properties": { "location": "1400 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167025, 39.943455 ] } }, +{ "type": "Feature", "properties": { "location": "533 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16437, 39.9437 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152732, 39.976873 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S JUNIPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167547, 39.92982 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 49TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220328, 39.947443 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156765, 39.960818 ] } }, +{ "type": "Feature", "properties": { "location": "2066 E LEHIGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121926148251603, 39.986599441085701 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158732075490207, 39.982669015578502 ] } }, +{ "type": "Feature", "properties": { "location": "300 W WYOMING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131617, 40.022497 ] } }, +{ "type": "Feature", "properties": { "location": "919 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156413, 39.93781 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134378, 39.972363 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154198, 39.931147 ] } }, +{ "type": "Feature", "properties": { "location": "1400 E PALMER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129973, 39.973892 ] } }, +{ "type": "Feature", "properties": { "location": "523 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "400 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154913, 39.921982 ] } }, +{ "type": "Feature", "properties": { "location": "900 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159045, 39.934833 ] } }, +{ "type": "Feature", "properties": { "location": "700 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18064, 39.969797 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181114576860494, 39.971056082780301 ] } }, +{ "type": "Feature", "properties": { "location": "600 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1572, 39.927635 ] } }, +{ "type": "Feature", "properties": { "location": "600 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157128, 39.927748 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164432, 39.931157 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 31ST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18576, 39.95228 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163677, 39.95044 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BOWMAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1875826734002, 40.011989975262999 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159818, 39.944652 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155717, 39.929272 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162438804761706, 39.982378840837796 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153435, 39.928788 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153423, 39.92904 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137485, 39.968643 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158208, 39.958462 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15788, 39.958355 ] } }, +{ "type": "Feature", "properties": { "location": "2315 S ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219044657366197, 39.931222943005203 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161557, 39.96382 ] } }, +{ "type": "Feature", "properties": { "location": "4950 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220573727962901, 39.956340012212699 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162722, 39.963953 ] } }, +{ "type": "Feature", "properties": { "location": "500 HOFFMAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162293, 39.925468 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1441, 39.969788 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W VICTORIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150475, 40.00805 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147387, 39.93367 ] } }, +{ "type": "Feature", "properties": { "location": "2200 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174633, 39.970693 ] } }, +{ "type": "Feature", "properties": { "location": "1529 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153627, 39.928915 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16413, 39.93239 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175117, 39.922512 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197367, 39.957417 ] } }, +{ "type": "Feature", "properties": { "location": "200 THOMAS PAINE PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145797, 39.946467 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CLINTON ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1583, 39.945217 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156178461314695, 39.957776657981 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172692, 39.941222 ] } }, +{ "type": "Feature", "properties": { "location": "5901 WEYMOUTH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106071292042103, 40.046741838476301 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158435, 39.958855 ] } }, +{ "type": "Feature", "properties": { "location": "6300 REEDLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228907420803395, 39.923982412725103 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173332, 39.918493 ] } }, +{ "type": "Feature", "properties": { "location": "400 S HUTCHINSON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157515, 39.944275 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196995, 39.960212 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140485, 39.953908 ] } }, +{ "type": "Feature", "properties": { "location": "1430 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159433, 39.97498 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S MOLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171202680219693, 39.9302186466291 ] } }, +{ "type": "Feature", "properties": { "location": "5800 ADDISON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239358129497901, 39.954141056685202 ] } }, +{ "type": "Feature", "properties": { "location": "5600 LOCUST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235653, 39.95698 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167788, 39.954462 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155888, 39.959607 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191782, 39.957552 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "4819 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 69TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243671112476804, 39.924599856092797 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183702050635304, 39.973542504934699 ] } }, +{ "type": "Feature", "properties": { "location": "1 STRAWBERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144645, 39.948397 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174152, 39.955268 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153427, 39.937003 ] } }, +{ "type": "Feature", "properties": { "location": "5648 HAZEL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2356442116875, 39.952591630431002 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156708, 39.960817 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155702, 39.959557 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228332, 40.028313 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175412, 39.947198 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134265, 39.972385 ] } }, +{ "type": "Feature", "properties": { "location": "2600 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174956638260696, 39.995566750383901 ] } }, +{ "type": "Feature", "properties": { "location": "500 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151085, 39.941042 ] } }, +{ "type": "Feature", "properties": { "location": "601 S 57TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236918584374195, 39.951423607853997 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156275, 39.931313 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167513, 39.918863 ] } }, +{ "type": "Feature", "properties": { "location": "3700 MIDVALE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193223, 40.00961 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 51ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217047, 39.94065 ] } }, +{ "type": "Feature", "properties": { "location": "1700 DELANCEY PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170928, 39.94701 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157603, 39.940848 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMITAGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229177, 40.032025 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142327, 40.039457 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154232, 39.947698 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153947, 39.947407 ] } }, +{ "type": "Feature", "properties": { "location": "900 SHACKAMAXON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132123, 39.966268 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179835, 39.973512 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16819, 39.925538 ] } }, +{ "type": "Feature", "properties": { "location": "2599 CEDAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12115, 39.980013 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165835, 39.942797 ] } }, +{ "type": "Feature", "properties": { "location": "1214 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162352, 39.943893 ] } }, +{ "type": "Feature", "properties": { "location": "1214 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16236, 39.943792 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155422, 39.984548 ] } }, +{ "type": "Feature", "properties": { "location": "2100 E BIRCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115439259171794, 39.988517308487502 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154732, 39.948992 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170918, 39.92705 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15417, 39.927833 ] } }, +{ "type": "Feature", "properties": { "location": "400 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153922, 39.927343 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154072, 39.927782 ] } }, +{ "type": "Feature", "properties": { "location": "531 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16695, 39.919212 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16719, 39.954352 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169487, 39.940798 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174285, 39.949945 ] } }, +{ "type": "Feature", "properties": { "location": "145 GAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223397313590098, 40.027268539574699 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193905, 39.957738 ] } }, +{ "type": "Feature", "properties": { "location": "1428 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171142, 39.923337 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132638, 39.975387 ] } }, +{ "type": "Feature", "properties": { "location": "1100 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165568, 39.926405 ] } }, +{ "type": "Feature", "properties": { "location": "5340 TURNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229829444696406, 39.98227899127 ] } }, +{ "type": "Feature", "properties": { "location": "300 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222538, 40.02945 ] } }, +{ "type": "Feature", "properties": { "location": "300 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222572, 40.029505 ] } }, +{ "type": "Feature", "properties": { "location": "2200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180292413966995, 39.941268571521597 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174855, 39.953193 ] } }, +{ "type": "Feature", "properties": { "location": "700 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157153, 39.933378 ] } }, +{ "type": "Feature", "properties": { "location": "699 N BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160595, 39.96671 ] } }, +{ "type": "Feature", "properties": { "location": "6148 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244720028116802, 39.957578304770301 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169247, 39.971473 ] } }, +{ "type": "Feature", "properties": { "location": "600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15727, 39.920268 ] } }, +{ "type": "Feature", "properties": { "location": "4046 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214507, 40.023928 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214543, 40.023932 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177052, 39.953672 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167355, 39.935663 ] } }, +{ "type": "Feature", "properties": { "location": "299 JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163602, 39.946982 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154913, 39.933 ] } }, +{ "type": "Feature", "properties": { "location": "1800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176392, 39.92394 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176411477823805, 39.923746315775702 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176382, 39.923912 ] } }, +{ "type": "Feature", "properties": { "location": "200 FLORIST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14452, 39.95451 ] } }, +{ "type": "Feature", "properties": { "location": "719 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "4107 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204563, 39.956643 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134285, 39.97239 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145887, 39.939443 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173137, 39.948392 ] } }, +{ "type": "Feature", "properties": { "location": "600 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209785213627597, 40.0337570562289 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134323, 39.972407 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170855, 39.964322 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16695, 39.919212 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160513, 39.92695 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17489, 39.952775 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157025, 39.92815 ] } }, +{ "type": "Feature", "properties": { "location": "835 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146697, 39.936497 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164103, 39.924907 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WIDENER PL", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144528, 40.043797 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158665, 39.959173 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13953, 39.95697 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171595, 39.929648 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212845, 39.955318 ] } }, +{ "type": "Feature", "properties": { "location": "312 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188040170852204, 39.9608137965919 ] } }, +{ "type": "Feature", "properties": { "location": "312 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188040170852204, 39.9608137965919 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173368, 39.94854 ] } }, +{ "type": "Feature", "properties": { "location": "800 N NEWKIRK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183065507723697, 39.971302003982103 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155545, 39.954358 ] } }, +{ "type": "Feature", "properties": { "location": "400 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130823, 39.971123 ] } }, +{ "type": "Feature", "properties": { "location": "2199 S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174166902689706, 39.924059523994103 ] } }, +{ "type": "Feature", "properties": { "location": "5900 WEYMOUTH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106071292042103, 40.046741838476301 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15747, 39.961622 ] } }, +{ "type": "Feature", "properties": { "location": "7600 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.060658, 40.057142 ] } }, +{ "type": "Feature", "properties": { "location": "5500 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155237, 39.984477 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 57TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.237253137887095, 39.986821862212501 ] } }, +{ "type": "Feature", "properties": { "location": "300 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150412, 39.929392 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CLARION ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165605, 39.93552 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W FLORA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184181216295201, 39.975145038392498 ] } }, +{ "type": "Feature", "properties": { "location": "2000 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170070223079605, 39.969115822825103 ] } }, +{ "type": "Feature", "properties": { "location": "6201 WEBSTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.248195307959506, 39.950792418558997 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N ORKNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139188534638805, 39.994354453478202 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213417777822997, 39.956626054705303 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161158, 39.958598 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154093, 39.9482 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138702, 39.964332 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138658, 39.964267 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138762, 39.964352 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160308932115996, 39.982879157617504 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178817690940704, 39.993132392268002 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164917, 39.921138 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MORAVIAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173205, 39.951023 ] } }, +{ "type": "Feature", "properties": { "location": "400 W THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142862, 39.970988 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161037, 39.9683 ] } }, +{ "type": "Feature", "properties": { "location": "1400 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167323, 39.935753 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162753, 39.964043 ] } }, +{ "type": "Feature", "properties": { "location": "1100 KIMBALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162257, 39.938143 ] } }, +{ "type": "Feature", "properties": { "location": "1701 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155545, 39.927527 ] } }, +{ "type": "Feature", "properties": { "location": "1808 DELANCEY PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171707, 39.947147 ] } }, +{ "type": "Feature", "properties": { "location": "1300 NECTARINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161033, 39.961693 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1647, 39.964973 ] } }, +{ "type": "Feature", "properties": { "location": "1430 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159503, 39.975027 ] } }, +{ "type": "Feature", "properties": { "location": "4200 STATION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219835, 40.02394 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142175, 39.970588 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PRINCETON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.06964, 40.048307 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PRINCETON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069595, 40.04828 ] } }, +{ "type": "Feature", "properties": { "location": "1501 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162863, 39.96404 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150918, 39.949725 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169018329613905, 39.929306198693098 ] } }, +{ "type": "Feature", "properties": { "location": "6100 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223706377762198, 39.924703617757302 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128963, 39.972108 ] } }, +{ "type": "Feature", "properties": { "location": "700 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15771, 39.92529 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15264, 39.933488 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163775748443996, 39.9369371381934 ] } }, +{ "type": "Feature", "properties": { "location": "7900 TULIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.02399, 40.033328 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154332, 39.926952 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S HICKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171529307727397, 39.926497961230901 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S HICKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171529307727397, 39.926497961230901 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CARLISLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16487, 39.956665 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143372, 40.039578 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "600 E RAYMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112056349455401, 40.017840758811801 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154655, 39.948717 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N 26TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172452465084504, 40.003301133060504 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157498, 39.940798 ] } }, +{ "type": "Feature", "properties": { "location": "100 LOCKART PLZ", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.039515166103897, 40.117995553613703 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1737, 39.95518 ] } }, +{ "type": "Feature", "properties": { "location": "503 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "258 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124695974647196, 40.044583159159998 ] } }, +{ "type": "Feature", "properties": { "location": "2317 N SMEDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159746466137193, 39.989139341399202 ] } }, +{ "type": "Feature", "properties": { "location": "600 ORIANNA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143785, 39.963592 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168172, 39.92569 ] } }, +{ "type": "Feature", "properties": { "location": "1822 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166867, 39.927022 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155677, 39.929205 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155683, 39.929197 ] } }, +{ "type": "Feature", "properties": { "location": "800 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155157, 39.946018 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E FIRTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127723953885507, 39.986353705339297 ] } }, +{ "type": "Feature", "properties": { "location": "3200 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183369207351703, 39.997657579135698 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17378, 39.936317 ] } }, +{ "type": "Feature", "properties": { "location": "1000 HAMILTON ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154787, 39.959922 ] } }, +{ "type": "Feature", "properties": { "location": "5400 GREENWAY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220470871434898, 39.937273825363597 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171092, 39.933377 ] } }, +{ "type": "Feature", "properties": { "location": "2100 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174857, 39.962117 ] } }, +{ "type": "Feature", "properties": { "location": "500 E LOUDON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115728960409001, 40.022067391427697 ] } }, +{ "type": "Feature", "properties": { "location": "300 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222436389011804, 40.032189448434401 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16479, 39.964987 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 15TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167793, 39.941258 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168103, 39.939843 ] } }, +{ "type": "Feature", "properties": { "location": "1400 FITZWATER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167463, 39.942048 ] } }, +{ "type": "Feature", "properties": { "location": "5950 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238641020730398, 39.967993434036998 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SANSOM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167288, 39.950163 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WALNUT ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164295, 39.949297 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162718, 39.950237 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176868, 39.92141 ] } }, +{ "type": "Feature", "properties": { "location": "152 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140188, 39.962843 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159372, 39.94699 ] } }, +{ "type": "Feature", "properties": { "location": "1900 FITZWATER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214298, 39.947578 ] } }, +{ "type": "Feature", "properties": { "location": "1700 REED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172931545813796, 39.933577847589902 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145937, 39.970262 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145698, 39.97149 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154018246213298, 39.919580634062001 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160563, 39.951287 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177372862266594, 39.950730847130899 ] } }, +{ "type": "Feature", "properties": { "location": "1110 S 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160075452919699, 39.936182802161397 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132817, 39.9754 ] } }, +{ "type": "Feature", "properties": { "location": "200 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147173, 39.93811 ] } }, +{ "type": "Feature", "properties": { "location": "314 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188162990061599, 39.9614348925003 ] } }, +{ "type": "Feature", "properties": { "location": "314 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188162990061599, 39.9614348925003 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142175, 39.966687 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144003, 39.969818 ] } }, +{ "type": "Feature", "properties": { "location": "4600 BALTIMORE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215533947308003, 39.9487905752963 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171107, 39.925955 ] } }, +{ "type": "Feature", "properties": { "location": "1416 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17123, 39.920675 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 19TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170825, 39.95571 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15489, 39.929533 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15476, 39.92946 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154973, 39.929488 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154778, 39.929572 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154825, 39.929523 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154795, 39.929532 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147957, 39.939517 ] } }, +{ "type": "Feature", "properties": { "location": "1823 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172822, 39.94399 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156518, 39.960223 ] } }, +{ "type": "Feature", "properties": { "location": "1041 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156068023917996, 39.959979283882902 ] } }, +{ "type": "Feature", "properties": { "location": "3665 CALUMET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195205923613102, 40.010833941984899 ] } }, +{ "type": "Feature", "properties": { "location": "3600 CALUMET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194024682651303, 40.012527821737997 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153978, 39.929133 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TURNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176678340093304, 39.980145321109802 ] } }, +{ "type": "Feature", "properties": { "location": "1300 NECTARINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160735, 39.961692 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159225, 39.976755 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S DOVER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192418370886301, 39.932943764634402 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221748, 40.030403 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170527, 39.952248 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156853, 39.92817 ] } }, +{ "type": "Feature", "properties": { "location": "309 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157017801052902, 39.9576419838642 ] } }, +{ "type": "Feature", "properties": { "location": "1453 N VOGDES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231855899987394, 39.974449988033001 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152505, 39.942355 ] } }, +{ "type": "Feature", "properties": { "location": "5401 BALTIMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232438429480396, 39.9476311579471 ] } }, +{ "type": "Feature", "properties": { "location": "300 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222615, 40.02943 ] } }, +{ "type": "Feature", "properties": { "location": "300 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222562, 40.029432 ] } }, +{ "type": "Feature", "properties": { "location": "317 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222482, 40.029398 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17222, 39.928453 ] } }, +{ "type": "Feature", "properties": { "location": "700 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1581, 39.930333 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 15TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165962, 39.949485 ] } }, +{ "type": "Feature", "properties": { "location": "1100 ARCH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158649964556702, 39.953852097650703 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158545, 39.958473 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17026, 39.942375 ] } }, +{ "type": "Feature", "properties": { "location": "700 APPLETREE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152245, 39.953512 ] } }, +{ "type": "Feature", "properties": { "location": "400 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154529043453806, 39.918582992812397 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154286372780902, 39.918332882349603 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153613, 39.960517 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201767, 39.954837 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159133, 39.962953 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163075, 39.94911 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163837, 39.950357 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163748, 39.949408 ] } }, +{ "type": "Feature", "properties": { "location": "3600 EVELINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193988, 40.01012 ] } }, +{ "type": "Feature", "properties": { "location": "634 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15343, 39.94248 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197482, 39.95745 ] } }, +{ "type": "Feature", "properties": { "location": "300 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14804, 39.944378 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166478, 39.94236 ] } }, +{ "type": "Feature", "properties": { "location": "701 S 12TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162012906474303, 39.9421317483257 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176737, 39.968612 ] } }, +{ "type": "Feature", "properties": { "location": "2200 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179702, 39.940753 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165418, 39.919453 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168198, 39.949418 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176032, 39.947223 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160067, 39.936482 ] } }, +{ "type": "Feature", "properties": { "location": "2860 ROSEHILL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125076998988803, 39.992536538091201 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1535, 39.929328 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128453, 39.96959 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BUTTONWOOD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156287, 39.960822 ] } }, +{ "type": "Feature", "properties": { "location": "1149 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163293, 39.936135 ] } }, +{ "type": "Feature", "properties": { "location": "199 JAMESTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218605, 40.023557 ] } }, +{ "type": "Feature", "properties": { "location": "1200 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166347, 39.922705 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "6141 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226582568443902, 39.926219003183597 ] } }, +{ "type": "Feature", "properties": { "location": "6143 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226582568443902, 39.926219003183597 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17229, 39.94606 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172292, 39.946182 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "1538 S BAMBREY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187477107957605, 39.933562137147199 ] } }, +{ "type": "Feature", "properties": { "location": "1700 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176557, 39.920073 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133622, 39.975167 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133593, 39.975172 ] } }, +{ "type": "Feature", "properties": { "location": "500 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164567, 39.943613 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178089557315005, 39.971246140363597 ] } }, +{ "type": "Feature", "properties": { "location": "1200 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164456844281602, 39.934640020068997 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158685, 39.92069 ] } }, +{ "type": "Feature", "properties": { "location": "500 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154245, 39.933165 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15598, 39.954388 ] } }, +{ "type": "Feature", "properties": { "location": "1800 ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11309, 39.996332 ] } }, +{ "type": "Feature", "properties": { "location": "6010 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2427440219207, 39.957331646289802 ] } }, +{ "type": "Feature", "properties": { "location": "6008 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2427440219207, 39.957331646289802 ] } }, +{ "type": "Feature", "properties": { "location": "6000 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2427440219207, 39.957331646289802 ] } }, +{ "type": "Feature", "properties": { "location": "600 S YEWDALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231504300663104, 39.9502701585333 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155867, 39.929005 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168438, 39.94934 ] } }, +{ "type": "Feature", "properties": { "location": "4200 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207773, 39.953537 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "2200 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181886850476005, 39.933922860583202 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1437, 39.966907 ] } }, +{ "type": "Feature", "properties": { "location": "601 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155858765551002, 39.962937771558998 ] } }, +{ "type": "Feature", "properties": { "location": "539 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 39TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19943, 39.961653 ] } }, +{ "type": "Feature", "properties": { "location": "800 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238925750023895, 39.9480870781859 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171162396795694, 39.925619608740199 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163775748443996, 39.9369371381934 ] } }, +{ "type": "Feature", "properties": { "location": "1713 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171012, 39.943438 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176152, 39.947245 ] } }, +{ "type": "Feature", "properties": { "location": "600 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156153336714894, 39.9284454627538 ] } }, +{ "type": "Feature", "properties": { "location": "1614 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155387, 39.928353 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16951, 39.92816 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156932, 39.952875 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163643, 39.950142 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161118, 39.924553 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163837, 39.949948 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228072, 40.028205 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158255, 39.923787 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129435, 39.975735 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178159149981994, 39.984592578310902 ] } }, +{ "type": "Feature", "properties": { "location": "400 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15329, 39.923487 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168763, 39.966713 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163687, 39.950112 ] } }, +{ "type": "Feature", "properties": { "location": "309 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157017801052902, 39.9576419838642 ] } }, +{ "type": "Feature", "properties": { "location": "900 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14742, 39.93542 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "5142 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224886612534803, 39.955095042371497 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155635, 39.92985 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155615, 39.929892 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155852372484702, 39.977683400871101 ] } }, +{ "type": "Feature", "properties": { "location": "201 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140261951790094, 39.954926794402901 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "805 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "600 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15421, 39.933668 ] } }, +{ "type": "Feature", "properties": { "location": "1617 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173844081729399, 39.924388822088702 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168385, 39.949503 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163437273571901, 39.939270976189697 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 54TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228158668102694, 39.962795205493002 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123, 39.973728 ] } }, +{ "type": "Feature", "properties": { "location": "2200 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182155250715695, 39.932698106418201 ] } }, +{ "type": "Feature", "properties": { "location": "400 ASHDALE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132208, 40.028013 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170483, 39.949685 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17223, 39.920935 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155518, 39.929548 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155587, 39.929728 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163845, 39.9415 ] } }, +{ "type": "Feature", "properties": { "location": "600 ORIANNA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148152, 39.94115 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177122, 39.954478 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134763, 39.972835 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160983, 39.952993 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155332, 39.954277 ] } }, +{ "type": "Feature", "properties": { "location": "1100 VINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157702, 39.95704 ] } }, +{ "type": "Feature", "properties": { "location": "1100 VINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157777, 39.957007 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 10TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156892, 39.950562 ] } }, +{ "type": "Feature", "properties": { "location": "1100 VINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157732, 39.957033 ] } }, +{ "type": "Feature", "properties": { "location": "1100 VINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.957002 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176923, 39.92906 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178438, 39.968167 ] } }, +{ "type": "Feature", "properties": { "location": "2200 MYRTLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174023333814006, 39.971196542143403 ] } }, +{ "type": "Feature", "properties": { "location": "3900 WARREN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128273, 39.967173 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153365, 39.93379 ] } }, +{ "type": "Feature", "properties": { "location": "721 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "1900 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170405, 39.960638 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128807, 39.969523 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073828, 40.04333 ] } }, +{ "type": "Feature", "properties": { "location": "1702 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1152 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168055, 39.936385 ] } }, +{ "type": "Feature", "properties": { "location": "623 S 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226949787890803, 39.950082769751901 ] } }, +{ "type": "Feature", "properties": { "location": "5200 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225993, 39.95709 ] } }, +{ "type": "Feature", "properties": { "location": "900 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160397, 39.934562 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179418, 39.941165 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170605, 39.928275 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156346605291105, 39.953289043748399 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228097, 40.028285 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19694, 39.96078 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176075, 39.947237 ] } }, +{ "type": "Feature", "properties": { "location": "1800 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176933, 39.9215 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16792, 39.940707 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158443, 39.958305 ] } }, +{ "type": "Feature", "properties": { "location": "265 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "225 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "600 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156974931681304, 39.924777147009202 ] } }, +{ "type": "Feature", "properties": { "location": "300 ROCKLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130892, 40.025532 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163957, 39.9198 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133035, 39.96901 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132965, 39.96886 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133028, 39.968985 ] } }, +{ "type": "Feature", "properties": { "location": "2500 CARLISLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17196, 39.919447 ] } }, +{ "type": "Feature", "properties": { "location": "300 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150422815913799, 39.932331430137999 ] } }, +{ "type": "Feature", "properties": { "location": "3300 G ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115060670492895, 39.998570538766302 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17519, 39.94716 ] } }, +{ "type": "Feature", "properties": { "location": "1300 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167423, 39.93036 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "400 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152455, 39.933417 ] } }, +{ "type": "Feature", "properties": { "location": "435 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202987447586494, 39.960949236462199 ] } }, +{ "type": "Feature", "properties": { "location": "1900 SNYDER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178752, 39.925518 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228185, 40.028428 ] } }, +{ "type": "Feature", "properties": { "location": "1529 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153595, 39.928865 ] } }, +{ "type": "Feature", "properties": { "location": "130 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144757, 39.944322 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182518395698594, 39.996729930504202 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157298450452998, 39.919587715279 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 54TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221389455487099, 39.938404411838498 ] } }, +{ "type": "Feature", "properties": { "location": "1200 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16754, 39.918938 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170783, 39.94256 ] } }, +{ "type": "Feature", "properties": { "location": "1912 RITTENHOUSE SQ", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173227, 39.948583 ] } }, +{ "type": "Feature", "properties": { "location": "1600 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173212, 39.923605 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153598, 39.928948 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502, 39.929042 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154848, 39.929518 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154875, 39.929535 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153452, 39.92895 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153418, 39.928962 ] } }, +{ "type": "Feature", "properties": { "location": "1929 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16516, 39.935293 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164848, 39.936257 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163823, 39.933578 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16464, 39.936475 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 54TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228646096769495, 39.970631375652999 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153505, 39.928925 ] } }, +{ "type": "Feature", "properties": { "location": "199 W SPENCER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122760320798406, 40.043305339755101 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N WARNOCK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137722, 40.042148 ] } }, +{ "type": "Feature", "properties": { "location": "800 PENNOCK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181900742187693, 39.970805606270901 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179587780004894, 39.971431611038 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181062, 39.971697 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125237, 39.973033 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WALLACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159165, 39.964957 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156862, 39.928162 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156777, 39.928183 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MOLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17353, 39.919762 ] } }, +{ "type": "Feature", "properties": { "location": "4200 ROMAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091384460604601, 40.009247004961601 ] } }, +{ "type": "Feature", "properties": { "location": "1400 VERNON RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167363611431995, 40.073059688325202 ] } }, +{ "type": "Feature", "properties": { "location": "300 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148538, 39.940575 ] } }, +{ "type": "Feature", "properties": { "location": "300 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148522, 39.940645 ] } }, +{ "type": "Feature", "properties": { "location": "5500 WISSAHICKON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181682, 40.025805 ] } }, +{ "type": "Feature", "properties": { "location": "1 N PAXON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223878, 39.959973 ] } }, +{ "type": "Feature", "properties": { "location": "1453 N VOGDES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231855899987394, 39.974449988033001 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164658498483007, 39.981444208252597 ] } }, +{ "type": "Feature", "properties": { "location": "2500 BLOCKS ISEMINGER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168378, 39.918505 ] } }, +{ "type": "Feature", "properties": { "location": "5200 SAYBROOK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216127391859501, 39.937834875387097 ] } }, +{ "type": "Feature", "properties": { "location": "6200 RIDGE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217993, 40.036085 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15847, 39.929193 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177705, 39.949573 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164705, 39.95411 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177102, 39.9535 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17221, 39.928447 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139177002057096, 39.956835552057697 ] } }, +{ "type": "Feature", "properties": { "location": "1200 DIAMOND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153362, 39.984252 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151122, 39.940153 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153443, 39.928913 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153428, 39.928962 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 24TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180263, 39.948255 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N HUTCHINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135755, 40.043457 ] } }, +{ "type": "Feature", "properties": { "location": "900 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157568, 39.945475 ] } }, +{ "type": "Feature", "properties": { "location": "200 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146989274799196, 39.937709386361703 ] } }, +{ "type": "Feature", "properties": { "location": "4226 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211023777561394, 39.973374897440799 ] } }, +{ "type": "Feature", "properties": { "location": "1500 E SUSQUEHANNA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127152, 39.976673 ] } }, +{ "type": "Feature", "properties": { "location": "215 W LAVEER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124512083998198, 40.045678415904099 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154855, 39.929527 ] } }, +{ "type": "Feature", "properties": { "location": "3813 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197813, 39.95999 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172185, 39.94695 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159553, 39.975282 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16697, 39.965278 ] } }, +{ "type": "Feature", "properties": { "location": "1200 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165638, 39.930127 ] } }, +{ "type": "Feature", "properties": { "location": "300 VINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14532, 39.956007 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140848, 40.03935 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177145, 39.953537 ] } }, +{ "type": "Feature", "properties": { "location": "400 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216017592750603, 40.029829748777402 ] } }, +{ "type": "Feature", "properties": { "location": "400 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216017592750603, 40.029829748777402 ] } }, +{ "type": "Feature", "properties": { "location": "400 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216017592750603, 40.029829748777402 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147058, 39.933125 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169002, 39.93177 ] } }, +{ "type": "Feature", "properties": { "location": "900 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156428, 39.948357 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170335932913702, 39.930733155947102 ] } }, +{ "type": "Feature", "properties": { "location": "374 SHURS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213157677666501, 40.025161401443199 ] } }, +{ "type": "Feature", "properties": { "location": "4800 RORER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114553469862898, 40.022871308627899 ] } }, +{ "type": "Feature", "properties": { "location": "2551 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164094466473301, 39.917892330239098 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "505 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "505 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "800 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687857051997, 39.922383040809997 ] } }, +{ "type": "Feature", "properties": { "location": "2400 BROWN ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177522, 39.970075 ] } }, +{ "type": "Feature", "properties": { "location": "700 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177656378581105, 39.969427814167297 ] } }, +{ "type": "Feature", "properties": { "location": "500 CARPENTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152368, 39.935978 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163767, 39.950253 ] } }, +{ "type": "Feature", "properties": { "location": "4200 STATION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219907, 40.023925 ] } }, +{ "type": "Feature", "properties": { "location": "500 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147398, 39.957972 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172523, 39.91947 ] } }, +{ "type": "Feature", "properties": { "location": "419 WYOMING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117553, 40.02071 ] } }, +{ "type": "Feature", "properties": { "location": "1100 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161332, 39.941178 ] } }, +{ "type": "Feature", "properties": { "location": "1100 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161362, 39.941212 ] } }, +{ "type": "Feature", "properties": { "location": "2300 W HAROLD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170199012937402, 39.994871647646299 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179698, 39.973908 ] } }, +{ "type": "Feature", "properties": { "location": "3865 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.095195, 40.00299 ] } }, +{ "type": "Feature", "properties": { "location": "5500 WISSAHICKON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181638, 40.02575 ] } }, +{ "type": "Feature", "properties": { "location": "400 GREENWICH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153472, 39.929357 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167275, 39.940572 ] } }, +{ "type": "Feature", "properties": { "location": "300 W WELLENS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130180988995207, 40.031163364334603 ] } }, +{ "type": "Feature", "properties": { "location": "300 W WELLENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130180988995207, 40.031163364334603 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138428268656199, 39.959107617723603 ] } }, +{ "type": "Feature", "properties": { "location": "5800 WISSAHICKON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185673, 40.029002 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 69TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243671112476804, 39.924599856092797 ] } }, +{ "type": "Feature", "properties": { "location": "100 ROSEMAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120668293754704, 40.0435594258335 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152475, 39.949473 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163142, 39.948638 ] } }, +{ "type": "Feature", "properties": { "location": "3100 RUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115007045035895, 39.995025697998699 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "4200 MAYWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099188672810698, 40.011204897964099 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155605, 39.929428 ] } }, +{ "type": "Feature", "properties": { "location": "2000 BRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071377901302796, 40.015698311252798 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SLOAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203459405755694, 39.973121801078399 ] } }, +{ "type": "Feature", "properties": { "location": "400 RITNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154529043453806, 39.918582992812397 ] } }, +{ "type": "Feature", "properties": { "location": "2499 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16531, 39.919403 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N NEWKIRK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175516428937001, 40.005323661629902 ] } }, +{ "type": "Feature", "properties": { "location": "3247 N NEWKIRK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175516428937001, 40.005323661629902 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167297, 39.9532 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166835, 39.954245 ] } }, +{ "type": "Feature", "properties": { "location": "3813 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197758, 39.95987 ] } }, +{ "type": "Feature", "properties": { "location": "138 N DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242920393407701, 39.964625138066602 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123015, 39.97377 ] } }, +{ "type": "Feature", "properties": { "location": "100 BREAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143992, 39.953288 ] } }, +{ "type": "Feature", "properties": { "location": "100 BREAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143967, 39.953198 ] } }, +{ "type": "Feature", "properties": { "location": "800 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161095414317003, 39.918148430685697 ] } }, +{ "type": "Feature", "properties": { "location": "1515 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153335, 39.93388 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148799416035999, 40.0204330300853 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17479, 39.923765 ] } }, +{ "type": "Feature", "properties": { "location": "2059 S REDFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228431665606294, 39.932759208621199 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129010903201404, 40.038632084467601 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157613, 39.948868 ] } }, +{ "type": "Feature", "properties": { "location": "2006 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176933, 39.937892 ] } }, +{ "type": "Feature", "properties": { "location": "1700 TULIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130997, 39.97575 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164635, 39.922945 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170165, 39.936163 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169792, 39.939503 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158732075490207, 39.982669015578502 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151335, 39.939495 ] } }, +{ "type": "Feature", "properties": { "location": "1 N SCHUYLKILL AVE W", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180867, 39.955517 ] } }, +{ "type": "Feature", "properties": { "location": "4000 LOCUST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20286, 39.953017 ] } }, +{ "type": "Feature", "properties": { "location": "1 N SCHUYLKILL AVE W", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180735, 39.955475 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183137, 39.956922 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197173, 39.957293 ] } }, +{ "type": "Feature", "properties": { "location": "600 BAINBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152733, 39.941192 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158062, 39.937485 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARLBOROUGH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132463, 39.970998 ] } }, +{ "type": "Feature", "properties": { "location": "2400 YORK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123977, 39.977223 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165572, 39.91868 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "413 UNION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.201198071992295, 39.961008416040798 ] } }, +{ "type": "Feature", "properties": { "location": "800 N TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180321904948897, 39.970954157193397 ] } }, +{ "type": "Feature", "properties": { "location": "2200 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180011893626997, 39.942528653655998 ] } }, +{ "type": "Feature", "properties": { "location": "300 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150422815913799, 39.932331430137999 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177512, 39.942853 ] } }, +{ "type": "Feature", "properties": { "location": "17 E PRICE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154813, 39.94554 ] } }, +{ "type": "Feature", "properties": { "location": "813 S 19TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174125, 39.941507 ] } }, +{ "type": "Feature", "properties": { "location": "1800 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175107323686404, 39.933446167026197 ] } }, +{ "type": "Feature", "properties": { "location": "6300 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229337034842004, 39.924330545924001 ] } }, +{ "type": "Feature", "properties": { "location": "3600 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195738, 39.955538 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176773335667306, 39.922087351171101 ] } }, +{ "type": "Feature", "properties": { "location": "600 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147947, 39.971768 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153262, 39.930995 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156813, 39.929007 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155757, 39.928925 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15578, 39.928993 ] } }, +{ "type": "Feature", "properties": { "location": "400 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129943766628102, 39.9703675029781 ] } }, +{ "type": "Feature", "properties": { "location": "2300 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17892, 39.953233 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144088, 39.969795 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159357284420594, 39.9835251720217 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 21ST ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175122, 39.953195 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174982, 39.953157 ] } }, +{ "type": "Feature", "properties": { "location": "1600 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16912, 39.948253 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166802, 39.95466 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1566, 39.952685 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156713, 39.952503 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129015, 39.972067 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 22ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179214045664594, 39.942299776753799 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N FRANKLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139637885458896, 40.014808112682402 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162507, 39.939543 ] } }, +{ "type": "Feature", "properties": { "location": "3500 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19372, 39.96329 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248, 39.943043 ] } }, +{ "type": "Feature", "properties": { "location": "1005 CARPENTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159977, 39.93801 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NECTARINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156078, 39.96117 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 19TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17271, 39.948028 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167873, 39.93676 ] } }, +{ "type": "Feature", "properties": { "location": "900 CROSS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159905, 39.929852 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W PACIFIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152742, 40.008995 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 26TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179393, 39.971388 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158248, 39.923783 ] } }, +{ "type": "Feature", "properties": { "location": "4300 OTTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211031257096707, 39.970798858963903 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148902, 39.939525 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177295644610595, 39.936356657864998 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175995, 39.952927 ] } }, +{ "type": "Feature", "properties": { "location": "315 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19094, 39.960905 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18265, 39.970698 ] } }, +{ "type": "Feature", "properties": { "location": "200 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163985, 39.933645 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SEARS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179926768635696, 39.935303896537498 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14652, 39.929965 ] } }, +{ "type": "Feature", "properties": { "location": "600 S LEITHGOW ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149818, 39.940897 ] } }, +{ "type": "Feature", "properties": { "location": "5200 OSAGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227323744569901, 39.953131496004502 ] } }, +{ "type": "Feature", "properties": { "location": "1929 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1117918405496, 39.994693384665602 ] } }, +{ "type": "Feature", "properties": { "location": "200 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22301, 40.031718 ] } }, +{ "type": "Feature", "properties": { "location": "800 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180321904948897, 39.970954157193397 ] } }, +{ "type": "Feature", "properties": { "location": "1100 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157762, 39.960387 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155718, 39.928923 ] } }, +{ "type": "Feature", "properties": { "location": "3800 RICHMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086161611386103, 39.9908369712278 ] } }, +{ "type": "Feature", "properties": { "location": "4747 B ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120308674142393, 40.0218596900908 ] } }, +{ "type": "Feature", "properties": { "location": "1600 OREGON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175118, 39.917365 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DURFOR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165863214303002, 39.9208850931021 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161875, 39.942753 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090828, 40.007398 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16391, 39.95627 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1703835841531, 39.929172567521299 ] } }, +{ "type": "Feature", "properties": { "location": "99 S 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156765, 39.952752 ] } }, +{ "type": "Feature", "properties": { "location": "1732 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171062, 39.947812 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171675013851498, 39.991828185229899 ] } }, +{ "type": "Feature", "properties": { "location": "200 W SPENCER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124151287526601, 40.043486914662999 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174688147976596, 39.927971122729801 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160915, 39.968927 ] } }, +{ "type": "Feature", "properties": { "location": "5220 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226862903027097, 39.955339304556396 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CHERRY ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164682, 39.955615 ] } }, +{ "type": "Feature", "properties": { "location": "1400 ARCH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164197, 39.952895 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 16TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167025, 39.953543 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160747, 39.91807 ] } }, +{ "type": "Feature", "properties": { "location": "800 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160957, 39.91813 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S CLEVELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173518, 39.939997 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18279, 39.970653 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159552, 39.924823 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16843, 39.9203 ] } }, +{ "type": "Feature", "properties": { "location": "300 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222436389011804, 40.032189448434401 ] } }, +{ "type": "Feature", "properties": { "location": "900 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162260987378801, 39.922582911292103 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153443, 39.928792 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 56TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233293, 39.95865 ] } }, +{ "type": "Feature", "properties": { "location": "1 SUMMER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14049, 39.954512 ] } }, +{ "type": "Feature", "properties": { "location": "300 N WATER ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "2801 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177226133031496, 39.996872926474701 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181268944518806, 39.9406890191391 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181268944518806, 39.9406890191391 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181268944518806, 39.9406890191391 ] } }, +{ "type": "Feature", "properties": { "location": "200 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148262, 39.938132 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 39.969393 ] } }, +{ "type": "Feature", "properties": { "location": "1400 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134098, 39.97293 ] } }, +{ "type": "Feature", "properties": { "location": "800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160042, 39.921888 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1568, 39.921433 ] } }, +{ "type": "Feature", "properties": { "location": "3100 W CUMBERLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182737203127999, 39.994403651361502 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160273, 39.928258 ] } }, +{ "type": "Feature", "properties": { "location": "825 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1615977340591, 39.918208282543198 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156795, 39.92823 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153533, 39.929342 ] } }, +{ "type": "Feature", "properties": { "location": "400 GASKILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149603, 39.942208 ] } }, +{ "type": "Feature", "properties": { "location": "2400 ASPEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178238, 39.968922 ] } }, +{ "type": "Feature", "properties": { "location": "4500 LARCHWOOD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213653, 39.950457 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155002, 39.960197 ] } }, +{ "type": "Feature", "properties": { "location": "2230 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163365901491005, 39.921244694931502 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14975, 39.931798 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143782, 39.954948 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13058, 39.97253 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130697, 39.97264 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130692, 39.972613 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130497649603896, 39.972492989740303 ] } }, +{ "type": "Feature", "properties": { "location": "2500 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178331543988193, 39.970147694148501 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1550454276165, 39.929768979897901 ] } }, +{ "type": "Feature", "properties": { "location": "100 N MOLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165599443725498, 39.956126287472301 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204507, 39.956742 ] } }, +{ "type": "Feature", "properties": { "location": "7100 RODNEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158087000430299, 40.058991251793699 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BAINBRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170523, 39.94337 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154835, 39.9374 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154835, 39.937455 ] } }, +{ "type": "Feature", "properties": { "location": "500 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "598 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "1600 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171592, 39.933393 ] } }, +{ "type": "Feature", "properties": { "location": "1600 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171344645881902, 39.933379438529798 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147648, 39.935553 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "7022 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "7030 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "500 WIDENER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129994356384103, 40.041944149956997 ] } }, +{ "type": "Feature", "properties": { "location": "1122 WALLACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15672, 39.964622 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217477482523407, 39.936511638760997 ] } }, +{ "type": "Feature", "properties": { "location": "900 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157198, 39.945412 ] } }, +{ "type": "Feature", "properties": { "location": "720 S 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158863, 39.941282 ] } }, +{ "type": "Feature", "properties": { "location": "5962 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126369838423102, 40.041936569850002 ] } }, +{ "type": "Feature", "properties": { "location": "1723 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166692, 39.928412 ] } }, +{ "type": "Feature", "properties": { "location": "943 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162260987378801, 39.922582911292103 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158663, 39.935055 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170222, 39.942335 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 12TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157866012380893, 39.961160915557201 ] } }, +{ "type": "Feature", "properties": { "location": "535 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502227031296, 39.933105053217403 ] } }, +{ "type": "Feature", "properties": { "location": "100 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173938611328893, 40.038159691523902 ] } }, +{ "type": "Feature", "properties": { "location": "226 QUINCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159987, 39.947523 ] } }, +{ "type": "Feature", "properties": { "location": "100 DUPONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225828, 40.029622 ] } }, +{ "type": "Feature", "properties": { "location": "100 DUPONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225778, 40.029647 ] } }, +{ "type": "Feature", "properties": { "location": "4600 WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225848, 40.02963 ] } }, +{ "type": "Feature", "properties": { "location": "1100 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164815, 39.92254 ] } }, +{ "type": "Feature", "properties": { "location": "2109 APPLETREE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174773, 39.956417 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125323, 39.970723 ] } }, +{ "type": "Feature", "properties": { "location": "2020 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176507, 39.941685 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214615, 40.022135 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "4500 OAKMONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.031560477533205, 40.034079336093903 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13439, 39.9724 ] } }, +{ "type": "Feature", "properties": { "location": "1100 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164798, 39.928735 ] } }, +{ "type": "Feature", "properties": { "location": "1700 TULIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130888, 39.975645 ] } }, +{ "type": "Feature", "properties": { "location": "1799 TULIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130868, 39.975735 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225992799238, 39.927020613403698 ] } }, +{ "type": "Feature", "properties": { "location": "200 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961776704595, 40.0318986600317 ] } }, +{ "type": "Feature", "properties": { "location": "200 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961776704595, 40.0318986600317 ] } }, +{ "type": "Feature", "properties": { "location": "600 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118095923580299, 40.001848406580002 ] } }, +{ "type": "Feature", "properties": { "location": "600 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118095923580299, 40.001848406580002 ] } }, +{ "type": "Feature", "properties": { "location": "200 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147288, 39.938077 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176387582127603, 39.931294245249298 ] } }, +{ "type": "Feature", "properties": { "location": "300 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150422815913799, 39.932331430137999 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122366259239996, 40.039351508605201 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090842, 40.007438 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090982, 40.00739 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090863, 40.00739 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090838, 40.00747 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091042, 40.007118 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163048, 39.92243 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155628, 39.929343 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155592, 39.929428 ] } }, +{ "type": "Feature", "properties": { "location": "1300 ANCHOR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077438, 40.026798 ] } }, +{ "type": "Feature", "properties": { "location": "1 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140407, 39.951353 ] } }, +{ "type": "Feature", "properties": { "location": "1 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14036, 39.951352 ] } }, +{ "type": "Feature", "properties": { "location": "1 CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140488, 39.951352 ] } }, +{ "type": "Feature", "properties": { "location": "907 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177825, 39.940977 ] } }, +{ "type": "Feature", "properties": { "location": "527 MCKEAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155583846420001, 39.923783012713599 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "1228 PASSMORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081054820826594, 40.042708851536901 ] } }, +{ "type": "Feature", "properties": { "location": "5200 N CAMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143038, 40.03291 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14667, 39.963105 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167973, 39.917705 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167913, 39.917702 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170465, 39.965622 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 20TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171023, 39.963768 ] } }, +{ "type": "Feature", "properties": { "location": "5600 BROOMALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233192439573898, 39.943529003784697 ] } }, +{ "type": "Feature", "properties": { "location": "265 S 60TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241847425611795, 39.956758738286602 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157315, 39.926577 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129042, 39.972085 ] } }, +{ "type": "Feature", "properties": { "location": "726 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154822, 39.942755 ] } }, +{ "type": "Feature", "properties": { "location": "2100 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174303, 39.962557 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134323, 39.972447 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134263, 39.972407 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170055, 39.960622 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139177002057096, 39.956835552057697 ] } }, +{ "type": "Feature", "properties": { "location": "626 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156512714226906, 39.926852111975499 ] } }, +{ "type": "Feature", "properties": { "location": "626 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15667, 39.926927 ] } }, +{ "type": "Feature", "properties": { "location": "605 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156512714226906, 39.926852111975499 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170525, 39.965668 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170572, 39.965697 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170597, 39.965658 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17048, 39.96568 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145658, 39.971822 ] } }, +{ "type": "Feature", "properties": { "location": "200 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142145, 39.962125 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154733, 39.931587 ] } }, +{ "type": "Feature", "properties": { "location": "600 EARP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15621, 39.931817 ] } }, +{ "type": "Feature", "properties": { "location": "5100 LUDLOW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22487, 39.959233 ] } }, +{ "type": "Feature", "properties": { "location": "2010 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175493, 39.945457 ] } }, +{ "type": "Feature", "properties": { "location": "4600 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085438, 40.014777 ] } }, +{ "type": "Feature", "properties": { "location": "1900 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1803, 39.920593 ] } }, +{ "type": "Feature", "properties": { "location": "326 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126253923693298, 40.044789249430899 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164202, 39.964912 ] } }, +{ "type": "Feature", "properties": { "location": "1514 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167597, 39.944257 ] } }, +{ "type": "Feature", "properties": { "location": "100 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176595, 39.95197 ] } }, +{ "type": "Feature", "properties": { "location": "600 AMERICAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146827, 39.941148 ] } }, +{ "type": "Feature", "properties": { "location": "600 S ALDER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15909, 39.942483 ] } }, +{ "type": "Feature", "properties": { "location": "800 MARCELLA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.093053068065998, 40.0315505431292 ] } }, +{ "type": "Feature", "properties": { "location": "800 MARCELLA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.093053068065998, 40.0315505431292 ] } }, +{ "type": "Feature", "properties": { "location": "699 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147223, 39.971712 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171052, 39.941173 ] } }, +{ "type": "Feature", "properties": { "location": "500 N PRESTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203881179220005, 39.961815624963897 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157937, 39.958482 ] } }, +{ "type": "Feature", "properties": { "location": "1514 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151965, 39.929135 ] } }, +{ "type": "Feature", "properties": { "location": "1516 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151963, 39.929043 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171764355704198, 39.930285819674303 ] } }, +{ "type": "Feature", "properties": { "location": "635 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157059144940206, 39.924417722975299 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156863, 39.935153 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157108, 39.935298 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156953, 39.93523 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181114576860494, 39.971056082780301 ] } }, +{ "type": "Feature", "properties": { "location": "799 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181243, 39.9701 ] } }, +{ "type": "Feature", "properties": { "location": "799 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18129, 39.970072 ] } }, +{ "type": "Feature", "properties": { "location": "799 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181308, 39.97014 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 37TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195092, 39.958622 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "1601 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168117, 39.939765 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155245, 39.92074 ] } }, +{ "type": "Feature", "properties": { "location": "1623 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155505078731494, 39.9277545765733 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193952, 39.957783 ] } }, +{ "type": "Feature", "properties": { "location": "1324 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168602, 39.933467 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172257, 39.950027 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1619, 39.93524 ] } }, +{ "type": "Feature", "properties": { "location": "1800 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175107323686404, 39.933446167026197 ] } }, +{ "type": "Feature", "properties": { "location": "848 N RINGGOLD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176921855419295, 39.970529308227199 ] } }, +{ "type": "Feature", "properties": { "location": "1151 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152765792452499, 39.982670573241997 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164153397583902, 39.967866122955101 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154853, 39.933077 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156675551221397, 39.922466295618399 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156887, 39.92152 ] } }, +{ "type": "Feature", "properties": { "location": "400 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153177, 39.952195 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215277, 40.021933 ] } }, +{ "type": "Feature", "properties": { "location": "2200 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174117243548096, 39.970751656057999 ] } }, +{ "type": "Feature", "properties": { "location": "400 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202942, 39.960415 ] } }, +{ "type": "Feature", "properties": { "location": "2833 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182959668383006, 39.973116229474499 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172070302461805, 39.936258747644899 ] } }, +{ "type": "Feature", "properties": { "location": "2034 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173732, 39.95773 ] } }, +{ "type": "Feature", "properties": { "location": "2034 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17379, 39.957868 ] } }, +{ "type": "Feature", "properties": { "location": "2034 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173693, 39.957828 ] } }, +{ "type": "Feature", "properties": { "location": "4000 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203015, 39.9603 ] } }, +{ "type": "Feature", "properties": { "location": "4153 TERRACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216787, 40.024992 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "1042 PINE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159883, 39.944778 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 38TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197793, 39.957702 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166345, 39.942633 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155588, 39.929848 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155588, 39.929953 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1826912513027, 39.9418637544034 ] } }, +{ "type": "Feature", "properties": { "location": "600 THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146532, 39.971603 ] } }, +{ "type": "Feature", "properties": { "location": "1300 NECTARINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159867, 39.961595 ] } }, +{ "type": "Feature", "properties": { "location": "5900 PULASKI AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182943942407505, 40.032723553008999 ] } }, +{ "type": "Feature", "properties": { "location": "1610 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16474, 39.964957 ] } }, +{ "type": "Feature", "properties": { "location": "890 N 26TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179327, 39.971418 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "2048 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17627, 39.946 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158238, 39.958512 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139502, 39.956912 ] } }, +{ "type": "Feature", "properties": { "location": "2601 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154748, 39.992443 ] } }, +{ "type": "Feature", "properties": { "location": "921 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156518, 39.93784 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160048, 39.953373 ] } }, +{ "type": "Feature", "properties": { "location": "900 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149690177731998, 39.979202424909502 ] } }, +{ "type": "Feature", "properties": { "location": "1506 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159383, 39.976353 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143817, 39.96979 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143672, 39.966777 ] } }, +{ "type": "Feature", "properties": { "location": "432 GASKILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150207, 39.942327 ] } }, +{ "type": "Feature", "properties": { "location": "432 GASKILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150268, 39.942312 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129919713619302, 40.025673234835097 ] } }, +{ "type": "Feature", "properties": { "location": "5917 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100441107837099, 40.043696438575203 ] } }, +{ "type": "Feature", "properties": { "location": "1200 DICKINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165552, 39.931322 ] } }, +{ "type": "Feature", "properties": { "location": "1200 DICKINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165558, 39.931355 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162247995847906, 39.918941700167203 ] } }, +{ "type": "Feature", "properties": { "location": "1599 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086427, 40.015205 ] } }, +{ "type": "Feature", "properties": { "location": "1800 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175107323686404, 39.933446167026197 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SANSOM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161797, 39.949678 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "922 S 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148805112004595, 39.935970401139002 ] } }, +{ "type": "Feature", "properties": { "location": "619 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100624372943301, 40.040243907613302 ] } }, +{ "type": "Feature", "properties": { "location": "1799 CHURCH LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148582, 40.046368 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155907, 39.961167 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152708, 39.95011 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152403, 39.942303 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176697, 39.922668 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156697, 39.92948 ] } }, +{ "type": "Feature", "properties": { "location": "3100 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187845, 39.96401 ] } }, +{ "type": "Feature", "properties": { "location": "3100 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187782, 39.964028 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LENOX AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151952, 40.008225 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157305, 39.954662 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160099296902004, 39.983849577512302 ] } }, +{ "type": "Feature", "properties": { "location": "1400 ENGLEWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.066853, 40.05071 ] } }, +{ "type": "Feature", "properties": { "location": "700 AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141892, 39.963083 ] } }, +{ "type": "Feature", "properties": { "location": "5835 NORFOLK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240309921115198, 39.949583748659897 ] } }, +{ "type": "Feature", "properties": { "location": "100 POLLARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138052, 39.96575 ] } }, +{ "type": "Feature", "properties": { "location": "600 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153043, 39.941703 ] } }, +{ "type": "Feature", "properties": { "location": "932 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155428, 39.937245 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212717, 39.955378 ] } }, +{ "type": "Feature", "properties": { "location": "126 S 61ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243132413873795, 39.960307569773597 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172558, 39.91952 ] } }, +{ "type": "Feature", "properties": { "location": "100 BURNSIDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217178, 40.023113 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 3RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147818, 39.940475 ] } }, +{ "type": "Feature", "properties": { "location": "201 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140261951790094, 39.954926794402901 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166648, 39.92143 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177488, 39.952987 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175697, 39.947948 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168377, 39.943632 ] } }, +{ "type": "Feature", "properties": { "location": "1666 DOUNTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153653054762898, 40.0181050242849 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S FRAZIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227230171103002, 39.9375768853888 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228255, 40.028422 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228025, 40.028347 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228157, 40.028468 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2282, 40.028403 ] } }, +{ "type": "Feature", "properties": { "location": "199 N CARLISLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164853, 39.955825 ] } }, +{ "type": "Feature", "properties": { "location": "1214 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170511155214996, 39.936005638948302 ] } }, +{ "type": "Feature", "properties": { "location": "512 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154807, 39.925393 ] } }, +{ "type": "Feature", "properties": { "location": "3500 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192722, 39.961312 ] } }, +{ "type": "Feature", "properties": { "location": "600 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154928, 39.937397 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155652, 39.929887 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158823, 39.92046 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167242, 39.917595 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "644 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156241458550298, 39.928063370512 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N LAWRENCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132333, 40.024443 ] } }, +{ "type": "Feature", "properties": { "location": "100 W NEDRO AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120874713630101, 40.039946229819002 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181114576860494, 39.971056082780301 ] } }, +{ "type": "Feature", "properties": { "location": "110 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228322, 40.028537 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228228, 40.028443 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164147, 39.964933 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169683, 39.940038 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153255, 39.937997 ] } }, +{ "type": "Feature", "properties": { "location": "916 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155445, 39.954397 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144698, 39.958635 ] } }, +{ "type": "Feature", "properties": { "location": "1917 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "391 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217610195181194, 40.029634906992797 ] } }, +{ "type": "Feature", "properties": { "location": "300 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220167, 40.028863 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W OXFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153272979239702, 39.976640145191404 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228185, 40.028377 ] } }, +{ "type": "Feature", "properties": { "location": "2221 E GORDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127050568904906, 39.979800049934603 ] } }, +{ "type": "Feature", "properties": { "location": "400 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146363, 39.96422 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128098, 39.967367 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181042, 39.971633 ] } }, +{ "type": "Feature", "properties": { "location": "400 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154511023709404, 39.921153355060298 ] } }, +{ "type": "Feature", "properties": { "location": "2105 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155108741135393, 39.922264982820302 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167938, 39.917762 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167895, 39.917763 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16151, 39.929518 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160937, 39.968777 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191443324436705, 39.963213814021799 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182848487988693, 39.995189741029698 ] } }, +{ "type": "Feature", "properties": { "location": "330 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188056889150701, 40.0402060406388 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181188, 39.940838 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163237, 39.949613 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163648, 39.950298 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175797, 39.947942 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 31ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187695, 39.964518 ] } }, +{ "type": "Feature", "properties": { "location": "2400 ASPEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177328, 39.968805 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17482, 39.969753 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174843, 39.969733 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176748, 39.968695 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17173, 39.952258 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157873, 39.961508 ] } }, +{ "type": "Feature", "properties": { "location": "2300 ASPEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176593, 39.968692 ] } }, +{ "type": "Feature", "properties": { "location": "2300 ASPEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176508, 39.96992 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167347, 39.953413 ] } }, +{ "type": "Feature", "properties": { "location": "4412 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211273428100199, 39.955191365241298 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171158, 39.918143 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172538, 39.919627 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172555, 39.918342 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172495, 39.91964 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171172, 39.918168 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172485, 39.919603 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 17TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175173, 39.922378 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171115, 39.918197 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S BROAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170925, 39.919302 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171015, 39.918265 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17116, 39.91822 ] } }, +{ "type": "Feature", "properties": { "location": "2203 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171595, 39.923298 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172505, 39.919623 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171047, 39.918235 ] } }, +{ "type": "Feature", "properties": { "location": "1400 POTTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172455, 39.91961 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17243, 39.919483 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BROAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169792, 39.924318 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172553, 39.91838 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176098, 39.94173 ] } }, +{ "type": "Feature", "properties": { "location": "1615 CHELTENHAM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.078403, 40.02826 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159262, 39.977095 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159507, 39.975782 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19702, 39.960792 ] } }, +{ "type": "Feature", "properties": { "location": "3813 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197928, 39.959738 ] } }, +{ "type": "Feature", "properties": { "location": "2442 S BROAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170848, 39.919647 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 35TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192497, 39.958765 ] } }, +{ "type": "Feature", "properties": { "location": "6200 ADDISON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.247291245861305, 39.9551250172035 ] } }, +{ "type": "Feature", "properties": { "location": "1007 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152936829495303, 39.935681033067901 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228353, 40.028443 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228048, 40.028328 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 66TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239270993497698, 39.927832771337897 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170682, 39.920615 ] } }, +{ "type": "Feature", "properties": { "location": "5800 BELMAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.230906646920005, 39.9366825126707 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173857, 39.966813 ] } }, +{ "type": "Feature", "properties": { "location": "22 S DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155391502974894, 39.946719489226297 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1611554005421, 39.921367054069499 ] } }, +{ "type": "Feature", "properties": { "location": "1214 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175263, 39.936532 ] } }, +{ "type": "Feature", "properties": { "location": "1214 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1753, 39.936565 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166911448490097, 39.967390661095003 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172737, 39.9286 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "803 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142012951271695, 40.008060156159203 ] } }, +{ "type": "Feature", "properties": { "location": "3400 W LEHIGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187076134954907, 39.998132024716902 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175393, 39.947938 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165592, 39.918777 ] } }, +{ "type": "Feature", "properties": { "location": "400 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153375672391903, 39.926435117060798 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177226133031496, 39.996872926474701 ] } }, +{ "type": "Feature", "properties": { "location": "2085 KINGSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101405860742702, 39.997359615725401 ] } }, +{ "type": "Feature", "properties": { "location": "2200 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175737, 39.963977 ] } }, +{ "type": "Feature", "properties": { "location": "3600 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195782, 39.955552 ] } }, +{ "type": "Feature", "properties": { "location": "3300 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189612, 39.954883 ] } }, +{ "type": "Feature", "properties": { "location": "3600 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195287, 39.955513 ] } }, +{ "type": "Feature", "properties": { "location": "3600 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195525, 39.955547 ] } }, +{ "type": "Feature", "properties": { "location": "131 N MOLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166022, 39.95646 ] } }, +{ "type": "Feature", "properties": { "location": "1200 BUTTONWOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158313, 39.961118 ] } }, +{ "type": "Feature", "properties": { "location": "821 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157568531559093, 39.936566484472003 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172125, 39.92088 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159512, 39.923973 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158248, 39.923712 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141982, 39.967643 ] } }, +{ "type": "Feature", "properties": { "location": "35 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 19TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171913, 39.952233 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 26TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17937, 39.971398 ] } }, +{ "type": "Feature", "properties": { "location": "300 PRESTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203745, 39.96014 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 33RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189483, 39.960218 ] } }, +{ "type": "Feature", "properties": { "location": "900 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154457, 39.9576 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154918, 39.99212 ] } }, +{ "type": "Feature", "properties": { "location": "2601 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155048, 39.992027 ] } }, +{ "type": "Feature", "properties": { "location": "2601 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154907, 39.992243 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S CLEVELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173518, 39.939907 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134262, 39.972398 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127298235565505, 39.995328587683701 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155233, 39.920812 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155252, 39.928637 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155687, 39.92925 ] } }, +{ "type": "Feature", "properties": { "location": "300 SAINT MARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208048, 39.951765 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176427, 39.938493 ] } }, +{ "type": "Feature", "properties": { "location": "900 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143060030768794, 40.008191789944298 ] } }, +{ "type": "Feature", "properties": { "location": "900 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143060030768794, 40.008191789944298 ] } }, +{ "type": "Feature", "properties": { "location": "2213 S JUNIPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169147, 39.922495 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "2200 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175788, 39.963997 ] } }, +{ "type": "Feature", "properties": { "location": "2200 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174847, 39.969715 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174279861205306, 39.935011646630102 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CEDAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12742, 39.976875 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174857, 39.952728 ] } }, +{ "type": "Feature", "properties": { "location": "600 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156423238159604, 39.927220948577698 ] } }, +{ "type": "Feature", "properties": { "location": "600 WATKINS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156423238159604, 39.927220948577698 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N ROBINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243105568335807, 39.9778568048879 ] } }, +{ "type": "Feature", "properties": { "location": "1229 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159363, 39.958492 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125288, 39.973122 ] } }, +{ "type": "Feature", "properties": { "location": "335 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171890717722405, 40.040135307892399 ] } }, +{ "type": "Feature", "properties": { "location": "1399 W TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150802, 40.00583 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185893122079094, 39.974878321914801 ] } }, +{ "type": "Feature", "properties": { "location": "3037 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185893122079094, 39.974878321914801 ] } }, +{ "type": "Feature", "properties": { "location": "3400 REACH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1152831300316, 40.000689465926001 ] } }, +{ "type": "Feature", "properties": { "location": "732 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157642508222395, 39.931589829630703 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155223, 39.954385 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155188, 39.954353 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155237, 39.954188 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15647, 39.953168 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155185, 39.95434 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156452, 39.953262 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158312, 39.955657 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158407, 39.955832 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155178, 39.954337 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155345, 39.954273 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1552, 39.953655 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160008, 39.95361 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155242, 39.954417 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155277, 39.954348 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15521, 39.954287 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155183, 39.954417 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155835, 39.954615 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155255, 39.954437 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155288, 39.954487 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155317, 39.954278 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156083, 39.952285 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155153, 39.954305 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155137, 39.95428 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155188, 39.954105 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15843, 39.955715 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156417, 39.953207 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155163, 39.954263 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155215, 39.954267 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155188, 39.954327 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15526, 39.954408 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155162, 39.95411 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155192, 39.954418 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155297, 39.954467 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155282, 39.954475 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155253, 39.954455 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155142, 39.954522 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155287, 39.954418 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155247, 39.954322 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155232, 39.954402 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15529, 39.954482 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15534, 39.954345 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155468, 39.954325 ] } }, +{ "type": "Feature", "properties": { "location": "127 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15624, 39.954268 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160312, 39.953305 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155217, 39.954395 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155142, 39.954248 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155143, 39.95436 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155142, 39.95434 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155232, 39.954402 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155255, 39.954492 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155088, 39.95434 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158408, 39.955718 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155205, 39.954298 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155293, 39.954338 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155147, 39.954283 ] } }, +{ "type": "Feature", "properties": { "location": "916 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155318, 39.954373 ] } }, +{ "type": "Feature", "properties": { "location": "4600 DARRAH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.08232, 40.016055 ] } }, +{ "type": "Feature", "properties": { "location": "300 N ORIANNA ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145248, 39.95591 ] } }, +{ "type": "Feature", "properties": { "location": "300 N ORIANNA ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145337, 39.956073 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151142, 39.984017 ] } }, +{ "type": "Feature", "properties": { "location": "100 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142874125009797, 39.948224894949497 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171942, 39.922138 ] } }, +{ "type": "Feature", "properties": { "location": "1527 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153557, 39.929025 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152707, 39.942388 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159382, 39.923947 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173875, 39.966677 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167343, 39.955048 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124144188884202, 40.040619243780696 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152035, 39.929152 ] } }, +{ "type": "Feature", "properties": { "location": "1600 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16911, 39.948047 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175613, 39.920038 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170662, 39.928293 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22913, 40.030298 ] } }, +{ "type": "Feature", "properties": { "location": "112 RIPKA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "3815 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197762, 39.960032 ] } }, +{ "type": "Feature", "properties": { "location": "500 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155685, 39.92005 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154865, 39.949012 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158967, 39.949595 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154928, 39.948747 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158945, 39.94937 ] } }, +{ "type": "Feature", "properties": { "location": "1 E ALLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135452, 39.965427 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154418, 39.949347 ] } }, +{ "type": "Feature", "properties": { "location": "400 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154529043453806, 39.918582992812397 ] } }, +{ "type": "Feature", "properties": { "location": "100 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176362, 39.952157 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139467307371802, 39.958490877338399 ] } }, +{ "type": "Feature", "properties": { "location": "1900 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172293, 39.952358 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158542, 39.95846 ] } }, +{ "type": "Feature", "properties": { "location": "161 W THELMA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127209198689698, 40.0204988630881 ] } }, +{ "type": "Feature", "properties": { "location": "4200 N 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139923284371804, 40.016480225708101 ] } }, +{ "type": "Feature", "properties": { "location": "2126 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158414766553193, 39.921877717884399 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153362, 39.942538 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226393, 40.027742 ] } }, +{ "type": "Feature", "properties": { "location": "1800 FRANCIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167164649758206, 39.967834757942903 ] } }, +{ "type": "Feature", "properties": { "location": "3400 REACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1152831300316, 40.000689465926001 ] } }, +{ "type": "Feature", "properties": { "location": "1600 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1603648318994, 39.986322712978101 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175263, 40.03681 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 55TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233164150498993, 39.949440304040699 ] } }, +{ "type": "Feature", "properties": { "location": "500 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157097, 39.920188 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227973, 40.028238 ] } }, +{ "type": "Feature", "properties": { "location": "499 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197123, 39.961538 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15694, 39.928952 ] } }, +{ "type": "Feature", "properties": { "location": "1 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142773940022806, 39.936959309546701 ] } }, +{ "type": "Feature", "properties": { "location": "1100 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163297142148394, 39.929821393069297 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172205, 39.920915 ] } }, +{ "type": "Feature", "properties": { "location": "4205 ROBBINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.058028843050806, 40.025434576207999 ] } }, +{ "type": "Feature", "properties": { "location": "1700 TULIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130945, 39.975717 ] } }, +{ "type": "Feature", "properties": { "location": "1600 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173493605529998, 39.923593782299903 ] } }, +{ "type": "Feature", "properties": { "location": "4229 ROMAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091384460604601, 40.009247004961601 ] } }, +{ "type": "Feature", "properties": { "location": "6800 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233286425901596, 39.917966129545299 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176492, 39.936728 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167368, 39.917627 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MORAVIAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172483, 39.950875 ] } }, +{ "type": "Feature", "properties": { "location": "6300 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229337034842004, 39.924330545924001 ] } }, +{ "type": "Feature", "properties": { "location": "850 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151814472821897, 39.966859140845997 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151903171246701, 39.966261014450403 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177982, 39.940433 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15573, 39.92896 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15575, 39.92889 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17975, 39.973688 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138662, 39.964487 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13876, 39.964443 ] } }, +{ "type": "Feature", "properties": { "location": "426 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12198, 39.997695 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FAIRHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15657, 39.920213 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 58TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236103557557598, 39.972515630487798 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153575, 39.928977 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S BROAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168557, 39.929127 ] } }, +{ "type": "Feature", "properties": { "location": "1100 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161043, 39.942707 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153217, 39.942537 ] } }, +{ "type": "Feature", "properties": { "location": "200 TROTTER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144497, 39.948997 ] } }, +{ "type": "Feature", "properties": { "location": "200 TROTTERS ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144567, 39.948805 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S PAXON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221488323555207, 39.943612365451401 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171345255211506, 39.9359041998718 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14044, 39.954188 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133017, 39.969063 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132958, 39.96894 ] } }, +{ "type": "Feature", "properties": { "location": "6000 BINGHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.097776051600903, 40.044112209618397 ] } }, +{ "type": "Feature", "properties": { "location": "500 COMLY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100739258755794, 40.044824923177401 ] } }, +{ "type": "Feature", "properties": { "location": "600 ORIANNA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143782, 39.963627 ] } }, +{ "type": "Feature", "properties": { "location": "300 DURFOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153101684462399, 39.9192365448923 ] } }, +{ "type": "Feature", "properties": { "location": "300 DURFOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153101684462399, 39.9192365448923 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S JESSUP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164535, 39.926217 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159573, 39.92428 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158123, 39.92338 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158415, 39.923252 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15822, 39.923372 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158203, 39.923427 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155198, 39.984475 ] } }, +{ "type": "Feature", "properties": { "location": "401 S 40TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "4523 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212721791651305, 39.952943597658198 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S JUNIPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168462, 39.924183 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WALLACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156335, 39.964397 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168633, 39.9333 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17403, 39.952697 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17082, 39.949562 ] } }, +{ "type": "Feature", "properties": { "location": "4054 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205538, 39.952033 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15536, 39.920815 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155378, 39.921357 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155408, 39.920772 ] } }, +{ "type": "Feature", "properties": { "location": "2200 AMBER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130634194463397, 39.981392320822202 ] } }, +{ "type": "Feature", "properties": { "location": "3000 RUTH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.116698396863796, 39.994059493709898 ] } }, +{ "type": "Feature", "properties": { "location": "1700 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172773, 39.933503 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "1100 MERCY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16588, 39.924337 ] } }, +{ "type": "Feature", "properties": { "location": "900 N PENN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13507, 39.962768 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22041, 40.024788 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220443, 40.024862 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157172889510406, 39.954789774974103 ] } }, +{ "type": "Feature", "properties": { "location": "1821 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155956815939305, 39.925712146940199 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155772, 39.925967 ] } }, +{ "type": "Feature", "properties": { "location": "1700 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170528, 39.94663 ] } }, +{ "type": "Feature", "properties": { "location": "100 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144663, 39.944418 ] } }, +{ "type": "Feature", "properties": { "location": "200 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132052, 39.968205 ] } }, +{ "type": "Feature", "properties": { "location": "3815 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197712, 39.959948 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155095, 39.929503 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166877, 39.920283 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129587, 39.975952 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129605, 39.97599 ] } }, +{ "type": "Feature", "properties": { "location": "912 W ERIE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143060030768794, 40.008191789944298 ] } }, +{ "type": "Feature", "properties": { "location": "200 SUMAC ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205113441272601, 40.0190521319849 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 39TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199467, 39.961488 ] } }, +{ "type": "Feature", "properties": { "location": "700 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154715, 39.942748 ] } }, +{ "type": "Feature", "properties": { "location": "200 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14539, 39.948538 ] } }, +{ "type": "Feature", "properties": { "location": "199 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144707, 39.944473 ] } }, +{ "type": "Feature", "properties": { "location": "616 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153055, 39.941738 ] } }, +{ "type": "Feature", "properties": { "location": "4100 O ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.096453, 40.00844 ] } }, +{ "type": "Feature", "properties": { "location": "5500 WISSAHICKON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181733, 40.02579 ] } }, +{ "type": "Feature", "properties": { "location": "311 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157017801052902, 39.9576419838642 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225648, 40.027018 ] } }, +{ "type": "Feature", "properties": { "location": "1000 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161603, 39.929598 ] } }, +{ "type": "Feature", "properties": { "location": "1 ELLEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134715, 39.963122 ] } }, +{ "type": "Feature", "properties": { "location": "1 ELLEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134612, 39.963115 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "202 SULIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128950785266298, 40.025807844805797 ] } }, +{ "type": "Feature", "properties": { "location": "2000 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17142, 39.964442 ] } }, +{ "type": "Feature", "properties": { "location": "800 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161137, 39.916833 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181114576860494, 39.971056082780301 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S ALDER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163167, 39.924763 ] } }, +{ "type": "Feature", "properties": { "location": "899 STILLMAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178418, 39.971287 ] } }, +{ "type": "Feature", "properties": { "location": "500 SHUNK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156675014976798, 39.916299874743999 ] } }, +{ "type": "Feature", "properties": { "location": "157 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214843, 40.022062 ] } }, +{ "type": "Feature", "properties": { "location": "157 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214822, 40.022003 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "157 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214763, 40.022013 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21479, 40.02209 ] } }, +{ "type": "Feature", "properties": { "location": "157 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214758, 40.022112 ] } }, +{ "type": "Feature", "properties": { "location": "13 S 20TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173325, 39.95253 ] } }, +{ "type": "Feature", "properties": { "location": "1500 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167253, 39.948002 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15411, 39.94783 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154158, 39.947725 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153932, 39.94749 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16087, 39.953623 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREENE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142423, 39.961135 ] } }, +{ "type": "Feature", "properties": { "location": "2403 SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127328, 39.976742 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 35TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192403, 39.958782 ] } }, +{ "type": "Feature", "properties": { "location": "400 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150715, 39.93864 ] } }, +{ "type": "Feature", "properties": { "location": "429 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150765, 39.938637 ] } }, +{ "type": "Feature", "properties": { "location": "429 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150798, 39.938728 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169833, 39.95658 ] } }, +{ "type": "Feature", "properties": { "location": "2340 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155764590766594, 39.988624524518798 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162542, 39.949788 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154942, 39.92962 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154893, 39.929565 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154912, 39.929547 ] } }, +{ "type": "Feature", "properties": { "location": "238 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124695974647196, 40.044583159159998 ] } }, +{ "type": "Feature", "properties": { "location": "238 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124695974647196, 40.044583159159998 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176775, 39.952388 ] } }, +{ "type": "Feature", "properties": { "location": "1100 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16694, 39.918962 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "1400 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16897, 39.931823 ] } }, +{ "type": "Feature", "properties": { "location": "1400 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1685790677749, 39.931758878946098 ] } }, +{ "type": "Feature", "properties": { "location": "1100 PIERCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163598, 39.92779 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S JESSUP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165983, 39.91932 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S JESSUP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1659, 39.919335 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178217, 39.945187 ] } }, +{ "type": "Feature", "properties": { "location": "2700 W STERNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176135937599597, 39.997223875342101 ] } }, +{ "type": "Feature", "properties": { "location": "200 FLORIST ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144802, 39.95449 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086202, 40.013795 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156105, 39.925098 ] } }, +{ "type": "Feature", "properties": { "location": "500 SIGEL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155877, 39.925577 ] } }, +{ "type": "Feature", "properties": { "location": "6114 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175785, 39.94164 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROOSEVELT BL", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13072, 40.02476 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218533670274198, 40.0267494724595 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143375, 40.039712 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159683, 39.953418 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 67TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230794248045001, 39.918635809649501 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 21ST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176402, 39.952137 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 21ST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175452, 39.952135 ] } }, +{ "type": "Feature", "properties": { "location": "146 BREAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143923, 39.953492 ] } }, +{ "type": "Feature", "properties": { "location": "35 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158467, 39.95084 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157875, 39.949397 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15781, 39.949302 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157647, 39.949028 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157865, 39.94984 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158265, 39.949263 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15797, 39.94896 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158178, 39.949648 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157915, 39.94941 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158207, 39.949345 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157768, 39.949347 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218533670274198, 40.0267494724595 ] } }, +{ "type": "Feature", "properties": { "location": "200 GRAPE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219927137791004, 40.027418020654501 ] } }, +{ "type": "Feature", "properties": { "location": "2000 SEPVIVA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129892, 39.978415 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172283, 39.946685 ] } }, +{ "type": "Feature", "properties": { "location": "752 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17465, 39.942378 ] } }, +{ "type": "Feature", "properties": { "location": "752 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1746, 39.942633 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W RUSH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153907, 39.995968 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W RUSH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153785, 39.995982 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201707, 39.954845 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160335, 39.982812 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ATLANTIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149222, 40.006303 ] } }, +{ "type": "Feature", "properties": { "location": "1300 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16405, 39.942935 ] } }, +{ "type": "Feature", "properties": { "location": "6400 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233795, 39.926157 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BIGLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165172, 39.913428 ] } }, +{ "type": "Feature", "properties": { "location": "1400 HIGBEE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080324315752506, 40.034722703896499 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154203, 40.003345 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155667, 39.929742 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15492, 39.949045 ] } }, +{ "type": "Feature", "properties": { "location": "215 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223503, 40.02874 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22349, 40.028645 ] } }, +{ "type": "Feature", "properties": { "location": "3200 ROSEHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124170913619295, 39.998699375862699 ] } }, +{ "type": "Feature", "properties": { "location": "1500 WOMRATH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090275, 40.009372 ] } }, +{ "type": "Feature", "properties": { "location": "5800 ADDISON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.239358129497901, 39.954141056685202 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228127, 40.028397 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228027, 40.028235 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22802, 40.028285 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22807, 40.028235 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228143, 40.02837 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228112, 40.028337 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16804, 39.954552 ] } }, +{ "type": "Feature", "properties": { "location": "1727 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165683, 39.928045 ] } }, +{ "type": "Feature", "properties": { "location": "4831 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "2500 A ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129559997102803, 39.9879090805697 ] } }, +{ "type": "Feature", "properties": { "location": "919 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148668, 39.939442 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169849341646994, 39.970221850758499 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167107, 39.91906 ] } }, +{ "type": "Feature", "properties": { "location": "1100 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16297, 39.936138 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152705, 39.925857 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178042, 39.923893 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168237, 39.947098 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14403, 39.969727 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153158, 39.942588 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "200 SEVILLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212995381035896, 40.022501017011301 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214032, 40.023412 ] } }, +{ "type": "Feature", "properties": { "location": "6700 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238278047178198, 39.923771572903703 ] } }, +{ "type": "Feature", "properties": { "location": "1900 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171897, 39.951792 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CEDAR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22491, 39.950245 ] } }, +{ "type": "Feature", "properties": { "location": "2300 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175713, 39.967733 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 18TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167085, 39.966905 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172917, 39.932238 ] } }, +{ "type": "Feature", "properties": { "location": "600 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156974931681304, 39.924777147009202 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164062, 39.924955 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173948, 39.942825 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GUYER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230382381546093, 39.917111764473503 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W ROCKLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143853090305498, 40.027205553484698 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1434, 40.027183 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161112, 39.937 ] } }, +{ "type": "Feature", "properties": { "location": "600 S PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157678, 39.942265 ] } }, +{ "type": "Feature", "properties": { "location": "2500 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178331543988193, 39.970147694148501 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159832, 39.972598 ] } }, +{ "type": "Feature", "properties": { "location": "500BLK RUSCOMB ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132607, 40.027375 ] } }, +{ "type": "Feature", "properties": { "location": "300 MONASTERY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217640426211005, 40.029120525284299 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170335932913702, 39.930733155947102 ] } }, +{ "type": "Feature", "properties": { "location": "500 CARPENTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152267, 39.936038 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149672, 39.938677 ] } }, +{ "type": "Feature", "properties": { "location": "748 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149707, 39.939048 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 7TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153948, 39.942233 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14032, 39.954338 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167532, 39.947467 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 8TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144368, 39.964028 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S ALDER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163152, 39.924798 ] } }, +{ "type": "Feature", "properties": { "location": "137 FERN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122860703670398, 40.042792157965998 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204532, 39.956695 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204537, 39.956662 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204558, 39.956703 ] } }, +{ "type": "Feature", "properties": { "location": "4105 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205252053137698, 39.956766908298398 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152607, 39.949943 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153998, 39.949978 ] } }, +{ "type": "Feature", "properties": { "location": "100 W WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136946456217501, 39.967327634254502 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 23RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178413, 39.950832 ] } }, +{ "type": "Feature", "properties": { "location": "7001 CALVERT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.059473990595194, 40.041338288584001 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168622, 39.933772 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168103, 39.939787 ] } }, +{ "type": "Feature", "properties": { "location": "2001 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15633, 39.923828 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15552, 39.929557 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194072, 39.950528 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19393, 39.950515 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194038, 39.950965 ] } }, +{ "type": "Feature", "properties": { "location": "311 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157017801052902, 39.9576419838642 ] } }, +{ "type": "Feature", "properties": { "location": "4900 WILLOWS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222692, 39.947955 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189553, 39.9547 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1575, 39.94942 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142143, 39.970315 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142032, 39.970325 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168302, 39.949015 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175097, 39.922527 ] } }, +{ "type": "Feature", "properties": { "location": "6800 VANDIKE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044, 40.024755 ] } }, +{ "type": "Feature", "properties": { "location": "6800 VANDIKE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044032, 40.02479 ] } }, +{ "type": "Feature", "properties": { "location": "1034 MONTROSE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160662, 39.938775 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.200272, 39.9546 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173634883259098, 39.936509633234998 ] } }, +{ "type": "Feature", "properties": { "location": "1370 S MELVILLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207951954694096, 39.943743181238403 ] } }, +{ "type": "Feature", "properties": { "location": "3500 RYAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041428, 40.037745 ] } }, +{ "type": "Feature", "properties": { "location": "3700 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.195323, 39.959712 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149112, 39.939478 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154905, 39.929617 ] } }, +{ "type": "Feature", "properties": { "location": "4400 SPRUCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210645, 39.95274 ] } }, +{ "type": "Feature", "properties": { "location": "1000 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160643, 39.935142 ] } }, +{ "type": "Feature", "properties": { "location": "2300 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176523, 39.96788 ] } }, +{ "type": "Feature", "properties": { "location": "5748 HAZEL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2376157498109, 39.952838499822903 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1012 S COLORADO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171993, 39.939337 ] } }, +{ "type": "Feature", "properties": { "location": "1012 S COLORADO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171985, 39.939402 ] } }, +{ "type": "Feature", "properties": { "location": "417 N 33RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189722, 39.962347 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171928, 39.922077 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108681669775905, 39.998047076844301 ] } }, +{ "type": "Feature", "properties": { "location": "4700 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218938, 39.954968 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155667, 39.929432 ] } }, +{ "type": "Feature", "properties": { "location": "1599 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0863, 40.015135 ] } }, +{ "type": "Feature", "properties": { "location": "505 S SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161297, 39.94348 ] } }, +{ "type": "Feature", "properties": { "location": "1500 BELMONT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213066538094694, 39.976342997949203 ] } }, +{ "type": "Feature", "properties": { "location": "6600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236328265977804, 39.924866610348701 ] } }, +{ "type": "Feature", "properties": { "location": "614 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152875, 39.942478 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168145, 39.939755 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163833, 39.949698 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163632, 39.949857 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163917, 39.950035 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163922, 39.95004 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165628, 39.951175 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163678, 39.950065 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163758, 39.949852 ] } }, +{ "type": "Feature", "properties": { "location": "4199 TERRACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216838, 40.024992 ] } }, +{ "type": "Feature", "properties": { "location": "1204 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164918034133095, 39.932546931873198 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134378, 39.972462 ] } }, +{ "type": "Feature", "properties": { "location": "4101 N 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140270308877902, 40.014889376962302 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170422, 39.965647 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160292, 39.942125 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160207, 39.942063 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 7TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15321, 39.945447 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154095, 39.945932 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 12TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158415, 39.959032 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163368, 39.956682 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1700 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172931545813796, 39.933577847589902 ] } }, +{ "type": "Feature", "properties": { "location": "128 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221452, 39.95722 ] } }, +{ "type": "Feature", "properties": { "location": "1613 PINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168928, 39.946037 ] } }, +{ "type": "Feature", "properties": { "location": "1613 PINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168882, 39.946048 ] } }, +{ "type": "Feature", "properties": { "location": "104 N WOODSTOCK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173153, 39.95676 ] } }, +{ "type": "Feature", "properties": { "location": "2000 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154769384778206, 39.993146815762302 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159282, 39.97669 ] } }, +{ "type": "Feature", "properties": { "location": "763 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175545, 39.942405 ] } }, +{ "type": "Feature", "properties": { "location": "763 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175607, 39.942467 ] } }, +{ "type": "Feature", "properties": { "location": "1134 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18012, 39.93813 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MONUMENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16212, 39.983303 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169269724172295, 39.928085368665201 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147823, 39.940285 ] } }, +{ "type": "Feature", "properties": { "location": "200 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147232, 39.938065 ] } }, +{ "type": "Feature", "properties": { "location": "2205 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177877, 39.95096 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155866964385496, 39.926108690002401 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140663, 39.956393 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152569392695199, 39.935608871022403 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158083, 39.937562 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 35TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.192494600580105, 39.959370160547302 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 11TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157802589650004, 39.954045423984702 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SANSOM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167098, 39.95043 ] } }, +{ "type": "Feature", "properties": { "location": "5700 HUNTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162283, 39.925918 ] } }, +{ "type": "Feature", "properties": { "location": "6800 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233286425901596, 39.917966129545299 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163637, 39.94396 ] } }, +{ "type": "Feature", "properties": { "location": "1 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137933, 39.962722 ] } }, +{ "type": "Feature", "properties": { "location": "1800 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "668 N 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18096, 39.97165 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180995, 39.971555 ] } }, +{ "type": "Feature", "properties": { "location": "4701 CHESTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214620165633406, 39.945515229030903 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 9TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153572, 39.95888 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169604533303598, 39.940189476513702 ] } }, +{ "type": "Feature", "properties": { "location": "700 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157923, 39.924132 ] } }, +{ "type": "Feature", "properties": { "location": "715 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159103, 39.920572 ] } }, +{ "type": "Feature", "properties": { "location": "800 N BUCKNELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175755178552706, 39.970389503043698 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183948, 39.952437 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185517, 39.952047 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14996, 39.946443 ] } }, +{ "type": "Feature", "properties": { "location": "2200 SUMMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176112, 39.959093 ] } }, +{ "type": "Feature", "properties": { "location": "400 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142985, 39.971133 ] } }, +{ "type": "Feature", "properties": { "location": "2300 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1751383544606, 39.969745383431302 ] } }, +{ "type": "Feature", "properties": { "location": "2000 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172155, 39.963847 ] } }, +{ "type": "Feature", "properties": { "location": "2000 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171998, 39.963837 ] } }, +{ "type": "Feature", "properties": { "location": "2000 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172112, 39.963733 ] } }, +{ "type": "Feature", "properties": { "location": "1200 GREEBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080249206869198, 40.043556619249998 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153912, 39.929057 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153732, 39.92907 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153553, 39.928947 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156947, 39.928115 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160898, 39.958687 ] } }, +{ "type": "Feature", "properties": { "location": "4300 BALTIMORE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209277, 39.949592 ] } }, +{ "type": "Feature", "properties": { "location": "3253 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129626806967195, 39.999408113953201 ] } }, +{ "type": "Feature", "properties": { "location": "6700 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072454617014998, 40.043343221884101 ] } }, +{ "type": "Feature", "properties": { "location": "6736 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072454617014998, 40.043343221884101 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129577, 39.97292 ] } }, +{ "type": "Feature", "properties": { "location": "600 WATKINS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155667, 39.927027 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170362, 39.927063 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159922, 39.929775 ] } }, +{ "type": "Feature", "properties": { "location": "3200 POWELTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189372, 39.960528 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189453, 39.960247 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E ALBERT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125048375618604, 39.9877593681598 ] } }, +{ "type": "Feature", "properties": { "location": "1812 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171348, 39.951845 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233875, 39.92613 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169627, 39.95162 ] } }, +{ "type": "Feature", "properties": { "location": "1721 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169592, 39.951968 ] } }, +{ "type": "Feature", "properties": { "location": "1700 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169372, 39.952318 ] } }, +{ "type": "Feature", "properties": { "location": "1199 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158912, 39.9342 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159047, 39.949338 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MEDARY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149261451168101, 40.049907163692097 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161522, 39.929582 ] } }, +{ "type": "Feature", "properties": { "location": "6800 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070710380987194, 40.044272419847402 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150922, 40.00444 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155897, 39.948982 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154875, 39.945263 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156795, 39.951233 ] } }, +{ "type": "Feature", "properties": { "location": "1022 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 39.954493 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155273, 39.954362 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160955, 39.956157 ] } }, +{ "type": "Feature", "properties": { "location": "1200 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15899, 39.958418 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 12TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158472, 39.959087 ] } }, +{ "type": "Feature", "properties": { "location": "1215 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159228, 39.958558 ] } }, +{ "type": "Feature", "properties": { "location": "800 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "200 WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161512, 39.956818 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 4TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14645, 39.946685 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160795, 39.959182 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16074, 39.958743 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160677, 39.958775 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182697, 39.970675 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182611070365994, 39.970891215557899 ] } }, +{ "type": "Feature", "properties": { "location": "2700 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181348365320005, 39.971651771260802 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SPRUCE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16811, 39.94735 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SPRUCE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167967, 39.947408 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N ORIANNA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142697, 39.967758 ] } }, +{ "type": "Feature", "properties": { "location": "1500 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168858, 39.943132 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165252, 39.91991 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169873, 39.920525 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166788, 39.92012 ] } }, +{ "type": "Feature", "properties": { "location": "400 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153375672391903, 39.926435117060798 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15354, 39.929302 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219842298067505, 40.028135599795696 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173392, 39.948285 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155652, 39.929272 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155702, 39.929238 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155655, 39.929242 ] } }, +{ "type": "Feature", "properties": { "location": "432 W ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137088929782394, 39.999560519025401 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22817, 40.028362 ] } }, +{ "type": "Feature", "properties": { "location": "2100 GOULD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235764520071896, 39.92554626706 ] } }, +{ "type": "Feature", "properties": { "location": "523 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "3417 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193865, 39.95084 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 38TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198688, 39.953275 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193927, 39.950622 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137628, 39.968167 ] } }, +{ "type": "Feature", "properties": { "location": "3700 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197965, 39.955805 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16471, 39.9225 ] } }, +{ "type": "Feature", "properties": { "location": "700 APPLETREE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152363, 39.953607 ] } }, +{ "type": "Feature", "properties": { "location": "400 S HUTCHINSON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157538, 39.944295 ] } }, +{ "type": "Feature", "properties": { "location": "700 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159097, 39.965587 ] } }, +{ "type": "Feature", "properties": { "location": "700 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159083, 39.965533 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159267, 39.96501 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140261951790094, 39.954926794402901 ] } }, +{ "type": "Feature", "properties": { "location": "2000 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171317, 39.967225 ] } }, +{ "type": "Feature", "properties": { "location": "2900 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174935286123201, 39.913992316500099 ] } }, +{ "type": "Feature", "properties": { "location": "2014 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172722069517505, 39.925820008305898 ] } }, +{ "type": "Feature", "properties": { "location": "2038 S REDFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228431665606294, 39.932759208621199 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208957, 39.9438 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171102, 39.925777 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151411966648396, 39.949845293803897 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151411966648396, 39.949845293803897 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15206, 39.949928 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151972, 39.949732 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163165, 39.949725 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151032, 39.949838 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154287, 39.947695 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152023, 39.949817 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1559, 39.954448 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151957, 39.94998 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151708, 39.950643 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151383, 39.950957 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152077, 39.950028 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152045, 39.949908 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170948, 39.921968 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166775, 39.917627 ] } }, +{ "type": "Feature", "properties": { "location": "260 S SARTAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160427263636606, 39.947293796705999 ] } }, +{ "type": "Feature", "properties": { "location": "4522 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212758, 39.95533 ] } }, +{ "type": "Feature", "properties": { "location": "4560 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213214329456207, 39.955429364397197 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170872, 39.938212 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157922, 39.924988 ] } }, +{ "type": "Feature", "properties": { "location": "1500 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16959, 39.933132 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158998, 39.926688 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "181 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BUTTONWOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162217, 39.961873 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155602, 39.929563 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234550547919994, 39.925419874465199 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177602, 39.942745 ] } }, +{ "type": "Feature", "properties": { "location": "732 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177420109508901, 39.9430513991447 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158305, 39.92373 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156313, 39.954555 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166272028734994, 39.951753267343001 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168033, 39.936378 ] } }, +{ "type": "Feature", "properties": { "location": "5100 VIOLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222389606258105, 39.980273704307002 ] } }, +{ "type": "Feature", "properties": { "location": "799 S ROSEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166583, 39.941773 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149547, 39.939862 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163288354647193, 39.972905150418597 ] } }, +{ "type": "Feature", "properties": { "location": "1082 WAGNER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140202197801997, 40.034159945376203 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213977, 40.023277 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213983, 40.023315 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213938, 40.023 ] } }, +{ "type": "Feature", "properties": { "location": "7020 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2391293384932, 39.9174278242876 ] } }, +{ "type": "Feature", "properties": { "location": "1000 HAMILTON ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156205, 39.960232 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162603, 39.964775 ] } }, +{ "type": "Feature", "properties": { "location": "5000 LEIPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.081697, 40.02261 ] } }, +{ "type": "Feature", "properties": { "location": "2231 S NORWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182102412923896, 39.924062891146697 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159487, 39.924763 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15578, 39.957707 ] } }, +{ "type": "Feature", "properties": { "location": "400 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137828, 39.957898 ] } }, +{ "type": "Feature", "properties": { "location": "2499 E CLEMENTINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106927756070505, 39.986449837632499 ] } }, +{ "type": "Feature", "properties": { "location": "800 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154848, 39.948397 ] } }, +{ "type": "Feature", "properties": { "location": "500 S SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161378, 39.943412 ] } }, +{ "type": "Feature", "properties": { "location": "505 S SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161326072550807, 39.943394058802198 ] } }, +{ "type": "Feature", "properties": { "location": "200 THOMAS PAINE PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145643, 39.946485 ] } }, +{ "type": "Feature", "properties": { "location": "400 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153375672391903, 39.926435117060798 ] } }, +{ "type": "Feature", "properties": { "location": "2555 CARPENTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186285, 39.94154 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22174, 39.95523 ] } }, +{ "type": "Feature", "properties": { "location": "1728 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16574, 39.92803 ] } }, +{ "type": "Feature", "properties": { "location": "900 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15532, 39.953785 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177782273418302, 39.945175802943702 ] } }, +{ "type": "Feature", "properties": { "location": "300 GREEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143526957418402, 39.961458146557199 ] } }, +{ "type": "Feature", "properties": { "location": "906 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154835, 39.95439 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223852, 40.028495 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16853, 39.924277 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215268, 40.021878 ] } }, +{ "type": "Feature", "properties": { "location": "300 MONASTERY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217640426211005, 40.029120525284299 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164657, 39.922932 ] } }, +{ "type": "Feature", "properties": { "location": "2300 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171433, 39.921452 ] } }, +{ "type": "Feature", "properties": { "location": "2326 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171443, 39.921465 ] } }, +{ "type": "Feature", "properties": { "location": "2326 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171422, 39.92148 ] } }, +{ "type": "Feature", "properties": { "location": "2300 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171465, 39.921472 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158509573320799, 39.921448544954501 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172205, 39.920848 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177180082743604, 39.927634720941498 ] } }, +{ "type": "Feature", "properties": { "location": "1331 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164805515634995, 39.944010134479299 ] } }, +{ "type": "Feature", "properties": { "location": "6700 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231751826874103, 39.919045028464197 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160798, 39.91811 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 2ND ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140458, 39.964998 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177598, 39.951087 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173583, 39.952653 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173385, 39.952168 ] } }, +{ "type": "Feature", "properties": { "location": "600 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15275, 39.941607 ] } }, +{ "type": "Feature", "properties": { "location": "600 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152697, 39.94158 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N LEITHGOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128072426923296, 40.041649823845198 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 23RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1784033466446, 39.951488808397798 ] } }, +{ "type": "Feature", "properties": { "location": "800 E RUSSELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113580765080798, 40.000226613532298 ] } }, +{ "type": "Feature", "properties": { "location": "2400 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176245551049803, 39.972272557773401 ] } }, +{ "type": "Feature", "properties": { "location": "1800 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175021414952099, 39.933851559219796 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155663, 39.929832 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191461312527693, 39.957436762388703 ] } }, +{ "type": "Feature", "properties": { "location": "1800 FRANCIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17095, 39.929595 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179587780004894, 39.971431611038 ] } }, +{ "type": "Feature", "properties": { "location": "900 CROSS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159947, 39.929892 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CRESSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219305, 40.024028 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169018329613905, 39.929306198693098 ] } }, +{ "type": "Feature", "properties": { "location": "1213 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158158, 39.962515 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157927, 39.962745 ] } }, +{ "type": "Feature", "properties": { "location": "1211 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158118, 39.962487 ] } }, +{ "type": "Feature", "properties": { "location": "1211 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158132, 39.96249 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MARLBOROUGH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133352, 39.972573 ] } }, +{ "type": "Feature", "properties": { "location": "4822 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133089686270694, 40.024648997932402 ] } }, +{ "type": "Feature", "properties": { "location": "300 ROCKLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130853, 40.025542 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171472855215697, 39.939056626352603 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22659, 40.028 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22634, 40.027623 ] } }, +{ "type": "Feature", "properties": { "location": "12 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 21ST ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176068, 39.949023 ] } }, +{ "type": "Feature", "properties": { "location": "435 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202987447586494, 39.960949236462199 ] } }, +{ "type": "Feature", "properties": { "location": "435 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202963, 39.961008 ] } }, +{ "type": "Feature", "properties": { "location": "1600 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169122, 39.948103 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166137, 39.95447 ] } }, +{ "type": "Feature", "properties": { "location": "2000 BLOCKS HUTCHINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162412, 39.923527 ] } }, +{ "type": "Feature", "properties": { "location": "4700 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215702, 39.955778 ] } }, +{ "type": "Feature", "properties": { "location": "129 ROOSEVELT BL", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122343, 40.026145 ] } }, +{ "type": "Feature", "properties": { "location": "400 RUSCOMB ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13242, 40.027242 ] } }, +{ "type": "Feature", "properties": { "location": "6510 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232792966578799, 39.923318525425003 ] } }, +{ "type": "Feature", "properties": { "location": "6508 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232792966578799, 39.923318525425003 ] } }, +{ "type": "Feature", "properties": { "location": "6500 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232792966578799, 39.923318525425003 ] } }, +{ "type": "Feature", "properties": { "location": "6500 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232792966578799, 39.923318525425003 ] } }, +{ "type": "Feature", "properties": { "location": "2016 S REDFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228431665606294, 39.932759208621199 ] } }, +{ "type": "Feature", "properties": { "location": "2020 S REDFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228431665606294, 39.932759208621199 ] } }, +{ "type": "Feature", "properties": { "location": "2016 S REDFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228431665606294, 39.932759208621199 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S REDFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228431665606294, 39.932759208621199 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227018414596103, 39.942084266968202 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140415, 39.95384 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126880037559602, 40.003559896198901 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BLLK RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168923, 39.944377 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S CHADWICK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17373, 39.926178 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1603, 39.942115 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16026, 39.942107 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16043, 39.942093 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160352, 39.942117 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163208, 39.922237 ] } }, +{ "type": "Feature", "properties": { "location": "500 E CABOT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129003, 39.972047 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170703, 39.920635 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170622, 39.92067 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167547, 39.918935 ] } }, +{ "type": "Feature", "properties": { "location": "1200 TREE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166462, 39.922228 ] } }, +{ "type": "Feature", "properties": { "location": "800 LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150922, 39.938437 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KENILWORTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163023, 39.942192 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161003, 39.953193 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2153, 40.021813 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215235, 40.02178 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 43RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208575, 39.955632 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 43RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208578, 39.955645 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159725, 39.93061 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SANSOM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202363, 39.95508 ] } }, +{ "type": "Feature", "properties": { "location": "1926 ASHLEY RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147948829992998, 40.066012650425399 ] } }, +{ "type": "Feature", "properties": { "location": "1928 ASHLEY RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147948829992998, 40.066012650425399 ] } }, +{ "type": "Feature", "properties": { "location": "1900 ASHLEY RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147948829992998, 40.066012650425399 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MASCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135152, 39.980273 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W VENANGO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150098, 40.00744 ] } }, +{ "type": "Feature", "properties": { "location": "1000 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16325, 39.922263 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163225, 39.922192 ] } }, +{ "type": "Feature", "properties": { "location": "1400 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166888, 39.943505 ] } }, +{ "type": "Feature", "properties": { "location": "187 ROOSEVELT BL", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.119793, 40.026507 ] } }, +{ "type": "Feature", "properties": { "location": "187 ROOSEVELT BL", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.119748, 40.026525 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161495, 39.984717 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154068, 39.927818 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163153, 39.945117 ] } }, +{ "type": "Feature", "properties": { "location": "5110 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224005057888206, 39.959313475732401 ] } }, +{ "type": "Feature", "properties": { "location": "4226 W GIRARD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211023777561394, 39.973374897440799 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142498, 39.96934 ] } }, +{ "type": "Feature", "properties": { "location": "1600 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171236199231203, 39.936360191092099 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173823, 39.92105 ] } }, +{ "type": "Feature", "properties": { "location": "1000 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161588, 39.929615 ] } }, +{ "type": "Feature", "properties": { "location": "1400 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168192, 39.931715 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15817, 39.937632 ] } }, +{ "type": "Feature", "properties": { "location": "1400 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168482, 39.931738 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155298, 39.954465 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170493, 39.949592 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153477, 39.928933 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153682, 39.928547 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164443, 39.950937 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164492, 39.950978 ] } }, +{ "type": "Feature", "properties": { "location": "500 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15181, 39.942307 ] } }, +{ "type": "Feature", "properties": { "location": "509 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089493502317296, 40.033440277255202 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089493502317296, 40.033440277255202 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089493502317296, 40.033440277255202 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089493502317296, 40.033440277255202 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153252, 39.931055 ] } }, +{ "type": "Feature", "properties": { "location": "1627 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163754556967206, 39.970079056239499 ] } }, +{ "type": "Feature", "properties": { "location": "1629 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163754556967206, 39.970079056239499 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160833, 39.951013 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161133, 39.95106 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161178, 39.951065 ] } }, +{ "type": "Feature", "properties": { "location": "1220 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167525, 39.918877 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15339, 39.938128 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17023, 39.942363 ] } }, +{ "type": "Feature", "properties": { "location": "300 VINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145315, 39.956027 ] } }, +{ "type": "Feature", "properties": { "location": "300 VINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145348, 39.956027 ] } }, +{ "type": "Feature", "properties": { "location": "300 VINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145302, 39.956117 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 17TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1673, 39.952007 ] } }, +{ "type": "Feature", "properties": { "location": "667 N SICKELS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230042781532902, 39.970475465733003 ] } }, +{ "type": "Feature", "properties": { "location": "761 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175585, 39.942387 ] } }, +{ "type": "Feature", "properties": { "location": "763 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175537, 39.94245 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213865, 40.023178 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2139, 40.023235 ] } }, +{ "type": "Feature", "properties": { "location": "6000 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.239972018113406, 39.968158768009197 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MASCHER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122681412358702, 40.0404360663426 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BELMAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225294978211593, 39.940625097825198 ] } }, +{ "type": "Feature", "properties": { "location": "400 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151930129375302, 39.932893846230201 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170505, 39.96569 ] } }, +{ "type": "Feature", "properties": { "location": "2831 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182959668383006, 39.973116229474499 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0, 40.0 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 6TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151903, 39.944322 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160941366333802, 39.968544012042102 ] } }, +{ "type": "Feature", "properties": { "location": "6012 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241540167869601, 39.961263417181897 ] } }, +{ "type": "Feature", "properties": { "location": "1400 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168705, 39.933053 ] } }, +{ "type": "Feature", "properties": { "location": "1226 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158243, 39.96267 ] } }, +{ "type": "Feature", "properties": { "location": "2400 E CLEMENTINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107537, 39.987095 ] } }, +{ "type": "Feature", "properties": { "location": "700 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15195, 39.940507 ] } }, +{ "type": "Feature", "properties": { "location": "608 GREENWICH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155485, 39.929595 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215142, 40.021935 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215087, 40.021938 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215165, 40.02189 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215165, 40.02188 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215132, 40.021925 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215187, 40.021942 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215133, 40.021948 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215095, 40.021907 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215153, 40.021922 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215165, 40.021938 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "1143 E PASSYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157719900066695, 39.934584519081298 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13863, 39.964467 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132607, 39.96956 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 52ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224925999748507, 39.966877920287899 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155613, 39.930038 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "4486 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221326380917006, 40.029873590594597 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "2811 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177226133031496, 39.996872926474701 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174113, 39.95518 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174288, 39.980105 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173673, 39.955203 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173478, 39.955152 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174678, 39.959533 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17393, 39.955277 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173918, 39.955302 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173898, 39.955198 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173827, 39.955163 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173888, 39.955273 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114722752115298, 39.995463360341198 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARLBOROUGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132272, 39.970653 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177375, 39.96547 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17975, 39.973822 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167403, 39.943003 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161497, 39.929633 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224528, 40.028065 ] } }, +{ "type": "Feature", "properties": { "location": "160 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224498, 40.028013 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224497, 40.02808 ] } }, +{ "type": "Feature", "properties": { "location": "162 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S CHADWICK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174227, 39.923673 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173681509071301, 39.923993053768399 ] } }, +{ "type": "Feature", "properties": { "location": "300 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148292, 39.944453 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159942, 39.958645 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150784765493697, 39.966745458599299 ] } }, +{ "type": "Feature", "properties": { "location": "400 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "2300 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181659253546499, 39.942730435679501 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12961, 39.973015 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129625, 39.973003 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129592, 39.972992 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173753, 39.936312 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ELLSWORTH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173387, 39.937742 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MANTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173703, 39.936285 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174527, 39.940713 ] } }, +{ "type": "Feature", "properties": { "location": "3300 POWELTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190478, 39.960398 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 21ST ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17569, 39.951442 ] } }, +{ "type": "Feature", "properties": { "location": "3800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199833, 39.954407 ] } }, +{ "type": "Feature", "properties": { "location": "3300 POWELTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19015, 39.960365 ] } }, +{ "type": "Feature", "properties": { "location": "DPP 3321 POWELTON AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19026, 39.960345 ] } }, +{ "type": "Feature", "properties": { "location": "4400 LUDLOW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2103952849438, 39.9574066986753 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 12TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160385, 39.949475 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174916350542503, 39.970854053890299 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179357, 39.971412 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178089557315005, 39.971246140363597 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 26TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179408, 39.971425 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172148, 39.928548 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180952, 39.971668 ] } }, +{ "type": "Feature", "properties": { "location": "2800 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182682852272904, 39.971818113177903 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182611070365994, 39.970891215557899 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182611070365994, 39.970891215557899 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182611070365994, 39.970891215557899 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182611070365994, 39.970891215557899 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 21ST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174825, 39.954892 ] } }, +{ "type": "Feature", "properties": { "location": "1600 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165867, 39.964357 ] } }, +{ "type": "Feature", "properties": { "location": "2100 WINTER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174443013610201, 39.959059334031302 ] } }, +{ "type": "Feature", "properties": { "location": "1510 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153575, 39.929333 ] } }, +{ "type": "Feature", "properties": { "location": "1000 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163115, 39.922297 ] } }, +{ "type": "Feature", "properties": { "location": "1100 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164792, 39.92251 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159782, 39.920448 ] } }, +{ "type": "Feature", "properties": { "location": "600 SANSOM ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152252, 39.94948 ] } }, +{ "type": "Feature", "properties": { "location": "3300 POWELTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190352, 39.9603 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15725, 39.954473 ] } }, +{ "type": "Feature", "properties": { "location": "600 SANSOM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152522, 39.949028 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RANSTEAD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166297, 39.951488 ] } }, +{ "type": "Feature", "properties": { "location": "2000 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176645, 39.946355 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157617, 39.925328 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213955, 40.023278 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213898, 40.023247 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166987, 39.935338 ] } }, +{ "type": "Feature", "properties": { "location": "1400 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16801, 39.932902 ] } }, +{ "type": "Feature", "properties": { "location": "1400 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168003, 39.932917 ] } }, +{ "type": "Feature", "properties": { "location": "6330 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228907420803395, 39.923982412725103 ] } }, +{ "type": "Feature", "properties": { "location": "6300 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228907420803395, 39.923982412725103 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191548, 39.957475 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191563, 39.957485 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191718, 39.957395 ] } }, +{ "type": "Feature", "properties": { "location": "780 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152917, 39.939148 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15291, 39.939037 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152947, 39.93908 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152948, 39.939123 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152875, 39.939017 ] } }, +{ "type": "Feature", "properties": { "location": "780 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152892, 39.939098 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152925, 39.939107 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152817, 39.939188 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1529, 39.939095 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15288, 39.939043 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 2ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144235, 39.947632 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 2ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144317, 39.94787 ] } }, +{ "type": "Feature", "properties": { "location": "4000 SANSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203085, 39.95499 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171227, 39.92508 ] } }, +{ "type": "Feature", "properties": { "location": "6101 WEBSTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246186503001297, 39.950539775107401 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155503, 39.929435 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155665, 39.929343 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155657, 39.929215 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1557, 39.929258 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15569, 39.929268 ] } }, +{ "type": "Feature", "properties": { "location": "505 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120564702101504, 39.999661712703201 ] } }, +{ "type": "Feature", "properties": { "location": "4200 ROMAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091384460604601, 40.009247004961601 ] } }, +{ "type": "Feature", "properties": { "location": "5900 HENRY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207778102685694, 40.031815395754201 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "701 E WILLARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "607 E RAYMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112056349455401, 40.017840758811801 ] } }, +{ "type": "Feature", "properties": { "location": "4000 LAWNDALE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105926716893293, 40.008876287268002 ] } }, +{ "type": "Feature", "properties": { "location": "51 N 39TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199550448784905, 39.957208472289999 ] } }, +{ "type": "Feature", "properties": { "location": "1648 DOUNTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153653054762898, 40.0181050242849 ] } }, +{ "type": "Feature", "properties": { "location": "1900 STERLING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149464295844496, 40.067772126999103 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158732075490207, 39.982669015578502 ] } }, +{ "type": "Feature", "properties": { "location": "4400 OAKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091717832300901, 40.015898841684397 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SANSOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213991414914403, 39.956306088759199 ] } }, +{ "type": "Feature", "properties": { "location": "3200 MORSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186715845077103, 39.984377376617097 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W ALLENS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207475516666605, 40.046739760897701 ] } }, +{ "type": "Feature", "properties": { "location": "3200 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188553917826894, 39.953931604063598 ] } }, +{ "type": "Feature", "properties": { "location": "36 N YEWDALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229074391941097, 39.961320764846398 ] } }, +{ "type": "Feature", "properties": { "location": "6600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236328265977804, 39.924866610348701 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169385, 39.951962 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177678, 39.953787 ] } }, +{ "type": "Feature", "properties": { "location": "1800 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170507, 39.952572 ] } }, +{ "type": "Feature", "properties": { "location": "1817 RANSTEAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170772205019702, 39.952277184502798 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SANSOM ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16578, 39.950287 ] } }, +{ "type": "Feature", "properties": { "location": "4699 SANSOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214595, 39.956387 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153758, 39.946015 ] } }, +{ "type": "Feature", "properties": { "location": "617 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139241261315107, 40.007702724037003 ] } }, +{ "type": "Feature", "properties": { "location": "5700 CEDAR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237828848406906, 39.951820391922503 ] } }, +{ "type": "Feature", "properties": { "location": "6831 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044445638549504, 40.026121624760101 ] } }, +{ "type": "Feature", "properties": { "location": "7141 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.037699048997098, 40.029607214159199 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124144188884202, 40.040619243780696 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 67TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.230794248045001, 39.918635809649501 ] } }, +{ "type": "Feature", "properties": { "location": "100 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173938611328893, 40.038159691523902 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "2800 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182959668383006, 39.973116229474499 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163288354647193, 39.972905150418597 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "3100 POTTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114924971536098, 39.996205261446804 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 57TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234950051921004, 39.960846575109898 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W STILES ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185757601967694, 39.975488012413798 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E HAINES ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163951824924695, 40.050863473535102 ] } }, +{ "type": "Feature", "properties": { "location": "200 E INDIANA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127670845717006, 39.99516976572 ] } }, +{ "type": "Feature", "properties": { "location": "2800 TULIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116318037436898, 39.984950395319402 ] } }, +{ "type": "Feature", "properties": { "location": "666 E WENSLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117861770118196, 39.999497995092298 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W YORK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179875682317203, 39.992506743654097 ] } }, +{ "type": "Feature", "properties": { "location": "2229 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168892151483604, 39.995795826908797 ] } }, +{ "type": "Feature", "properties": { "location": "7300 CRISPIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.043848608832803, 40.038875539799299 ] } }, +{ "type": "Feature", "properties": { "location": "1900 PLYMOUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148280061441994, 40.064492167381502 ] } }, +{ "type": "Feature", "properties": { "location": "5800 WEBSTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240215512359001, 39.9500450237149 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169849341646994, 39.970221850758499 ] } }, +{ "type": "Feature", "properties": { "location": "2211 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167854304503294, 39.995659356769202 ] } }, +{ "type": "Feature", "properties": { "location": "6100 BUIST AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223706377762198, 39.924703617757302 ] } }, +{ "type": "Feature", "properties": { "location": "6618 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235898990721395, 39.9244707588648 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17403, 39.952862 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 16TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167368, 39.950863 ] } }, +{ "type": "Feature", "properties": { "location": "319 S 17TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169687, 39.946918 ] } }, +{ "type": "Feature", "properties": { "location": "400 S HUTCHINSON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157458, 39.944312 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1634, 39.983452 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "1400 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167175, 39.943365 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 2ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14401, 39.94899 ] } }, +{ "type": "Feature", "properties": { "location": "1400 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16723, 39.943365 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158532, 39.943158 ] } }, +{ "type": "Feature", "properties": { "location": "1400 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162347, 39.948168 ] } }, +{ "type": "Feature", "properties": { "location": "900 FITZWATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157577, 39.940737 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 2ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143927, 39.948932 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 2ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143953, 39.9489 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 2ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144055, 39.94913 ] } }, +{ "type": "Feature", "properties": { "location": "800 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15573, 39.945798 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LOMBARD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179775, 39.946493 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165308, 39.95537 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153443, 39.928925 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163777, 39.950233 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 23RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17862, 39.950848 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19691, 39.95099 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155387, 39.954118 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152778, 39.953602 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193785, 39.95288 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193782, 39.95315 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193288, 39.953103 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19766, 39.954283 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164075, 39.950132 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163625, 39.950108 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163985, 39.950618 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164063, 39.950495 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163555, 39.949897 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163967, 39.949993 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154798, 39.946435 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15464, 39.946517 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163762, 39.95006 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163713, 39.949948 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163602, 39.950133 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154648, 39.946328 ] } }, +{ "type": "Feature", "properties": { "location": "6500 GUYER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227667858013106, 39.918994618833104 ] } }, +{ "type": "Feature", "properties": { "location": "2000 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170070223079605, 39.969115822825103 ] } }, +{ "type": "Feature", "properties": { "location": "2311 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169454899144895, 39.995866886662903 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114722752115298, 39.995463360341198 ] } }, +{ "type": "Feature", "properties": { "location": "599 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103136602350901, 40.040376633806602 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "500 E ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.120778210986799, 39.997449826340002 ] } }, +{ "type": "Feature", "properties": { "location": "100 E INDIANA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129667604773601, 39.995429869391401 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143294809954398, 40.027899861025901 ] } }, +{ "type": "Feature", "properties": { "location": "620 WHARTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155263814972599, 39.932538248421601 ] } }, +{ "type": "Feature", "properties": { "location": "1300 KENNEDY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078748354831106, 40.026115018487502 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136681744966097, 40.0113145367051 ] } }, +{ "type": "Feature", "properties": { "location": "2240 S 65TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233329386966503, 39.924729484822102 ] } }, +{ "type": "Feature", "properties": { "location": "2000 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179575601609997, 39.928597534262799 ] } }, +{ "type": "Feature", "properties": { "location": "6600 YOCUM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236328265977804, 39.924866610348701 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 64TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.230254364625196, 39.924042063294202 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CONESTOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229347197229799, 39.962609231168699 ] } }, +{ "type": "Feature", "properties": { "location": "4700 B ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.120308674142393, 40.0218596900908 ] } }, +{ "type": "Feature", "properties": { "location": "714 S 51ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225254755509994, 39.9484796309142 ] } }, +{ "type": "Feature", "properties": { "location": "1920 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177357436266007, 39.985098386991602 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127809679852206, 40.040049749210901 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N CROSKEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167051274877807, 40.000645817793099 ] } }, +{ "type": "Feature", "properties": { "location": "2400 W MAYFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170047475025001, 40.0010988256996 ] } }, +{ "type": "Feature", "properties": { "location": "2823 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154064002724098, 39.996387912152898 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147949822434299, 40.028356093410103 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143080727049295, 40.006643016473802 ] } }, +{ "type": "Feature", "properties": { "location": "700 W CAYUGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138468085431697, 40.018639534269496 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161190173410105, 39.980683206781798 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16354, 39.95002 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16351, 39.949568 ] } }, +{ "type": "Feature", "properties": { "location": "6500 GREENWAY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235814058020694, 39.926483823601203 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17335, 39.957543 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189335, 39.958867 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189363, 39.958835 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173237, 39.957498 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17402, 39.935063 ] } }, +{ "type": "Feature", "properties": { "location": "500 W PIKE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136511957078895, 40.010519893781698 ] } }, +{ "type": "Feature", "properties": { "location": "1575 N 52ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225907424880603, 39.978578447106401 ] } }, +{ "type": "Feature", "properties": { "location": "6900 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041516578602398, 40.024651696613297 ] } }, +{ "type": "Feature", "properties": { "location": "1600 UNITY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087375, 40.012393 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175112, 39.922558 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155752, 39.921238 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206552, 39.954165 ] } }, +{ "type": "Feature", "properties": { "location": "4000 LORING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.036924315338297, 40.037500147051901 ] } }, +{ "type": "Feature", "properties": { "location": "600 E ALLEGHENY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118900149565803, 39.9972008050445 ] } }, +{ "type": "Feature", "properties": { "location": "8109 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.024752233008499, 40.042637592597998 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150125, 40.003627 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226073102746895, 39.934412452547697 ] } }, +{ "type": "Feature", "properties": { "location": "2800 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182567, 39.97894 ] } }, +{ "type": "Feature", "properties": { "location": "800 CARVER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091025852555404, 40.034293984669098 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174183, 39.933767 ] } }, +{ "type": "Feature", "properties": { "location": "199 FERN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122860703670398, 40.042792157965998 ] } }, +{ "type": "Feature", "properties": { "location": "4613 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148070681553605, 40.023757753170997 ] } }, +{ "type": "Feature", "properties": { "location": "4623 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148070681553605, 40.023757753170997 ] } }, +{ "type": "Feature", "properties": { "location": "4625 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148070681553605, 40.023757753170997 ] } }, +{ "type": "Feature", "properties": { "location": "4509 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148406936545101, 40.022218898894899 ] } }, +{ "type": "Feature", "properties": { "location": "4513 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148406936545101, 40.022218898894899 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123943002634107, 40.042163244840197 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123943002634107, 40.042163244840197 ] } }, +{ "type": "Feature", "properties": { "location": "2800 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191007842205906, 39.935904681835098 ] } }, +{ "type": "Feature", "properties": { "location": "100 SPARKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1205639931745, 40.044050965666003 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142879772740699, 40.039622132173697 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TULIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123537190779103, 39.981175825668799 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CARDINAL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240834380966604, 39.993072778136202 ] } }, +{ "type": "Feature", "properties": { "location": "2099 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17133, 39.971607 ] } }, +{ "type": "Feature", "properties": { "location": "6400 GLENMORE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231523820200394, 39.924134249333797 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "5501 BELMAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226665671444493, 39.939662556292902 ] } }, +{ "type": "Feature", "properties": { "location": "5500 BELMAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226665671444493, 39.939662556292902 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1743 N BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163319463410502, 39.9801763586524 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150775536294105, 39.917879911593502 ] } }, +{ "type": "Feature", "properties": { "location": "2100 GOULD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235155, 39.925087 ] } }, +{ "type": "Feature", "properties": { "location": "2500 E NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124357, 39.975022 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171942, 39.939797 ] } }, +{ "type": "Feature", "properties": { "location": "1000 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161532, 39.929562 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155717, 39.95973 ] } }, +{ "type": "Feature", "properties": { "location": "2002 E MOYAMENSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152655, 39.923277 ] } }, +{ "type": "Feature", "properties": { "location": "1833 DELANCEY PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173007, 39.947233 ] } }, +{ "type": "Feature", "properties": { "location": "2300 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174656066636601, 39.972069653057098 ] } }, +{ "type": "Feature", "properties": { "location": "5787 DUNLAP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237382404049896, 39.978604753829401 ] } }, +{ "type": "Feature", "properties": { "location": "53 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233388765626998, 39.961855991934897 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175819041833293, 39.995367971171 ] } }, +{ "type": "Feature", "properties": { "location": "6319 MERSHON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064430024362807, 40.031253197792402 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153723, 39.929028 ] } }, +{ "type": "Feature", "properties": { "location": "500 VAN KIRK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102108960261106, 40.043679069465803 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "11870 BASILE RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.982408969866199, 40.0936256640314 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155565, 39.929887 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155388485861593, 39.959648400917096 ] } }, +{ "type": "Feature", "properties": { "location": "3800 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197277010237499, 39.960467515074001 ] } }, +{ "type": "Feature", "properties": { "location": "6715 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.046118774141902, 40.025258920241299 ] } }, +{ "type": "Feature", "properties": { "location": "701 N BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160310678513099, 39.967460481221302 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155882, 39.936147 ] } }, +{ "type": "Feature", "properties": { "location": "500 SAINT JAMES ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150353, 39.946617 ] } }, +{ "type": "Feature", "properties": { "location": "700 E ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1164025539248, 40.000051055523699 ] } }, +{ "type": "Feature", "properties": { "location": "700 E ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1164025539248, 40.000051055523699 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147447740555705, 39.984332449148702 ] } }, +{ "type": "Feature", "properties": { "location": "5400 LARGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.083379233283395, 40.0297696759933 ] } }, +{ "type": "Feature", "properties": { "location": "5100 N SYDENHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149008, 40.031055 ] } }, +{ "type": "Feature", "properties": { "location": "1000 VAN KIRK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088982492812207, 40.036377202669698 ] } }, +{ "type": "Feature", "properties": { "location": "7600 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.060622, 40.05718 ] } }, +{ "type": "Feature", "properties": { "location": "4701 B ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.120308674142393, 40.0218596900908 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176598, 39.922655 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N FRANKLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139637885458896, 40.014808112682402 ] } }, +{ "type": "Feature", "properties": { "location": "300 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217640426211005, 40.029120525284299 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHELTEN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145825132922994, 40.051026878688099 ] } }, +{ "type": "Feature", "properties": { "location": "500 BURGESS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.025132965248702, 40.1167164355899 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104971130259102, 39.998610636321899 ] } }, +{ "type": "Feature", "properties": { "location": "800 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238925750023895, 39.9480870781859 ] } }, +{ "type": "Feature", "properties": { "location": "7127 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.038817452657497, 40.029030628713997 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081556458095605, 40.028352956663497 ] } }, +{ "type": "Feature", "properties": { "location": "700 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155068, 39.93954 ] } }, +{ "type": "Feature", "properties": { "location": "2700 JASPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1228402273711, 39.989635134129102 ] } }, +{ "type": "Feature", "properties": { "location": "7300 BELDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068255, 40.052925 ] } }, +{ "type": "Feature", "properties": { "location": "800 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160267, 39.928155 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157427, 39.926523 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139377, 39.95908 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157172889510406, 39.954789774974103 ] } }, +{ "type": "Feature", "properties": { "location": "131 N 63RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246267406527494, 39.965037952262001 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175672, 39.954393 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176145, 39.954105 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175998, 39.953175 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151207, 39.940158 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2245, 40.028038 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "5400 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.230600051737994, 39.956413205373998 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17041, 39.949622 ] } }, +{ "type": "Feature", "properties": { "location": "3800 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197757, 39.960752 ] } }, +{ "type": "Feature", "properties": { "location": "200 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "3700 CRESSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212784684631004, 40.018356957214301 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154572, 39.962173 ] } }, +{ "type": "Feature", "properties": { "location": "1 CHRISTIAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144192, 39.93528 ] } }, +{ "type": "Feature", "properties": { "location": "4627 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117729166988298, 40.019912280046697 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154865517374205, 39.984450187978602 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154533, 40.001853 ] } }, +{ "type": "Feature", "properties": { "location": "1413 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169018329613905, 39.929306198693098 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19112, 39.960813 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191115, 39.96081 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1604, 39.942087 ] } }, +{ "type": "Feature", "properties": { "location": "200 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150562, 39.923142 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160708, 39.918198 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ALMOND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.106187, 39.984317 ] } }, +{ "type": "Feature", "properties": { "location": "646 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117186132536304, 40.001720989813499 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156675551221397, 39.922466295618399 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193847628254204, 39.960199131993697 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1911, 39.96084 ] } }, +{ "type": "Feature", "properties": { "location": "4200 GRISCOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089812, 40.011573 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117248, 39.976078 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163357, 39.943408 ] } }, +{ "type": "Feature", "properties": { "location": "916 REED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160427030132794, 39.931958321651798 ] } }, +{ "type": "Feature", "properties": { "location": "500 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156016397590093, 39.921785225452197 ] } }, +{ "type": "Feature", "properties": { "location": "700 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115884688012599, 39.999523430550099 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1405, 39.96868 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROSELYN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128128969250398, 40.042975181119601 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167008, 39.942437 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13759, 39.968067 ] } }, +{ "type": "Feature", "properties": { "location": "400 GASKILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150412, 39.942235 ] } }, +{ "type": "Feature", "properties": { "location": "114 RIPKA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229031777605002, 40.030675271465398 ] } }, +{ "type": "Feature", "properties": { "location": "343 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152508118839407, 39.9213343936039 ] } }, +{ "type": "Feature", "properties": { "location": "3500 RETTA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204547148793594, 40.017762450850803 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W GRANGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142253, 40.041073 ] } }, +{ "type": "Feature", "properties": { "location": "26000 WATTS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170613, 39.916838 ] } }, +{ "type": "Feature", "properties": { "location": "2200 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123038, 39.973775 ] } }, +{ "type": "Feature", "properties": { "location": "408 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202987447586494, 39.960949236462199 ] } }, +{ "type": "Feature", "properties": { "location": "1717 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173578, 39.929458 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161045, 39.968645 ] } }, +{ "type": "Feature", "properties": { "location": "3800 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19879, 39.960643 ] } }, +{ "type": "Feature", "properties": { "location": "4700 MARPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.029172970732205, 40.032245753644901 ] } }, +{ "type": "Feature", "properties": { "location": "4700 MARPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.029172970732205, 40.032245753644901 ] } }, +{ "type": "Feature", "properties": { "location": "4700 MARPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.029172970732205, 40.032245753644901 ] } }, +{ "type": "Feature", "properties": { "location": "1500 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.07796, 40.022235 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139623, 39.956847 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138394646780995, 39.964179057289002 ] } }, +{ "type": "Feature", "properties": { "location": "714 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159227, 39.920543 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 61ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224147085167104, 39.925474016135801 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "312 BURNSIDE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214049194712203, 40.024916876614697 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MELON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161323, 39.966373 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160162, 39.984112 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123062, 39.973785 ] } }, +{ "type": "Feature", "properties": { "location": "5156 HARLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225439196084395, 39.9749508517287 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 65TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236637959972001, 39.927525090837598 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160099296902004, 39.983849577512302 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N FRONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130211055352007, 39.994177508307303 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133033, 39.969067 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 26TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182973, 39.946598 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158717, 39.920565 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1547, 39.93121 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153461910362296, 39.931041315175399 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154727, 39.931202 ] } }, +{ "type": "Feature", "properties": { "location": "400 MERCY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154169932052199, 39.922828820304296 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WALNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1626269596009, 39.949144266835603 ] } }, +{ "type": "Feature", "properties": { "location": "620 E TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117630598176405, 40.001784135123501 ] } }, +{ "type": "Feature", "properties": { "location": "4000 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203673, 39.960238 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064010298178701, 40.014484142812499 ] } }, +{ "type": "Feature", "properties": { "location": "128 S 48TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217562, 39.956757 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S FRONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146247, 39.931278 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "5130 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224005057888206, 39.959313475732401 ] } }, +{ "type": "Feature", "properties": { "location": "1000 AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14099, 39.96651 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "700 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159133840973595, 39.922192912282597 ] } }, +{ "type": "Feature", "properties": { "location": "700 SIGEL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158334695615395, 39.925834606298999 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15769, 39.924793 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196848, 39.96088 ] } }, +{ "type": "Feature", "properties": { "location": "2030 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176992, 39.941067 ] } }, +{ "type": "Feature", "properties": { "location": "300 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152377, 39.92712 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173007608326898, 39.918394918650201 ] } }, +{ "type": "Feature", "properties": { "location": "1713 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171885, 39.939715 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182848487988693, 39.995189741029698 ] } }, +{ "type": "Feature", "properties": { "location": "2300 NICHOLAS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173414290029399, 39.9801613063267 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W LOUDON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147717, 40.026205 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MBLK SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086185, 40.013822 ] } }, +{ "type": "Feature", "properties": { "location": "1724 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1937 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169084020411205, 39.971381697273998 ] } }, +{ "type": "Feature", "properties": { "location": "1500 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131846387101604, 39.974480811046902 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 21ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178015, 39.940105 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224393, 40.028172 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152628, 39.923482 ] } }, +{ "type": "Feature", "properties": { "location": "199 W THELMA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127209198689698, 40.0204988630881 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155718, 39.925923 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157535, 39.923305 ] } }, +{ "type": "Feature", "properties": { "location": "906 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177957, 39.941035 ] } }, +{ "type": "Feature", "properties": { "location": "3700 F ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.116143905582504, 40.002811639154999 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215268, 40.02188 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173593, 39.936222 ] } }, +{ "type": "Feature", "properties": { "location": "4649 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117729166988298, 40.019912280046697 ] } }, +{ "type": "Feature", "properties": { "location": "4200 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208443, 39.956282 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S DEWEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224655460147702, 39.925107035872202 ] } }, +{ "type": "Feature", "properties": { "location": "314 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18815, 39.961193 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "3100 D ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121437, 39.996873 ] } }, +{ "type": "Feature", "properties": { "location": "1721 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "5800 WISSAHICKON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185657, 40.028967 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170195, 39.949838 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142865, 39.967287 ] } }, +{ "type": "Feature", "properties": { "location": "900 BUTTONWOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153203, 39.960725 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169758, 39.943322 ] } }, +{ "type": "Feature", "properties": { "location": "2982 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107183426448998, 39.980800647970099 ] } }, +{ "type": "Feature", "properties": { "location": "228 W TABOR RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127599080668602, 40.0336528066669 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "900 E ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112347983604806, 39.9995160672891 ] } }, +{ "type": "Feature", "properties": { "location": "617 S 57TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236918584374195, 39.951423607853997 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164672, 39.92242 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N CREIGHTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223368201152695, 39.981047964096497 ] } }, +{ "type": "Feature", "properties": { "location": "6000 OSAGE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243258299221495, 39.9548622529135 ] } }, +{ "type": "Feature", "properties": { "location": "900 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154827, 39.959643 ] } }, +{ "type": "Feature", "properties": { "location": "600 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118095923580299, 40.001848406580002 ] } }, +{ "type": "Feature", "properties": { "location": "422 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "7351 WOOLSTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159690135761295, 40.063895943927001 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225392, 40.027297 ] } }, +{ "type": "Feature", "properties": { "location": "100 GREEN LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226752, 40.027183 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141232, 39.965498 ] } }, +{ "type": "Feature", "properties": { "location": "900 BODINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14134, 39.96563 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143478, 40.034883 ] } }, +{ "type": "Feature", "properties": { "location": "1500 E HEWSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128043, 39.976663 ] } }, +{ "type": "Feature", "properties": { "location": "122 S 49TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219504870503499, 39.956598934042098 ] } }, +{ "type": "Feature", "properties": { "location": "5523 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232414175337894, 39.955379345034402 ] } }, +{ "type": "Feature", "properties": { "location": "100 W WISHART ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129904737926395, 39.998085572693299 ] } }, +{ "type": "Feature", "properties": { "location": "1300 COMLY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0832899674174, 40.035098598700102 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073523, 40.0437 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E FLETCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 39.973357 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143932, 39.9553 ] } }, +{ "type": "Feature", "properties": { "location": "600 E TIOGA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118095923580299, 40.001848406580002 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155697, 39.929308 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155735, 39.928912 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176223, 39.94168 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143092, 40.041327 ] } }, +{ "type": "Feature", "properties": { "location": "5200 HOWLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106571505795998, 40.031843073740298 ] } }, +{ "type": "Feature", "properties": { "location": "6800 REGENT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242527058609099, 39.924912580511098 ] } }, +{ "type": "Feature", "properties": { "location": "7900 FAYETTE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1659682721439, 40.072675056858003 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115432, 39.994785 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 52ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226949787890803, 39.950082769751901 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N HOWARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134208610121107, 39.9804626796316 ] } }, +{ "type": "Feature", "properties": { "location": "600 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154087, 39.940722 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 6TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15189, 39.944138 ] } }, +{ "type": "Feature", "properties": { "location": "1422 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169277, 39.930708 ] } }, +{ "type": "Feature", "properties": { "location": "1700 GEORGES LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229086796413796, 39.983370433434601 ] } }, +{ "type": "Feature", "properties": { "location": "1531 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "801 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160187255647998, 39.968033989591703 ] } }, +{ "type": "Feature", "properties": { "location": "5000 SANSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222405, 39.95739 ] } }, +{ "type": "Feature", "properties": { "location": "100 ALLEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13721, 39.966313 ] } }, +{ "type": "Feature", "properties": { "location": "3300 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111371859365207, 39.998630400763197 ] } }, +{ "type": "Feature", "properties": { "location": "330 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163868, 39.945793 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139378, 39.959055 ] } }, +{ "type": "Feature", "properties": { "location": "2400 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177772968472098, 39.965645049350996 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162068, 39.942795 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179042348628897, 39.931045850618801 ] } }, +{ "type": "Feature", "properties": { "location": "2000 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178957850700897, 39.9314059874349 ] } }, +{ "type": "Feature", "properties": { "location": "800 WOLF ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160554974993801, 39.920647889252699 ] } }, +{ "type": "Feature", "properties": { "location": "5500 SAYBROOK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220150501326799, 39.934764371430099 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090838, 40.006947 ] } }, +{ "type": "Feature", "properties": { "location": "1400 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134373, 39.971858 ] } }, +{ "type": "Feature", "properties": { "location": "3200 B ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125220377137197, 39.9988371840547 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195425, 39.950773 ] } }, +{ "type": "Feature", "properties": { "location": "3500 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19401, 39.95394 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191898, 39.953403 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196908, 39.951155 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134352, 39.972415 ] } }, +{ "type": "Feature", "properties": { "location": "1642 ASHURST RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2719244354751, 39.973329130278799 ] } }, +{ "type": "Feature", "properties": { "location": "400 MASTER ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142632, 39.972452 ] } }, +{ "type": "Feature", "properties": { "location": "228 W TABOR RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127599080668602, 40.0336528066669 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167867, 39.936973 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16792, 39.93669 ] } }, +{ "type": "Feature", "properties": { "location": "6300 ALGON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085743302797397, 40.043150411282497 ] } }, +{ "type": "Feature", "properties": { "location": "3286 WILLITS RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.013808465981199, 40.057009536019201 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RIDGE AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157898, 39.962342 ] } }, +{ "type": "Feature", "properties": { "location": "1755 OREGON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177446320517404, 39.917668482703199 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183419604886694, 39.974802665553199 ] } }, +{ "type": "Feature", "properties": { "location": "6600 KINDRED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071792035333502, 40.041073629134701 ] } }, +{ "type": "Feature", "properties": { "location": "2422 W ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170289044478395, 40.0038353303026 ] } }, +{ "type": "Feature", "properties": { "location": "35 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W LOUDON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14801, 40.02597 ] } }, +{ "type": "Feature", "properties": { "location": "5840 FILBERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237286384511606, 39.962366380513302 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1783073908679, 39.939007218860603 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 31ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188977, 39.965905 ] } }, +{ "type": "Feature", "properties": { "location": "100 WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138592, 39.966765 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176372, 39.923882 ] } }, +{ "type": "Feature", "properties": { "location": "100 KRAMS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227115676315805, 40.029488736130801 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155888, 39.925922 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151980759244196, 39.982571050684598 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 54TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229088313588306, 39.9729722077061 ] } }, +{ "type": "Feature", "properties": { "location": "500 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151292, 39.944318 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S MOLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171202680219693, 39.9302186466291 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157465, 39.918907 ] } }, +{ "type": "Feature", "properties": { "location": "2111 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177503, 39.945408 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.239800896050994, 39.947146866655203 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RIDGE AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164939287498299, 39.970599866247397 ] } }, +{ "type": "Feature", "properties": { "location": "800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160283787752306, 39.921892706210997 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19367, 39.958038 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090825, 40.007002 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W CLARKSON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13987, 40.03608 ] } }, +{ "type": "Feature", "properties": { "location": "3200 W YORK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1846600827744, 39.9931254551122 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149483, 40.005367 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166148, 39.923032 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166165, 39.923105 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166165, 39.923085 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137697, 39.96807 ] } }, +{ "type": "Feature", "properties": { "location": "600 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15653, 39.930183 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171688, 39.923302 ] } }, +{ "type": "Feature", "properties": { "location": "4600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211166128814298, 39.945192055643801 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1568, 39.92129 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E PACIFIC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.099957790810194, 39.999630990877499 ] } }, +{ "type": "Feature", "properties": { "location": "2020 S REDFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228431665606294, 39.932759208621199 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MONUMENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163027, 39.983002 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149668, 40.005258 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163612, 39.94526 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196862, 39.960793 ] } }, +{ "type": "Feature", "properties": { "location": "399 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.196903, 39.960373 ] } }, +{ "type": "Feature", "properties": { "location": "4000 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140605499025995, 40.013357651115598 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128253, 39.967168 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178473318287104, 39.922957168176403 ] } }, +{ "type": "Feature", "properties": { "location": "1700 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172994257574501, 39.935731232886901 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128152, 39.967232 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128285, 39.967102 ] } }, +{ "type": "Feature", "properties": { "location": "3200 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125991912432795, 39.998672429988602 ] } }, +{ "type": "Feature", "properties": { "location": "6300 HOMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176815512257505, 40.048350164571701 ] } }, +{ "type": "Feature", "properties": { "location": "800 W BUTLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141670286803404, 40.009643343842299 ] } }, +{ "type": "Feature", "properties": { "location": "250 S ITHAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234550841567895, 39.956278254460997 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 24TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17947, 39.952337 ] } }, +{ "type": "Feature", "properties": { "location": "300 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152788, 39.923378 ] } }, +{ "type": "Feature", "properties": { "location": "6100 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123734537075094, 40.043695749716903 ] } }, +{ "type": "Feature", "properties": { "location": "600 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152463, 39.943582 ] } }, +{ "type": "Feature", "properties": { "location": "3900 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200316548392394, 39.960534383626403 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156190010045904, 39.984621711000997 ] } }, +{ "type": "Feature", "properties": { "location": "3899 PULASKI AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157174311458206, 40.012988274978497 ] } }, +{ "type": "Feature", "properties": { "location": "2000 SANSOM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17371, 39.951115 ] } }, +{ "type": "Feature", "properties": { "location": "2100 DORRANCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177107, 39.925335 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 69TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243671112476804, 39.924599856092797 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157083, 39.928 ] } }, +{ "type": "Feature", "properties": { "location": "400 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155047, 39.922422 ] } }, +{ "type": "Feature", "properties": { "location": "300 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154472, 39.917207 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151242, 40.003023 ] } }, +{ "type": "Feature", "properties": { "location": "457 S 57TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236485240057505, 39.953514166039703 ] } }, +{ "type": "Feature", "properties": { "location": "400 S WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164757, 39.945057 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "445 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "200 DOCK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1449, 39.94683 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178812787625901, 39.944159983182303 ] } }, +{ "type": "Feature", "properties": { "location": "5700 HUNTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "3100 WEYMOUTH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117046422205306, 39.996149419942 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164822, 39.95066 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164617, 39.95071 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176243, 39.965865 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155895, 39.959845 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W CHAMPLOST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137485, 40.043718 ] } }, +{ "type": "Feature", "properties": { "location": "2300 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183989334270194, 39.932059867899603 ] } }, +{ "type": "Feature", "properties": { "location": "2300 FERNON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183989334270194, 39.932059867899603 ] } }, +{ "type": "Feature", "properties": { "location": "4563 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079211527489406, 40.005890612097403 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W SUSQUEHANNA AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178909780210205, 39.989216181620897 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175978, 39.94167 ] } }, +{ "type": "Feature", "properties": { "location": "1608 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169333, 39.943252 ] } }, +{ "type": "Feature", "properties": { "location": "1607 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169345, 39.943218 ] } }, +{ "type": "Feature", "properties": { "location": "1608 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16933, 39.943275 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150523, 39.982682 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150562, 39.98265 ] } }, +{ "type": "Feature", "properties": { "location": "600 W LYCOMING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137917115798203, 40.013767627018296 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126019950082295, 39.971989541103298 ] } }, +{ "type": "Feature", "properties": { "location": "7000 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.038679681346593, 40.026116459962097 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ARGYLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111819206454001, 39.998691024209499 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E ESTAUGH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.110352, 40.000093 ] } }, +{ "type": "Feature", "properties": { "location": "1604 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1723024964448, 39.930359563632798 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11724, 39.975992 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155028, 39.929243 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15577, 39.928942 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091032, 40.007112 ] } }, +{ "type": "Feature", "properties": { "location": "900 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160919825913894, 39.928689558008898 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 15TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162598, 39.964555 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15671, 39.937188 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17149, 39.919467 ] } }, +{ "type": "Feature", "properties": { "location": "7200 HAVERFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.260486634940406, 39.974671196886398 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177362, 39.934145 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226383, 40.02778 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17424, 39.93371 ] } }, +{ "type": "Feature", "properties": { "location": "4600 WHITAKER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115130741763295, 40.019023661097499 ] } }, +{ "type": "Feature", "properties": { "location": "7000 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.038679681346593, 40.026116459962097 ] } }, +{ "type": "Feature", "properties": { "location": "1916 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161878, 39.982707 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160863376627304, 39.9821762449087 ] } }, +{ "type": "Feature", "properties": { "location": "699 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159017, 39.965782 ] } }, +{ "type": "Feature", "properties": { "location": "200 E ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126353200371696, 40.001331879509799 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090528, 40.006333 ] } }, +{ "type": "Feature", "properties": { "location": "1342 ELLSWORTH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166258, 39.936692 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156403, 39.959742 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139308, 39.958998 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MOUNT VERNON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160913, 39.964135 ] } }, +{ "type": "Feature", "properties": { "location": "2516 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233186011450002, 39.919113482363798 ] } }, +{ "type": "Feature", "properties": { "location": "2252 SIMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065182808240195, 40.010386345887298 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15271, 40.008845 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226202, 40.027705 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186377, 39.941532 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22639, 40.027717 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086145, 40.01389 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142785, 39.961272 ] } }, +{ "type": "Feature", "properties": { "location": "164 ROXBOROUGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220152359328694, 40.025942895795701 ] } }, +{ "type": "Feature", "properties": { "location": "3952 HOWLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103703751231507, 40.007054597392496 ] } }, +{ "type": "Feature", "properties": { "location": "2119 FITZWATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178095, 39.943287 ] } }, +{ "type": "Feature", "properties": { "location": "2119 FITZWATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178033, 39.943135 ] } }, +{ "type": "Feature", "properties": { "location": "500 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151337, 39.9444 ] } }, +{ "type": "Feature", "properties": { "location": "180 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "4100 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214777, 40.025132 ] } }, +{ "type": "Feature", "properties": { "location": "600 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156237, 39.92518 ] } }, +{ "type": "Feature", "properties": { "location": "500 MANTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154162, 39.93314 ] } }, +{ "type": "Feature", "properties": { "location": "513 MANTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153232, 39.933048 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155358, 39.928705 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 32ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186974319715702, 39.981178396509598 ] } }, +{ "type": "Feature", "properties": { "location": "2700 W CUMBERLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176571691281893, 39.993619218162898 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175945, 39.941678 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1200 GREEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158982, 39.963108 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117255, 39.976053 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152652, 39.942357 ] } }, +{ "type": "Feature", "properties": { "location": "1900 PAGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165542254958893, 39.984786465992499 ] } }, +{ "type": "Feature", "properties": { "location": "6600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236328265977804, 39.924866610348701 ] } }, +{ "type": "Feature", "properties": { "location": "6700 YOCUM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238278047178198, 39.923771572903703 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GREEN LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175938, 39.965595 ] } }, +{ "type": "Feature", "properties": { "location": "5100 LENA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164215587395006, 40.031545474903901 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150055084119003, 39.921206374405699 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150055084119003, 39.921206374405699 ] } }, +{ "type": "Feature", "properties": { "location": "2155 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150055084119003, 39.921206374405699 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1568, 39.944668 ] } }, +{ "type": "Feature", "properties": { "location": "1924 S 4TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153077714508498, 39.924083966201401 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S GARNET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176759415972796, 39.9321925078847 ] } }, +{ "type": "Feature", "properties": { "location": "1600 FONTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1611, 39.984667 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160318, 39.942168 ] } }, +{ "type": "Feature", "properties": { "location": "324 S 24TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180132, 39.948207 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17733, 39.953698 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148461911030395, 39.918444330441197 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173338, 39.918412 ] } }, +{ "type": "Feature", "properties": { "location": "4230 GRISCOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091903611425096, 40.009621523468098 ] } }, +{ "type": "Feature", "properties": { "location": "1921 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213942, 40.023303 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0738, 40.04335 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160222, 39.95073 ] } }, +{ "type": "Feature", "properties": { "location": "800 W BUTLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141670286803404, 40.009643343842299 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12308, 39.973862 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073507, 40.043637 ] } }, +{ "type": "Feature", "properties": { "location": "2100 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17745, 39.94548 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162735, 39.948413 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171427, 39.939608 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159408, 39.976173 ] } }, +{ "type": "Feature", "properties": { "location": "369 AVON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.031218763396893, 40.115286437128702 ] } }, +{ "type": "Feature", "properties": { "location": "3136 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174980129551898, 40.003632761088703 ] } }, +{ "type": "Feature", "properties": { "location": "600 E ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118433893288696, 40.000305814905801 ] } }, +{ "type": "Feature", "properties": { "location": "2617 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.10575, 39.98391 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105462, 39.983522 ] } }, +{ "type": "Feature", "properties": { "location": "3100 GAUL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107477, 39.985845 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 16TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168635, 39.944352 ] } }, +{ "type": "Feature", "properties": { "location": "2838 W CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176340025879398, 40.0035320270309 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S ISEMINGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165493, 39.930448 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151232, 40.00308 ] } }, +{ "type": "Feature", "properties": { "location": "1608 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169333, 39.943157 ] } }, +{ "type": "Feature", "properties": { "location": "1608 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169367, 39.943287 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237293441597501, 39.916219986919103 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149558, 40.005295 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S COLORADO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173345696621595, 39.933007048200601 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123997, 40.023138 ] } }, +{ "type": "Feature", "properties": { "location": "5800 BINGHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100718274320698, 40.041296691824499 ] } }, +{ "type": "Feature", "properties": { "location": "200 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149982927148798, 39.927325384858001 ] } }, +{ "type": "Feature", "properties": { "location": "200 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149982927148798, 39.927325384858001 ] } }, +{ "type": "Feature", "properties": { "location": "4200 N MARSHALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137814967470305, 40.016203047787599 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DRURY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162938, 39.950477 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178462, 39.968353 ] } }, +{ "type": "Feature", "properties": { "location": "4901 N 20TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156599737261999, 40.029628530529997 ] } }, +{ "type": "Feature", "properties": { "location": "1719 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "800 N UBER ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168870127754005, 39.9695373923334 ] } }, +{ "type": "Feature", "properties": { "location": "1599 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132118, 39.975097 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ELLSWORTH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173387, 39.937582 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175212, 39.947267 ] } }, +{ "type": "Feature", "properties": { "location": "7600 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.061757, 40.055857 ] } }, +{ "type": "Feature", "properties": { "location": "700 E ALLEGHENY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117129520992904, 39.9969759614482 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.10626, 39.996255 ] } }, +{ "type": "Feature", "properties": { "location": "509 S 6TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152178, 39.942815 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 67TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240547482680995, 39.926814188452397 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150761423599505, 39.921304865152301 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187989848690293, 39.9588431484175 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168143, 39.94385 ] } }, +{ "type": "Feature", "properties": { "location": "4600 D ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116322, 40.020603 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205355, 39.948515 ] } }, +{ "type": "Feature", "properties": { "location": "6217 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231088, 39.92802 ] } }, +{ "type": "Feature", "properties": { "location": "2300 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17643, 39.969907 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "4153 TERRACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216747, 40.024955 ] } }, +{ "type": "Feature", "properties": { "location": "1315 S HOWARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146869863912002, 39.930783725540799 ] } }, +{ "type": "Feature", "properties": { "location": "700 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15805, 39.924128 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175945, 39.941688 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101827, 40.007928 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101765, 40.008043 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101773, 40.007923 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101763, 40.00797 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101832, 40.00796 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 35TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19244, 39.958612 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 33RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18914, 39.958247 ] } }, +{ "type": "Feature", "properties": { "location": "623 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153175, 39.942473 ] } }, +{ "type": "Feature", "properties": { "location": "1500 GREEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162865, 39.964025 ] } }, +{ "type": "Feature", "properties": { "location": "200 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961776704595, 40.0318986600317 ] } }, +{ "type": "Feature", "properties": { "location": "2700 N TAYLOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171621811166702, 39.996962426509697 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 57TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234499758225496, 39.963004847341701 ] } }, +{ "type": "Feature", "properties": { "location": "2300 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184071432821, 39.931688877464403 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182848487988693, 39.995189741029698 ] } }, +{ "type": "Feature", "properties": { "location": "4900 OAKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085335, 40.02245 ] } }, +{ "type": "Feature", "properties": { "location": "3830 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142821154925102, 40.010562233606002 ] } }, +{ "type": "Feature", "properties": { "location": "600 S PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15762, 39.942415 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129113, 39.972058 ] } }, +{ "type": "Feature", "properties": { "location": "1399 W ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15185, 40.001785 ] } }, +{ "type": "Feature", "properties": { "location": "1399 W ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151563, 40.001448 ] } }, +{ "type": "Feature", "properties": { "location": "329 W WELLENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130180988995207, 40.031163364334603 ] } }, +{ "type": "Feature", "properties": { "location": "329 W WELLENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130180988995207, 40.031163364334603 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101827, 40.007753 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176322, 39.965718 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176277, 39.965723 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176288, 39.965822 ] } }, +{ "type": "Feature", "properties": { "location": "6037 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228406593271302, 39.929744039244802 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156339860281406, 39.954506737577802 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WESTMORELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.11711, 39.998535 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137545, 39.96811 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N DELAWARE AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133733, 39.96527 ] } }, +{ "type": "Feature", "properties": { "location": "3300 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114935, 39.999385 ] } }, +{ "type": "Feature", "properties": { "location": "1050 FLANDERS RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.254884911202097, 39.977659822960703 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155675, 39.929218 ] } }, +{ "type": "Feature", "properties": { "location": "2700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177757003546901, 39.988462929561301 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117322, 39.975923 ] } }, +{ "type": "Feature", "properties": { "location": "1300 IRVING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163323, 39.947247 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157828, 39.924913 ] } }, +{ "type": "Feature", "properties": { "location": "6139 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244371245132299, 39.962408991001602 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225617, 39.972348 ] } }, +{ "type": "Feature", "properties": { "location": "212 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132693620312494, 39.967965677286699 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16811, 39.93963 ] } }, +{ "type": "Feature", "properties": { "location": "2400 MASTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175800553247498, 39.976671401527803 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155697, 39.959503 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16313, 39.937345 ] } }, +{ "type": "Feature", "properties": { "location": "2100 W OLNEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157078, 40.040713 ] } }, +{ "type": "Feature", "properties": { "location": "4101 STANWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.023697053127293, 40.042636700993498 ] } }, +{ "type": "Feature", "properties": { "location": "6100 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243061756618701, 39.962244220818 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156515, 39.95887 ] } }, +{ "type": "Feature", "properties": { "location": "4217 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20719, 39.956345 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 38TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197222, 39.962333 ] } }, +{ "type": "Feature", "properties": { "location": "425 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154748, 39.9296 ] } }, +{ "type": "Feature", "properties": { "location": "3900 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202005987957406, 39.972928587684798 ] } }, +{ "type": "Feature", "properties": { "location": "3900 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200316548392394, 39.960534383626403 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155245, 39.984472 ] } }, +{ "type": "Feature", "properties": { "location": "800 S ROSEWOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167095, 39.94051 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174, 39.966195 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "1 CHRISTIAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144162, 39.93506 ] } }, +{ "type": "Feature", "properties": { "location": "5201 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224622797817304, 39.963137224947602 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15488, 39.929542 ] } }, +{ "type": "Feature", "properties": { "location": "400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154193, 39.926157 ] } }, +{ "type": "Feature", "properties": { "location": "927 GRANITE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091344380469593, 40.031211659254197 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173985, 39.948625 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145633, 39.971452 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152743, 39.940413 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "800 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157393, 39.93647 ] } }, +{ "type": "Feature", "properties": { "location": "6600 PASCHALL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234700453031294, 39.923460791059 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 9TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153685, 39.958427 ] } }, +{ "type": "Feature", "properties": { "location": "2905 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166729841689403, 39.999445053924603 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "180 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "3200 W YORK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1846600827744, 39.9931254551122 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168328, 39.943658 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N 25TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173643810887597, 39.9903495876421 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N 25TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173643810887597, 39.9903495876421 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N 26TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175226661531795, 39.990555742031297 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N 25TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173643810887597, 39.9903495876421 ] } }, +{ "type": "Feature", "properties": { "location": "4600 REACH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111451091994894, 40.019117152603101 ] } }, +{ "type": "Feature", "properties": { "location": "2300 OREGON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186700579586102, 39.918828484146303 ] } }, +{ "type": "Feature", "properties": { "location": "3600 AMBER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.100133743846499, 39.997332524319397 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "200 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961776704595, 40.0318986600317 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124704836469206, 40.042769380143397 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MALTA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100441107837099, 40.043696438575203 ] } }, +{ "type": "Feature", "properties": { "location": "217 W LAVEER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124512083998198, 40.045678415904099 ] } }, +{ "type": "Feature", "properties": { "location": "209 W LAVEER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124512083998198, 40.045678415904099 ] } }, +{ "type": "Feature", "properties": { "location": "5636 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121351332347501, 40.035597186206303 ] } }, +{ "type": "Feature", "properties": { "location": "400 W CHEW AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128751429457594, 40.037802149668202 ] } }, +{ "type": "Feature", "properties": { "location": "400 W CHEW AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128751429457594, 40.037802149668202 ] } }, +{ "type": "Feature", "properties": { "location": "3127 CEDAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106742698484894, 39.987605588656599 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W BUTLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153112, 40.011217 ] } }, +{ "type": "Feature", "properties": { "location": "4141 CLARIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103671412504397, 40.010155809129202 ] } }, +{ "type": "Feature", "properties": { "location": "1800 HART LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121384549452202, 39.991788759189099 ] } }, +{ "type": "Feature", "properties": { "location": "1800 HART LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121384549452202, 39.991788759189099 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1453700881776, 39.9961626192054 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 51ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224646875742096, 39.951385665757599 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153335, 39.933912 ] } }, +{ "type": "Feature", "properties": { "location": "401 N GROSS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2463738286786, 39.969729182011299 ] } }, +{ "type": "Feature", "properties": { "location": "5300 W BERKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229907182962506, 39.986292871351502 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106013, 39.996332 ] } }, +{ "type": "Feature", "properties": { "location": "5000 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221656372519803, 39.945569823856502 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160412, 39.942087 ] } }, +{ "type": "Feature", "properties": { "location": "700 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15307, 39.94092 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09074, 40.007552 ] } }, +{ "type": "Feature", "properties": { "location": "3800 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199261097978706, 39.967249460370503 ] } }, +{ "type": "Feature", "properties": { "location": "3800 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199261097978706, 39.967249460370503 ] } }, +{ "type": "Feature", "properties": { "location": "5200 E TABOR RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.108731024203294, 40.0318608287836 ] } }, +{ "type": "Feature", "properties": { "location": "300 KAUFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149645, 39.937803 ] } }, +{ "type": "Feature", "properties": { "location": "4200 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208287, 39.954917 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221623809056894, 39.956159122193299 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173377187693603, 39.924751357821499 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151277, 40.003115 ] } }, +{ "type": "Feature", "properties": { "location": "4900 DISSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.039215, 40.022693 ] } }, +{ "type": "Feature", "properties": { "location": "4900 DISSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.039167, 40.02267 ] } }, +{ "type": "Feature", "properties": { "location": "4900 DISSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.03915, 40.022718 ] } }, +{ "type": "Feature", "properties": { "location": "4800 SANSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218452858667902, 39.956860448694798 ] } }, +{ "type": "Feature", "properties": { "location": "4300 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075715355306798, 39.9972515254955 ] } }, +{ "type": "Feature", "properties": { "location": "4300 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075715355306798, 39.9972515254955 ] } }, +{ "type": "Feature", "properties": { "location": "500 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "7200 HAVERFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.260486634940406, 39.974671196886398 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11466, 39.999335 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MOUNTAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161738, 39.928837 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232248012542499, 39.936745311179003 ] } }, +{ "type": "Feature", "properties": { "location": "4900 BALTIMORE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221940304807603, 39.948078183860098 ] } }, +{ "type": "Feature", "properties": { "location": "2900 JASPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118930950722699, 39.9916608213804 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178473318287104, 39.922957168176403 ] } }, +{ "type": "Feature", "properties": { "location": "6303 MERSHON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064430024362807, 40.031253197792402 ] } }, +{ "type": "Feature", "properties": { "location": "1345 WELLS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077170394985401, 40.043764521458897 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169269724172295, 39.928085368665201 ] } }, +{ "type": "Feature", "properties": { "location": "2700 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140691065757395, 39.992966457352601 ] } }, +{ "type": "Feature", "properties": { "location": "400 W CHELTEN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182625, 40.028058 ] } }, +{ "type": "Feature", "properties": { "location": "4426 VISTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.033736642470998, 40.034641173833897 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150112, 40.003755 ] } }, +{ "type": "Feature", "properties": { "location": "6600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236328265977804, 39.924866610348701 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "6000 WALKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.062509520398095, 40.021993976249803 ] } }, +{ "type": "Feature", "properties": { "location": "2052 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064925815801601, 40.015503392141497 ] } }, +{ "type": "Feature", "properties": { "location": "6300 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229337034842004, 39.924330545924001 ] } }, +{ "type": "Feature", "properties": { "location": "5436 MALCOLM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2297731851111, 39.944406311984601 ] } }, +{ "type": "Feature", "properties": { "location": "3400 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149603, 40.005208 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091565, 40.008685 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 52ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224381073645901, 39.962328257966597 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157142, 39.920133 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167202, 39.940568 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167107, 39.940465 ] } }, +{ "type": "Feature", "properties": { "location": "4700 RISING SUN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124428, 40.023073 ] } }, +{ "type": "Feature", "properties": { "location": "1500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171712, 39.923462 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161822, 39.983388 ] } }, +{ "type": "Feature", "properties": { "location": "1928 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161912, 39.983327 ] } }, +{ "type": "Feature", "properties": { "location": "200 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144755, 39.947087 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156305, 39.952985 ] } }, +{ "type": "Feature", "properties": { "location": "4000 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204841935555706, 39.948611855694899 ] } }, +{ "type": "Feature", "properties": { "location": "600 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156153336714894, 39.9284454627538 ] } }, +{ "type": "Feature", "properties": { "location": "312 BURNSIDE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214049194712203, 40.024916876614697 ] } }, +{ "type": "Feature", "properties": { "location": "805 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15717, 39.936538 ] } }, +{ "type": "Feature", "properties": { "location": "2200 BRIGHTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.059843758979397, 40.042016215950603 ] } }, +{ "type": "Feature", "properties": { "location": "300 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148128, 39.944412 ] } }, +{ "type": "Feature", "properties": { "location": "1626 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175331411253495, 39.919979615146097 ] } }, +{ "type": "Feature", "properties": { "location": "700 E ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1164025539248, 40.000051055523699 ] } }, +{ "type": "Feature", "properties": { "location": "3757 N 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140303330652998, 40.008662944211402 ] } }, +{ "type": "Feature", "properties": { "location": "700 W BUTLER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140456790540597, 40.009491413250203 ] } }, +{ "type": "Feature", "properties": { "location": "10052 JEANES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.032687538230405, 40.1078619940821 ] } }, +{ "type": "Feature", "properties": { "location": "4937 B ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.119718847768894, 40.024620784515299 ] } }, +{ "type": "Feature", "properties": { "location": "5200 UPLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218681305359297, 39.939292759285401 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154167, 40.003303 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152812, 39.936097 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133632934430906, 40.0392241019957 ] } }, +{ "type": "Feature", "properties": { "location": "6500 LINMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233346285123602, 39.9237874064058 ] } }, +{ "type": "Feature", "properties": { "location": "6412 CHELWYNDE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227404158794599, 39.920691487607897 ] } }, +{ "type": "Feature", "properties": { "location": "6734 GUYER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230382381546093, 39.917111764473503 ] } }, +{ "type": "Feature", "properties": { "location": "5500 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221483757451395, 39.935572419389999 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 56TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226258865879402, 39.9382660361685 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129008415784995, 39.997216563602699 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "281 S ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236582655652498, 39.956532687705803 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233186011450002, 39.919113482363798 ] } }, +{ "type": "Feature", "properties": { "location": "2600 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317923606129, 39.917938822517002 ] } }, +{ "type": "Feature", "properties": { "location": "6100 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153558, 39.928997 ] } }, +{ "type": "Feature", "properties": { "location": "6200 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227625596527005, 39.924901286655498 ] } }, +{ "type": "Feature", "properties": { "location": "135 N CROSKEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176878, 39.957073 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "100 W TIOGA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130198, 40.003407 ] } }, +{ "type": "Feature", "properties": { "location": "101 FERN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120887658402097, 40.042541723495297 ] } }, +{ "type": "Feature", "properties": { "location": "1000 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161648, 39.929637 ] } }, +{ "type": "Feature", "properties": { "location": "5825 COLGATE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102149468660002, 40.042712412029303 ] } }, +{ "type": "Feature", "properties": { "location": "1217 BYBERRY RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.005813145067805, 40.1157609787859 ] } }, +{ "type": "Feature", "properties": { "location": "1499 MCKINLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078232257056797, 40.036941819632702 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "500 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127862, 39.969843 ] } }, +{ "type": "Feature", "properties": { "location": "1422 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166982, 39.942697 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128212, 39.967305 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARVER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089493502317296, 40.033440277255202 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "1100 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088307602204097, 40.034684730937002 ] } }, +{ "type": "Feature", "properties": { "location": "5900 BELDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.084905771329602, 40.035050261132 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156932, 39.961025 ] } }, +{ "type": "Feature", "properties": { "location": "300 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153312, 39.92226 ] } }, +{ "type": "Feature", "properties": { "location": "2028 S BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184818249977297, 39.926952061005501 ] } }, +{ "type": "Feature", "properties": { "location": "1900 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179003870619894, 39.9204530129199 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177113, 39.927797 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159295, 39.949805 ] } }, +{ "type": "Feature", "properties": { "location": "6250 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246369066741195, 39.959538635384099 ] } }, +{ "type": "Feature", "properties": { "location": "5400 MALCOLM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2297731851111, 39.944406311984601 ] } }, +{ "type": "Feature", "properties": { "location": "5700 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236104819789105, 39.957095113855402 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069042, 40.046998 ] } }, +{ "type": "Feature", "properties": { "location": "1423 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076210565799897, 40.041907669535199 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WYLIE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166298, 39.969612 ] } }, +{ "type": "Feature", "properties": { "location": "6524 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157653587747404, 40.053744815770898 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17749, 39.942678 ] } }, +{ "type": "Feature", "properties": { "location": "1821 S 11TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163703, 39.92676 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1556, 39.9294 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "2032 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226073102746895, 39.934412452547697 ] } }, +{ "type": "Feature", "properties": { "location": "2032 S CECIL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226073102746895, 39.934412452547697 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "4507 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148406936545101, 40.022218898894899 ] } }, +{ "type": "Feature", "properties": { "location": "5628 HAZEL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2356442116875, 39.952591630431002 ] } }, +{ "type": "Feature", "properties": { "location": "2625 E ALBERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1170452644037, 39.978278481096901 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.239489521715697, 39.948666256992702 ] } }, +{ "type": "Feature", "properties": { "location": "645 S YEWDALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231504300663104, 39.9502701585333 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.242873, 39.961507 ] } }, +{ "type": "Feature", "properties": { "location": "5101 HAZEL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225712909647299, 39.951124241254298 ] } }, +{ "type": "Feature", "properties": { "location": "5800 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231318782024701, 39.937021854286101 ] } }, +{ "type": "Feature", "properties": { "location": "3100 AGATE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108267911109607, 39.988675081499103 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090961135573806, 40.007382074634499 ] } }, +{ "type": "Feature", "properties": { "location": "4042 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203369886887998, 39.955768652261703 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172235, 39.920837 ] } }, +{ "type": "Feature", "properties": { "location": "2127 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177947, 39.945472 ] } }, +{ "type": "Feature", "properties": { "location": "3400 MORAVIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192874519104805, 39.953419244294501 ] } }, +{ "type": "Feature", "properties": { "location": "100 W CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130516756687996, 39.994000916511503 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180864860096406, 39.942508322481601 ] } }, +{ "type": "Feature", "properties": { "location": "6600 W OXFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2535966555984, 39.977337445940897 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158085, 39.924963 ] } }, +{ "type": "Feature", "properties": { "location": "231 E CAMBRIA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127347433600903, 39.993597146568 ] } }, +{ "type": "Feature", "properties": { "location": "3967 ELSER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150972636356201, 40.014310407995403 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21239, 39.95177 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116988, 39.99858 ] } }, +{ "type": "Feature", "properties": { "location": "5040 UMBRIA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236013262333998, 40.035887286445302 ] } }, +{ "type": "Feature", "properties": { "location": "800 N BAMBREY ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178925347487706, 39.9709597367101 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 66TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.251979412694993, 39.974969803031698 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160123, 39.958008 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1604, 39.950997 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16055, 39.951322 ] } }, +{ "type": "Feature", "properties": { "location": "800 WYNNEWOOD RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.247095158621903, 39.976678510530299 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090961135573806, 40.007382074634499 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17519, 39.938793 ] } }, +{ "type": "Feature", "properties": { "location": "1200 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16173, 39.944162 ] } }, +{ "type": "Feature", "properties": { "location": "1205 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161758, 39.944213 ] } }, +{ "type": "Feature", "properties": { "location": "4800 DARRAH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.081007259398802, 40.017537669714102 ] } }, +{ "type": "Feature", "properties": { "location": "240 N SALFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239349251817799, 39.965726807581802 ] } }, +{ "type": "Feature", "properties": { "location": "2207 S 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161623092343902, 39.921848361835302 ] } }, +{ "type": "Feature", "properties": { "location": "2207 S 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161623092343902, 39.921848361835302 ] } }, +{ "type": "Feature", "properties": { "location": "700 MAYFAIR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107495914984, 40.0317633747323 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 25TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177931598840502, 39.970661349081801 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228068, 40.028285 ] } }, +{ "type": "Feature", "properties": { "location": "3800 MANOR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211714240680706, 40.0203982074582 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116985, 39.99848 ] } }, +{ "type": "Feature", "properties": { "location": "600 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152642, 39.943608 ] } }, +{ "type": "Feature", "properties": { "location": "600 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153042, 39.945113 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179548, 39.924295 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105832, 39.99658 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10587, 39.996477 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104488, 39.996518 ] } }, +{ "type": "Feature", "properties": { "location": "800 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160872, 39.918083 ] } }, +{ "type": "Feature", "properties": { "location": "2229 S DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1611554005421, 39.921367054069499 ] } }, +{ "type": "Feature", "properties": { "location": "3500 STOUTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.104852698238005, 39.9998344401371 ] } }, +{ "type": "Feature", "properties": { "location": "4000 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140605499025995, 40.013357651115598 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W CUMBERLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1603239385515, 39.991511035730298 ] } }, +{ "type": "Feature", "properties": { "location": "5500 YOCUM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221483757451395, 39.935572419389999 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192681306306994, 39.953661562909701 ] } }, +{ "type": "Feature", "properties": { "location": "1232 S 47TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211917075245196, 39.944229902314099 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182848487988693, 39.995189741029698 ] } }, +{ "type": "Feature", "properties": { "location": "300 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219956696157595, 40.029184889785903 ] } }, +{ "type": "Feature", "properties": { "location": "100 E INDIANA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129667604773601, 39.995429869391401 ] } }, +{ "type": "Feature", "properties": { "location": "1900 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175172, 39.93708 ] } }, +{ "type": "Feature", "properties": { "location": "100 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13501, 39.97725 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153308, 39.93401 ] } }, +{ "type": "Feature", "properties": { "location": "4900 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220570616697302, 39.953915505450603 ] } }, +{ "type": "Feature", "properties": { "location": "1399 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167345, 39.93034 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153243, 39.921768 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15864, 39.920708 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086252, 40.013748 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MONTEREY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169625, 39.9639 ] } }, +{ "type": "Feature", "properties": { "location": "1500 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162330121276298, 39.969907045523101 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162075442583699, 39.967345379466202 ] } }, +{ "type": "Feature", "properties": { "location": "5300 RIDGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209599458772004, 40.021207405903397 ] } }, +{ "type": "Feature", "properties": { "location": "800 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159623, 39.93056 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15463, 39.939407 ] } }, +{ "type": "Feature", "properties": { "location": "200 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224978854150393, 40.029976752046998 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16071, 39.95133 ] } }, +{ "type": "Feature", "properties": { "location": "500 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "2599 E CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105535085941995, 39.984868472266498 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159318, 39.931828 ] } }, +{ "type": "Feature", "properties": { "location": "500 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "4411 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219440990865294, 40.030254614758199 ] } }, +{ "type": "Feature", "properties": { "location": "101 W LEHIGH AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131168510724905, 39.9909262877255 ] } }, +{ "type": "Feature", "properties": { "location": "6002 BINGHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.097776051600903, 40.044112209618397 ] } }, +{ "type": "Feature", "properties": { "location": "4400 PECHIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218035823143296, 40.031154522330503 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225090148463295, 40.028901944853203 ] } }, +{ "type": "Feature", "properties": { "location": "5500 WESTMINSTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.230394456851698, 39.967614641455498 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225090148463295, 40.028901944853203 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160002, 39.92186 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225873, 40.029647 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225090148463295, 40.028901944853203 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245057755271105, 39.962495105725097 ] } }, +{ "type": "Feature", "properties": { "location": "204 SALAIGNAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206572816810606, 40.022170275830497 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "418 N 58TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235437804671193, 39.9680269729309 ] } }, +{ "type": "Feature", "properties": { "location": "420 N 58TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235437804671193, 39.9680269729309 ] } }, +{ "type": "Feature", "properties": { "location": "1 N RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227810083005593, 39.961165788692199 ] } }, +{ "type": "Feature", "properties": { "location": "1 N RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227810083005593, 39.961165788692199 ] } }, +{ "type": "Feature", "properties": { "location": "700 W DAUPHIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145466258059201, 39.986527818966302 ] } }, +{ "type": "Feature", "properties": { "location": "100 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133146196637398, 39.981666011408599 ] } }, +{ "type": "Feature", "properties": { "location": "100 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136508060246001, 39.968936809660299 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185737751476196, 39.941934123871498 ] } }, +{ "type": "Feature", "properties": { "location": "3300 F ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117011306597504, 39.998810500751901 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "199 W ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132306442274398, 40.002102485289903 ] } }, +{ "type": "Feature", "properties": { "location": "3300 POTTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.110218032110495, 39.998833109565197 ] } }, +{ "type": "Feature", "properties": { "location": "200 S PERTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154085, 39.946605 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W VENANGO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149839940054093, 40.007438349687 ] } }, +{ "type": "Feature", "properties": { "location": "3100 WEYMOUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117046422205306, 39.996149419942 ] } }, +{ "type": "Feature", "properties": { "location": "5100 VIOLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222389606258105, 39.980273704307002 ] } }, +{ "type": "Feature", "properties": { "location": "5100 VIOLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222389606258105, 39.980273704307002 ] } }, +{ "type": "Feature", "properties": { "location": "200 THOMAS PAINE PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145742, 39.94651 ] } }, +{ "type": "Feature", "properties": { "location": "100 N RUBY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227539843246106, 39.962720501877797 ] } }, +{ "type": "Feature", "properties": { "location": "1100 TREE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16629, 39.92222 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 58TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237992971455, 39.955794088066597 ] } }, +{ "type": "Feature", "properties": { "location": "3300 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114867, 39.999382 ] } }, +{ "type": "Feature", "properties": { "location": "4800 PINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218849813419695, 39.952619781620598 ] } }, +{ "type": "Feature", "properties": { "location": "300 HANSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219242697444699, 39.9532103028112 ] } }, +{ "type": "Feature", "properties": { "location": "718 S 52ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227299382185706, 39.948385584413998 ] } }, +{ "type": "Feature", "properties": { "location": "12 S DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243505303084504, 39.961905576043002 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245057755271105, 39.962495105725097 ] } }, +{ "type": "Feature", "properties": { "location": "5134 SPRUCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225015604926796, 39.954468422602098 ] } }, +{ "type": "Feature", "properties": { "location": "5134 SPRUCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225015604926796, 39.954468422602098 ] } }, +{ "type": "Feature", "properties": { "location": "6011 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241540167869601, 39.961263417181897 ] } }, +{ "type": "Feature", "properties": { "location": "3200 G ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115396282731197, 39.996998765729401 ] } }, +{ "type": "Feature", "properties": { "location": "800 E ATLANTIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114028365336196, 40.002030459345001 ] } }, +{ "type": "Feature", "properties": { "location": "4230 GRISCOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091903611425096, 40.009621523468098 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W VENANGO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149839940054093, 40.007438349687 ] } }, +{ "type": "Feature", "properties": { "location": "501 W LEHIGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140530947062402, 39.992131579254597 ] } }, +{ "type": "Feature", "properties": { "location": "2862 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147271415791295, 39.995400920532298 ] } }, +{ "type": "Feature", "properties": { "location": "2400 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173346281304902, 39.987530072987198 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S PATTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196892085886901, 39.934779294599998 ] } }, +{ "type": "Feature", "properties": { "location": "1600 KNORR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.070332858508294, 40.043100026231997 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132348, 40.028128 ] } }, +{ "type": "Feature", "properties": { "location": "1931 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173107, 39.951957 ] } }, +{ "type": "Feature", "properties": { "location": "1200 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167548, 39.91887 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153447, 39.92894 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "3301 A ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126842910810396, 40.0006281605122 ] } }, +{ "type": "Feature", "properties": { "location": "623 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191774818114197, 39.964938538267504 ] } }, +{ "type": "Feature", "properties": { "location": "14 S DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243505303084504, 39.961905576043002 ] } }, +{ "type": "Feature", "properties": { "location": "1500 UNRUH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.073441540409405, 40.0429490743374 ] } }, +{ "type": "Feature", "properties": { "location": "400 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "400 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 25TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177858, 39.971183 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152936829495303, 39.935681033067901 ] } }, +{ "type": "Feature", "properties": { "location": "3900 ELSER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150508358422499, 40.013410301434 ] } }, +{ "type": "Feature", "properties": { "location": "1627 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163754556967206, 39.970079056239499 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223922, 40.026977 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133623, 39.975137 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133645, 39.975118 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160099296902004, 39.983849577512302 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 35TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192532, 39.96014 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128373, 39.967177 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086247, 40.013815 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177162770801402, 39.947996066885501 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158301073789303, 39.946176107863501 ] } }, +{ "type": "Feature", "properties": { "location": "2110 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156675551221397, 39.922466295618399 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "812 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161095414317003, 39.918148430685697 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 31ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187093414677506, 39.961251450490998 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "3900 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200316548392394, 39.960534383626403 ] } }, +{ "type": "Feature", "properties": { "location": "3861 WYALUSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.200722, 39.972543 ] } }, +{ "type": "Feature", "properties": { "location": "800 SCHUYLKILL AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188697, 39.943258 ] } }, +{ "type": "Feature", "properties": { "location": "31 S 62ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.244951985189402, 39.9613079583374 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245057755271105, 39.962495105725097 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245057755271105, 39.962495105725097 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180613, 39.928307 ] } }, +{ "type": "Feature", "properties": { "location": "1501 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162163, 39.967193 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150503, 39.982625 ] } }, +{ "type": "Feature", "properties": { "location": "100 LEVERING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224582989786697, 40.026024913591598 ] } }, +{ "type": "Feature", "properties": { "location": "2952 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 64TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234601819483899, 39.927747876805803 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 55TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231498314023796, 39.957396494223403 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117173, 39.97616 ] } }, +{ "type": "Feature", "properties": { "location": "2932 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "2824 N BAILEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173993049904297, 39.998850896576698 ] } }, +{ "type": "Feature", "properties": { "location": "4130 N FRANKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139637885458896, 40.014808112682402 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "120 E TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127332181084299, 40.0029936969933 ] } }, +{ "type": "Feature", "properties": { "location": "614 E TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.118095923580299, 40.001848406580002 ] } }, +{ "type": "Feature", "properties": { "location": "3425 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125864698010005, 40.002036724401002 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROBBINS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.101861164367904, 40.051296699454802 ] } }, +{ "type": "Feature", "properties": { "location": "5817 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.237103979836107, 39.973054358555103 ] } }, +{ "type": "Feature", "properties": { "location": "3468 CRYSTAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118014427427099, 40.001045983065403 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E PASSYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155218958652696, 39.936651839390599 ] } }, +{ "type": "Feature", "properties": { "location": "800 E ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114813, 39.999805 ] } }, +{ "type": "Feature", "properties": { "location": "4101 N FAIRHILL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136672283044007, 40.014419746612703 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "618 E HILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118742367347906, 39.997937847488302 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163548, 39.935042 ] } }, +{ "type": "Feature", "properties": { "location": "5501 CHESTNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232145324628306, 39.959337449758003 ] } }, +{ "type": "Feature", "properties": { "location": "5800 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238114680867398, 39.960077448925503 ] } }, +{ "type": "Feature", "properties": { "location": "600 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.118433893288696, 40.000305814905801 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159133, 39.920538 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164187, 39.931157 ] } }, +{ "type": "Feature", "properties": { "location": "5114 CHANCELLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224213, 39.956188 ] } }, +{ "type": "Feature", "properties": { "location": "512 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155755, 39.921253 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157922, 39.960957 ] } }, +{ "type": "Feature", "properties": { "location": "7600 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.061883419415196, 40.055743174390699 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 51ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224646875742096, 39.951385665757599 ] } }, +{ "type": "Feature", "properties": { "location": "5101 HAZEL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225712909647299, 39.951124241254298 ] } }, +{ "type": "Feature", "properties": { "location": "4100 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193738, 40.008682 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "2516 TULIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122938074850296, 39.981489697589403 ] } }, +{ "type": "Feature", "properties": { "location": "300 W LOUDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130944584892504, 40.023416560196502 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N DELAWARE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132328, 39.965335 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130967, 39.973327 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171275, 39.939617 ] } }, +{ "type": "Feature", "properties": { "location": "4000 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140605499025995, 40.013357651115598 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S FELTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230552201313998, 39.9272865233917 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172772, 39.918372 ] } }, +{ "type": "Feature", "properties": { "location": "4716 LORING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.031314792646199, 40.031064879179198 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170535, 39.949525 ] } }, +{ "type": "Feature", "properties": { "location": "600 GREENWICH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155725, 39.929663 ] } }, +{ "type": "Feature", "properties": { "location": "913 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171287469321598, 39.939905402616397 ] } }, +{ "type": "Feature", "properties": { "location": "1199 S 21ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178570509369806, 39.937796353691901 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "5301 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227147609813898, 39.960276140384302 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143445, 40.034928 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138987682111505, 40.014720665919299 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177325, 39.934163 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199191493583697, 39.972971779482499 ] } }, +{ "type": "Feature", "properties": { "location": "3500 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125574961157895, 40.003393885617598 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171983, 39.9468 ] } }, +{ "type": "Feature", "properties": { "location": "500 OREGON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157097360423407, 39.914915449824697 ] } }, +{ "type": "Feature", "properties": { "location": "500 OREGON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157097360423407, 39.914915449824697 ] } }, +{ "type": "Feature", "properties": { "location": "500 OREGON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157097360423407, 39.914915449824697 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150761423599505, 39.921304865152301 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150761423599505, 39.921304865152301 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150761423599505, 39.921304865152301 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150761423599505, 39.921304865152301 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150761423599505, 39.921304865152301 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162457752653694, 39.949902437251701 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142821154925102, 40.010562233606002 ] } }, +{ "type": "Feature", "properties": { "location": "700 CATHARINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154675, 39.938982 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171055, 39.933377 ] } }, +{ "type": "Feature", "properties": { "location": "9102 DIPLOMAT PL", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.038966086015805, 40.078741158815397 ] } }, +{ "type": "Feature", "properties": { "location": "4000 CRESSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217418, 40.022705 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155598, 39.926085 ] } }, +{ "type": "Feature", "properties": { "location": "4200 STATION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219922, 40.023942 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134297, 39.972513 ] } }, +{ "type": "Feature", "properties": { "location": "4446 N COLORADO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153937220334996, 40.021787234766499 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156263, 39.960227 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151777, 39.92949 ] } }, +{ "type": "Feature", "properties": { "location": "757 N UBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169180031941906, 39.968113144226301 ] } }, +{ "type": "Feature", "properties": { "location": "759 N UBER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169180031941906, 39.968113144226301 ] } }, +{ "type": "Feature", "properties": { "location": "1501 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17275, 39.918393 ] } }, +{ "type": "Feature", "properties": { "location": "917 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168065, 39.939705 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157572, 39.923312 ] } }, +{ "type": "Feature", "properties": { "location": "235 N SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.249132547219006, 39.966953620790399 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151255, 39.940105 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157085627964193, 39.982457895696399 ] } }, +{ "type": "Feature", "properties": { "location": "4822 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133089686270694, 40.024648997932402 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 57TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227758617113096, 39.937201912382598 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158211866833994, 40.010971387071102 ] } }, +{ "type": "Feature", "properties": { "location": "9519 CLARK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.031438735000293, 40.083410052410798 ] } }, +{ "type": "Feature", "properties": { "location": "2808 S 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163733864223403, 39.9138306480843 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CREASE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131813, 39.968143 ] } }, +{ "type": "Feature", "properties": { "location": "2548 KIMBALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185496519750998, 39.941028206072602 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157678, 39.932125 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163893, 39.944748 ] } }, +{ "type": "Feature", "properties": { "location": "4200 LAWNSIDE RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.969417140032803, 40.082153065857902 ] } }, +{ "type": "Feature", "properties": { "location": "2317 S ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219044657366197, 39.931222943005203 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219044657366197, 39.931222943005203 ] } }, +{ "type": "Feature", "properties": { "location": "2012 ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111235, 39.994063 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BACH PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16612, 39.947413 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150188, 40.003683 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168476260702406, 39.926226548238603 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SMICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228377, 40.030325 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176422, 39.926443 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 30TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185045949345707, 39.975013534715302 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164107, 39.943127 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228177, 40.0283 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15444, 39.927062 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154382, 39.927045 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17532, 39.928912 ] } }, +{ "type": "Feature", "properties": { "location": "4400 LOCUST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210700658690101, 39.953947165268502 ] } }, +{ "type": "Feature", "properties": { "location": "800 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160814853595994, 39.919398727672302 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161928, 39.943843 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "2810 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126977588820495, 39.993104615507796 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159272163523397, 39.974541466084702 ] } }, +{ "type": "Feature", "properties": { "location": "200 N SIMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.249132547219006, 39.966953620790399 ] } }, +{ "type": "Feature", "properties": { "location": "2100 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174567, 39.952838 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144105, 39.955155 ] } }, +{ "type": "Feature", "properties": { "location": "200 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141303, 39.96967 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "180 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 43RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208843, 39.954682 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156422, 39.960373 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152427, 40.007367 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16086, 39.920982 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155922, 39.92132 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173272, 39.925788 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158543, 39.921243 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128432, 39.967117 ] } }, +{ "type": "Feature", "properties": { "location": "4565 N 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156346957061103, 40.023245894636801 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MONUMENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16309, 39.98298 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MONUMENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163203, 39.983008 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154922, 39.954427 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163236774265201, 39.984253901258199 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163023, 39.985413 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "601 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100624372943301, 40.040243907613302 ] } }, +{ "type": "Feature", "properties": { "location": "3200 ROSEHILL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124170913619295, 39.998699375862699 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128345, 39.967185 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W LOUDON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147668, 40.025623 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153105, 39.930827 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S AVONDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241367251961904, 39.929912890529103 ] } }, +{ "type": "Feature", "properties": { "location": "4700 SMICK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231043, 40.033048 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21404, 40.023267 ] } }, +{ "type": "Feature", "properties": { "location": "3420 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192312, 39.958668 ] } }, +{ "type": "Feature", "properties": { "location": "700 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153968, 39.947787 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22439, 40.02816 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "3849 WYALUSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.200513, 39.972593 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143393, 40.034937 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153203, 39.938197 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144045, 39.96975 ] } }, +{ "type": "Feature", "properties": { "location": "200 WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140982, 39.966408 ] } }, +{ "type": "Feature", "properties": { "location": "3300 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190055, 39.958382 ] } }, +{ "type": "Feature", "properties": { "location": "5324 MAGNOLIA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162820121404806, 40.0386202452205 ] } }, +{ "type": "Feature", "properties": { "location": "1500 WILLINGTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162282, 39.977728 ] } }, +{ "type": "Feature", "properties": { "location": "1500 WILLINGTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162285, 39.977688 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164132, 39.93222 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22808, 40.028287 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S FRAZIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226551927110094, 39.937004736058803 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SHARP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212570699364605, 40.0192285521534 ] } }, +{ "type": "Feature", "properties": { "location": "138 N DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242920393407701, 39.964625138066602 ] } }, +{ "type": "Feature", "properties": { "location": "6633 LEEDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.252923928820707, 39.9752150457075 ] } }, +{ "type": "Feature", "properties": { "location": "6610 LEEDS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.252923928820707, 39.9752150457075 ] } }, +{ "type": "Feature", "properties": { "location": "6621 LEEDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.252923928820707, 39.9752150457075 ] } }, +{ "type": "Feature", "properties": { "location": "4900 C ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117515313267305, 40.024446388981403 ] } }, +{ "type": "Feature", "properties": { "location": "3757 N 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140303330652998, 40.008662944211402 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 7TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153952, 39.941783 ] } }, +{ "type": "Feature", "properties": { "location": "700 N FRONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1384, 39.9623 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155938, 39.921327 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W PACIFIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15181, 40.00886 ] } }, +{ "type": "Feature", "properties": { "location": "399 N 59TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237265, 39.967653 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209533, 39.956508 ] } }, +{ "type": "Feature", "properties": { "location": "4300 TOWER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220017, 40.026377 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163707, 39.944798 ] } }, +{ "type": "Feature", "properties": { "location": "200 E WILLARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1264943359743, 39.9992864705073 ] } }, +{ "type": "Feature", "properties": { "location": "3469 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090603754431598, 39.982389619933898 ] } }, +{ "type": "Feature", "properties": { "location": "300 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219956696157595, 40.029184889785903 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101848, 40.007768 ] } }, +{ "type": "Feature", "properties": { "location": "7000 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.045613, 40.03423 ] } }, +{ "type": "Feature", "properties": { "location": "3966 N 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1396512492949, 40.011697459397503 ] } }, +{ "type": "Feature", "properties": { "location": "3822 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142821154925102, 40.010562233606002 ] } }, +{ "type": "Feature", "properties": { "location": "2699 WEBSTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187815105388296, 39.943190480855797 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228023, 40.028385 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228103, 40.028307 ] } }, +{ "type": "Feature", "properties": { "location": "2600 E CLEMENTINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.104172, 39.98336 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232248012542499, 39.936745311179003 ] } }, +{ "type": "Feature", "properties": { "location": "5618 HAZEL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2356442116875, 39.952591630431002 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161892, 39.946467 ] } }, +{ "type": "Feature", "properties": { "location": "514 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "514 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CREASE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132108, 39.96876 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091042, 40.00758 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163437273571901, 39.939270976189697 ] } }, +{ "type": "Feature", "properties": { "location": "5400 SUMMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228604154918202, 39.964383588047802 ] } }, +{ "type": "Feature", "properties": { "location": "5400 SUMMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228604154918202, 39.964383588047802 ] } }, +{ "type": "Feature", "properties": { "location": "1124 E PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15707, 39.935127 ] } }, +{ "type": "Feature", "properties": { "location": "1608 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169332, 39.94324 ] } }, +{ "type": "Feature", "properties": { "location": "3900 L ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10279, 40.007632 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "6139 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.244371245132299, 39.962408991001602 ] } }, +{ "type": "Feature", "properties": { "location": "4400 MITCHELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215066657491903, 40.030705583339 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151205, 40.003027 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191625, 39.957502 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KENILWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16302, 39.942162 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHELTEN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140532687412204, 40.050347983665802 ] } }, +{ "type": "Feature", "properties": { "location": "6233 MERSHON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065584229748794, 40.0300327527519 ] } }, +{ "type": "Feature", "properties": { "location": "5100 DARRAH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077995, 40.020763 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 39.972365 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150617, 39.923212 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128257, 39.967252 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172517218911807, 39.937970035699699 ] } }, +{ "type": "Feature", "properties": { "location": "2058 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179575601609997, 39.928597534262799 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160099296902004, 39.983849577512302 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N HOWARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122366259239996, 40.039351508605201 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156964291822504, 40.000874410992203 ] } }, +{ "type": "Feature", "properties": { "location": "5600 HADFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317950948228, 39.942357061142502 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086132, 40.014005 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160457, 39.95144 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162646862229295, 39.9721612594712 ] } }, +{ "type": "Feature", "properties": { "location": "3432 ORMES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123963183298102, 40.001817288000602 ] } }, +{ "type": "Feature", "properties": { "location": "3100 A ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127606301543295, 39.997040543093398 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156858, 39.928985 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163902, 39.919798 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N NEWKIRK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175516428937001, 40.005323661629902 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176340025879398, 40.0035320270309 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1700685563127, 40.002994439038702 ] } }, +{ "type": "Feature", "properties": { "location": "600 HOFFMAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156974931681304, 39.924777147009202 ] } }, +{ "type": "Feature", "properties": { "location": "2958 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101742, 40.009125 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101685, 40.008965 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101625, 40.008922 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141022, 39.963148 ] } }, +{ "type": "Feature", "properties": { "location": "5400 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228289371551696, 39.963591859350302 ] } }, +{ "type": "Feature", "properties": { "location": "400 MANTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15268, 39.932983 ] } }, +{ "type": "Feature", "properties": { "location": "7223 N 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147297133065294, 40.064615405298099 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168340278154304, 39.999657792467197 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N 19TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152055496738797, 40.043994651721903 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N 19TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152055496738797, 40.043994651721903 ] } }, +{ "type": "Feature", "properties": { "location": "6300 N OPAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151924526862999, 40.050973469742402 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SCHUBERT ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170098, 39.94865 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164318, 39.917267 ] } }, +{ "type": "Feature", "properties": { "location": "1819 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173817, 39.928282 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139602, 39.95683 ] } }, +{ "type": "Feature", "properties": { "location": "4520 HURLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117240584877194, 40.018226869085602 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1700 STOCK EXCHANGE PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17055, 39.951245 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SCHUBERT ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169713, 39.94812 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157947, 39.92497 ] } }, +{ "type": "Feature", "properties": { "location": "200 WIDENER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125320729671998, 40.041025810056901 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "1740 FOLSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "6200 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246262, 39.984615 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13433, 39.972323 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153673, 39.960087 ] } }, +{ "type": "Feature", "properties": { "location": "5900 SHISLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085549795949504, 40.035410044103898 ] } }, +{ "type": "Feature", "properties": { "location": "1331 S RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222829128404001, 39.940675664596696 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221245, 40.029788 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159618, 39.97491 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15542, 39.984478 ] } }, +{ "type": "Feature", "properties": { "location": "400 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154037, 39.92646 ] } }, +{ "type": "Feature", "properties": { "location": "3300 WIEHLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190591962068495, 40.010584196727898 ] } }, +{ "type": "Feature", "properties": { "location": "401 S 40TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16061, 39.959232 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W OLNEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152702, 40.039357 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174158, 39.952917 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104863, 39.996908 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104967, 39.99693 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 18TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170383, 39.951555 ] } }, +{ "type": "Feature", "properties": { "location": "1133 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166553843775802, 39.920139372981303 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S JESSUP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165887, 39.920103 ] } }, +{ "type": "Feature", "properties": { "location": "200 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133907, 39.970527 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 36TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194708, 39.953222 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223552, 40.028703 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215828, 40.02156 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215913, 40.021595 ] } }, +{ "type": "Feature", "properties": { "location": "700 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126353, 39.972747 ] } }, +{ "type": "Feature", "properties": { "location": "500 RANDOLPH CT", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15127, 39.94282 ] } }, +{ "type": "Feature", "properties": { "location": "600 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157579902741006, 39.921991130310303 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225568, 39.972372 ] } }, +{ "type": "Feature", "properties": { "location": "2400 MEREDITH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178388, 39.968428 ] } }, +{ "type": "Feature", "properties": { "location": "2900 MASCHER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132089567343101, 39.994901469808099 ] } }, +{ "type": "Feature", "properties": { "location": "100 E MENTOR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124038, 40.022388 ] } }, +{ "type": "Feature", "properties": { "location": "1907 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137327909677893, 39.979903856842803 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155667, 39.921335 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160918, 39.920895 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160865, 39.95892 ] } }, +{ "type": "Feature", "properties": { "location": "200 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126875005149302, 39.998231117318902 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S PAXON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220194116448795, 39.942521628760502 ] } }, +{ "type": "Feature", "properties": { "location": "2500 E CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106541219408996, 39.986010861634099 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 3RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147513, 39.941692 ] } }, +{ "type": "Feature", "properties": { "location": "200 WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161948, 39.956793 ] } }, +{ "type": "Feature", "properties": { "location": "1301 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165647, 39.935452 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170335932913702, 39.930733155947102 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171863, 39.939773 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172008, 39.939702 ] } }, +{ "type": "Feature", "properties": { "location": "220 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149590542866406, 39.947162834262002 ] } }, +{ "type": "Feature", "properties": { "location": "2622 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188020303558702, 39.937164090118301 ] } }, +{ "type": "Feature", "properties": { "location": "3803 BROWN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199365346846704, 39.967806398003397 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179702, 39.947777 ] } }, +{ "type": "Feature", "properties": { "location": "44 S 2ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144062, 39.949023 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.089643, 40.009665 ] } }, +{ "type": "Feature", "properties": { "location": "8505 GERMANTOWN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20652, 40.076102 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1387, 39.964457 ] } }, +{ "type": "Feature", "properties": { "location": "4950 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220573727962901, 39.956340012212699 ] } }, +{ "type": "Feature", "properties": { "location": "5000 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.222787312603998, 39.955443893626999 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086298, 40.013827 ] } }, +{ "type": "Feature", "properties": { "location": "600 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157772, 39.923658 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N SMEDLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152425627362305, 40.022741222733899 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173255, 39.94852 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 8TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154957, 39.944988 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RUAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08906, 40.010137 ] } }, +{ "type": "Feature", "properties": { "location": "4300 ROBBINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057135871924302, 40.024411899336997 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMITAGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229577037685203, 40.031861159768198 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153743, 39.95987 ] } }, +{ "type": "Feature", "properties": { "location": "2701 S CLEVELAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178484809706802, 39.917023393191897 ] } }, +{ "type": "Feature", "properties": { "location": "500 ASHDALE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132303, 40.027935 ] } }, +{ "type": "Feature", "properties": { "location": "4265 N BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131571695243096, 40.015402356025803 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172858, 39.963907 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARLBOROUGH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132487, 39.970998 ] } }, +{ "type": "Feature", "properties": { "location": "5606 MIRIAM RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088240141725905, 40.031107811559401 ] } }, +{ "type": "Feature", "properties": { "location": "2246 N WATTS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155234420272393, 39.9869737802711 ] } }, +{ "type": "Feature", "properties": { "location": "931 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159619137927507, 39.938276477637899 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17634, 39.923853 ] } }, +{ "type": "Feature", "properties": { "location": "5500 WISSAHICKON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182605918020997, 40.026462697690199 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148853, 39.935673 ] } }, +{ "type": "Feature", "properties": { "location": "999 S 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148863, 39.935848 ] } }, +{ "type": "Feature", "properties": { "location": "5300 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218930283757999, 39.9373820931892 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160958, 39.950188 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128118, 39.96723 ] } }, +{ "type": "Feature", "properties": { "location": "900 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15376, 39.959592 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15576, 39.959525 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227985, 40.028303 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OLD YORK RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146495, 40.027517 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W LOUDON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14755, 40.025368 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149482, 40.005317 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150473, 39.919393 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226347, 40.027738 ] } }, +{ "type": "Feature", "properties": { "location": "100 RECTOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220415, 40.025063 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 58TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230875847592301, 39.937717208518499 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220445, 40.02484 ] } }, +{ "type": "Feature", "properties": { "location": "700 SHIRLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16828, 39.968347 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163898, 39.919732 ] } }, +{ "type": "Feature", "properties": { "location": "2000 W OLNEY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155732, 40.0401 ] } }, +{ "type": "Feature", "properties": { "location": "5600 HAZEL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2356442116875, 39.952591630431002 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139595, 39.956898 ] } }, +{ "type": "Feature", "properties": { "location": "1701 GRIFFITH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.062415228109103, 40.062479181187399 ] } }, +{ "type": "Feature", "properties": { "location": "700 S MOLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168336417519598, 39.9427465383745 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160099296902004, 39.983849577512302 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151288, 39.984098 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204578, 39.956643 ] } }, +{ "type": "Feature", "properties": { "location": "400 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131673, 39.973302 ] } }, +{ "type": "Feature", "properties": { "location": "400 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131713, 39.973293 ] } }, +{ "type": "Feature", "properties": { "location": "200 CAMAC ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16155, 39.94834 ] } }, +{ "type": "Feature", "properties": { "location": "6206 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228080711070206, 39.925256005062799 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137427, 39.968487 ] } }, +{ "type": "Feature", "properties": { "location": "3100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.111733, 39.992365 ] } }, +{ "type": "Feature", "properties": { "location": "1500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171747, 39.923413 ] } }, +{ "type": "Feature", "properties": { "location": "4700 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216618, 39.954657 ] } }, +{ "type": "Feature", "properties": { "location": "4700 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216735, 39.954743 ] } }, +{ "type": "Feature", "properties": { "location": "4700 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216882, 39.954732 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227932, 40.028327 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180936958245198, 39.926869801373101 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159213, 39.92056 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171867, 39.946873 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16357, 39.946417 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163657, 39.946365 ] } }, +{ "type": "Feature", "properties": { "location": "718 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161982241659899, 39.967787347795799 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115478, 39.994805 ] } }, +{ "type": "Feature", "properties": { "location": "3817 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19786, 39.96002 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502, 39.945995 ] } }, +{ "type": "Feature", "properties": { "location": "3821 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19783, 39.960063 ] } }, +{ "type": "Feature", "properties": { "location": "399 LYCEUM AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219092, 40.030053 ] } }, +{ "type": "Feature", "properties": { "location": "100 RECTOR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220952, 40.024698 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174128, 39.924682 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197963, 39.960102 ] } }, +{ "type": "Feature", "properties": { "location": "400 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153012, 39.9247 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 25TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184523583821601, 39.942014625338203 ] } }, +{ "type": "Feature", "properties": { "location": "600 CALLOWHILL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150262, 39.958292 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1587, 39.920437 ] } }, +{ "type": "Feature", "properties": { "location": "1600 FOULKROD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.082535, 40.017895 ] } }, +{ "type": "Feature", "properties": { "location": "4700 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21718, 39.954747 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155298, 39.943058 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191955, 39.956822 ] } }, +{ "type": "Feature", "properties": { "location": "4347 PAUL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086681994491798, 40.011102601617203 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174345, 39.92627 ] } }, +{ "type": "Feature", "properties": { "location": "600 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156923, 39.92354 ] } }, +{ "type": "Feature", "properties": { "location": "700 APPLETREE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15224, 39.953528 ] } }, +{ "type": "Feature", "properties": { "location": "2400 TURNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175086922278695, 39.979942496742197 ] } }, +{ "type": "Feature", "properties": { "location": "412 S 26TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182723, 39.947433 ] } }, +{ "type": "Feature", "properties": { "location": "2846 S 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174669472030004, 39.915269494764502 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEARL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164033, 39.958638 ] } }, +{ "type": "Feature", "properties": { "location": "200 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144867, 39.953075 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154828047444397, 39.937433681212603 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180862254271503, 39.972224469599801 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228203, 40.028445 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151595, 39.925785 ] } }, +{ "type": "Feature", "properties": { "location": "175 W TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130861785274703, 40.003451254038502 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "4155 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140765951014103, 40.014950280360097 ] } }, +{ "type": "Feature", "properties": { "location": "900 W CAMBRIA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145812850669699, 39.995979733928003 ] } }, +{ "type": "Feature", "properties": { "location": "100 W GURNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130398981787096, 39.994548303735897 ] } }, +{ "type": "Feature", "properties": { "location": "119 W ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129887100976305, 40.001792336609199 ] } }, +{ "type": "Feature", "properties": { "location": "700 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115884688012599, 39.999523430550099 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1579, 39.944637 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157932, 39.944647 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171675013851498, 39.991828185229899 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182848487988693, 39.995189741029698 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171605, 39.923435 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163702, 39.946477 ] } }, +{ "type": "Feature", "properties": { "location": "600 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154832, 39.937373 ] } }, +{ "type": "Feature", "properties": { "location": "4101 BARNETT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.057499648830699, 40.026988037960699 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "1606 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168705, 39.945392 ] } }, +{ "type": "Feature", "properties": { "location": "545 N VOGDES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230858565233504, 39.968266172586297 ] } }, +{ "type": "Feature", "properties": { "location": "199 LAUREL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138905, 39.964993 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166013, 39.964388 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15865, 39.920662 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N 66TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.252725823948694, 39.9782145359015 ] } }, +{ "type": "Feature", "properties": { "location": "426 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121995, 39.997495 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "7111 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.037018236589901, 40.026974975720798 ] } }, +{ "type": "Feature", "properties": { "location": "2700 E SERGEANT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117778154384794, 39.9759587737571 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172517218911807, 39.937970035699699 ] } }, +{ "type": "Feature", "properties": { "location": "413 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "249 RAMSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222483181807306, 39.963613162037298 ] } }, +{ "type": "Feature", "properties": { "location": "449 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174985, 39.947147 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163498, 39.946447 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DRURY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162752, 39.950522 ] } }, +{ "type": "Feature", "properties": { "location": "200 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142638, 39.962283 ] } }, +{ "type": "Feature", "properties": { "location": "200 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142568, 39.962355 ] } }, +{ "type": "Feature", "properties": { "location": "4400 MAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22529, 40.02609 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168205, 39.939668 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153348, 39.934068 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "150 MAPLEWOOD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176648045433197, 40.032260518952498 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137462, 39.968173 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13752, 39.96814 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 21ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167804832111003, 39.986978556981398 ] } }, +{ "type": "Feature", "properties": { "location": "4000 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090823, 40.006972 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160215, 39.983405 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160165, 39.983488 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140983, 40.03932 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157335, 39.926543 ] } }, +{ "type": "Feature", "properties": { "location": "900 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155271349187302, 39.952888684061698 ] } }, +{ "type": "Feature", "properties": { "location": "4700 UMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231285834477106, 40.031725951555103 ] } }, +{ "type": "Feature", "properties": { "location": "2929 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184450692831007, 39.972662953187601 ] } }, +{ "type": "Feature", "properties": { "location": "6700 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238278047178198, 39.923771572903703 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225573, 40.027177 ] } }, +{ "type": "Feature", "properties": { "location": "3300 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0982, 39.985392 ] } }, +{ "type": "Feature", "properties": { "location": "4500 LUDLOW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213087, 39.957753 ] } }, +{ "type": "Feature", "properties": { "location": "218 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1264943359743, 39.9992864705073 ] } }, +{ "type": "Feature", "properties": { "location": "200 GATES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229673, 40.03281 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224435, 40.028135 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "169 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117048, 39.976065 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117147, 39.976075 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117077, 39.976025 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116935, 39.998628 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CHELTEN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149215438429394, 40.051449322379298 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 46TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222370287713204, 40.000768724818798 ] } }, +{ "type": "Feature", "properties": { "location": "49 HERMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178359990049003, 40.041762684466001 ] } }, +{ "type": "Feature", "properties": { "location": "100 W CAMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130516756687996, 39.994000916511503 ] } }, +{ "type": "Feature", "properties": { "location": "5100 HARLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225439196084395, 39.9749508517287 ] } }, +{ "type": "Feature", "properties": { "location": "34 N EDGEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241239615418706, 39.962827249863999 ] } }, +{ "type": "Feature", "properties": { "location": "5789 DUNLAP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237382404049896, 39.978604753829401 ] } }, +{ "type": "Feature", "properties": { "location": "2100 YELLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164080550158005, 40.0119608724074 ] } }, +{ "type": "Feature", "properties": { "location": "6700 UPLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239211978015305, 39.925165574309098 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S ALDER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163992, 39.921048 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163563, 39.946483 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159555, 39.97602 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156303, 39.960223 ] } }, +{ "type": "Feature", "properties": { "location": "800 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157033, 39.936372 ] } }, +{ "type": "Feature", "properties": { "location": "100 DUPONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227750074937902, 40.028285816233797 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175608, 39.940727 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150927, 40.004413 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S AVONDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241367251961904, 39.929912890529103 ] } }, +{ "type": "Feature", "properties": { "location": "30 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164298523013301, 40.030578741590404 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169525, 39.940477 ] } }, +{ "type": "Feature", "properties": { "location": "6411 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.051372223243206, 40.022536111336997 ] } }, +{ "type": "Feature", "properties": { "location": "4123 APPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21795, 40.023565 ] } }, +{ "type": "Feature", "properties": { "location": "4100 APPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217923, 40.023528 ] } }, +{ "type": "Feature", "properties": { "location": "4100 APPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217912, 40.023498 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157043, 39.920762 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157027, 39.920782 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 4TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14523, 39.95959 ] } }, +{ "type": "Feature", "properties": { "location": "1080 N DELAWARE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132728, 39.96571 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132583, 40.026433 ] } }, +{ "type": "Feature", "properties": { "location": "1100 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157015, 39.962997 ] } }, +{ "type": "Feature", "properties": { "location": "1128 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157057, 39.963027 ] } }, +{ "type": "Feature", "properties": { "location": "1128 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156680982945801, 39.962876164128403 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163167, 39.984923 ] } }, +{ "type": "Feature", "properties": { "location": "5100 SPRUCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225567, 39.954497 ] } }, +{ "type": "Feature", "properties": { "location": "824 S ALLISON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234910871865495, 39.9476695043262 ] } }, +{ "type": "Feature", "properties": { "location": "1799 TULIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130933, 39.97572 ] } }, +{ "type": "Feature", "properties": { "location": "2300 CEDAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125905, 39.977675 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142405, 39.970098 ] } }, +{ "type": "Feature", "properties": { "location": "1500 WILLINGTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162235, 39.977802 ] } }, +{ "type": "Feature", "properties": { "location": "800 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16066, 39.919467 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197363, 39.954373 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158142, 39.938545 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156276438939102, 39.961014828453202 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179249308647201, 39.9670232703834 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163733, 39.950082 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.069926599667994, 40.0466266245245 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 62ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227716645364794, 39.925860546484401 ] } }, +{ "type": "Feature", "properties": { "location": "1900 FERNON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177217330598296, 39.931183586902499 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143365, 40.034842 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177957, 39.940445 ] } }, +{ "type": "Feature", "properties": { "location": "100 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176578, 39.951013 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087422, 40.014428 ] } }, +{ "type": "Feature", "properties": { "location": "1400 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16893, 39.931807 ] } }, +{ "type": "Feature", "properties": { "location": "432 TOMLINSON RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.028647023305794, 40.115836389960798 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163607, 39.944988 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163565, 39.94507 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163698, 39.945042 ] } }, +{ "type": "Feature", "properties": { "location": "800 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15556, 39.943928 ] } }, +{ "type": "Feature", "properties": { "location": "813 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1600724520966, 39.9685878006674 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198457, 39.951183 ] } }, +{ "type": "Feature", "properties": { "location": "549 E HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169561900568794, 40.0454747901762 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143463, 40.034903 ] } }, +{ "type": "Feature", "properties": { "location": "2300 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184071432821, 39.931688877464403 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116965, 39.976225 ] } }, +{ "type": "Feature", "properties": { "location": "1813 S 19TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176917336998798, 39.928852042414398 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237293441597501, 39.916219986919103 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 66TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231115361025104, 39.920951834904102 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224655460147702, 39.925107035872202 ] } }, +{ "type": "Feature", "properties": { "location": "6101 W PASSYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212262871136502, 39.917628709148502 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104548, 39.99659 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10452, 39.996555 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104558, 39.996612 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16694, 39.965332 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.06993, 40.04676 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16211, 39.96714 ] } }, +{ "type": "Feature", "properties": { "location": "2900 AMBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116519663609395, 39.988774829276998 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168515, 39.951153 ] } }, +{ "type": "Feature", "properties": { "location": "4600 PINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214437, 39.952125 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146365, 39.971622 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1457, 39.971463 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145672, 39.97161 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155785, 39.959605 ] } }, +{ "type": "Feature", "properties": { "location": "2100 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181964940636007, 39.923404880830802 ] } }, +{ "type": "Feature", "properties": { "location": "145 LINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123184484618207, 40.041258973832797 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17053, 39.951733 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228037, 40.028248 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228352, 40.028592 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 41ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20567, 39.948222 ] } }, +{ "type": "Feature", "properties": { "location": "3865 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.09522, 40.00307 ] } }, +{ "type": "Feature", "properties": { "location": "300 MARTIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217610195181194, 40.029634906992797 ] } }, +{ "type": "Feature", "properties": { "location": "355 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221032342641394, 40.0328599036282 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171813, 39.952738 ] } }, +{ "type": "Feature", "properties": { "location": "6400 BELMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240861516627106, 39.929411730607399 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106055, 39.99633 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106045, 39.99633 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179214045664594, 39.942299776753799 ] } }, +{ "type": "Feature", "properties": { "location": "400 SIGEL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152903, 39.925162 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N GARNET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164238296690201, 39.989720800124999 ] } }, +{ "type": "Feature", "properties": { "location": "200 W ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133533775398604, 39.999094658116697 ] } }, +{ "type": "Feature", "properties": { "location": "5200 OLD YORK RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145531031169995, 40.032892477751801 ] } }, +{ "type": "Feature", "properties": { "location": "5100 OLD YORK RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145869571827504, 40.030746448133797 ] } }, +{ "type": "Feature", "properties": { "location": "1000 AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140993, 39.966757 ] } }, +{ "type": "Feature", "properties": { "location": "5900 WINDSOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232811858843803, 39.9359672527439 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162678, 39.94863 ] } }, +{ "type": "Feature", "properties": { "location": "5851 WALTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239994780185597, 39.951074446819199 ] } }, +{ "type": "Feature", "properties": { "location": "5100 GRISCOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080172, 40.021977 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "400 E MENTOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117137416837593, 40.021592070998203 ] } }, +{ "type": "Feature", "properties": { "location": "4600 N BINGHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116333, 40.020453 ] } }, +{ "type": "Feature", "properties": { "location": "4856 RORER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114553469862898, 40.022871308627899 ] } }, +{ "type": "Feature", "properties": { "location": "4941 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116665744294906, 40.024392716328002 ] } }, +{ "type": "Feature", "properties": { "location": "5200 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127713595637005, 40.030312754005699 ] } }, +{ "type": "Feature", "properties": { "location": "2600 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317923606129, 39.917938822517002 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141949626641093, 40.011973994609399 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N 19TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159765981156994, 40.007567946107301 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155748, 39.959287 ] } }, +{ "type": "Feature", "properties": { "location": "1200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158903, 39.963182 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173997, 39.924445 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090837, 40.007552 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156152, 39.961192 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 38TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198893465190807, 39.952428701836602 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14935, 39.93949 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149348, 39.939502 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226395, 40.027813 ] } }, +{ "type": "Feature", "properties": { "location": "1200 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159248, 39.958723 ] } }, +{ "type": "Feature", "properties": { "location": "7100 HAWTHORNE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.051510976313395, 40.038784812760099 ] } }, +{ "type": "Feature", "properties": { "location": "4856 RORER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114553469862898, 40.022871308627899 ] } }, +{ "type": "Feature", "properties": { "location": "199 GAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223823, 40.027052 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160357, 39.92038 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170868, 39.921928 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170913, 39.921987 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149628, 40.005188 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NEDRO AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14137, 40.042643 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "181 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "3027 JUDSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169040951889897, 40.001283557222301 ] } }, +{ "type": "Feature", "properties": { "location": "2200 WHARTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181453801466603, 39.935925697494703 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139543, 39.956858 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MONTROSE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160607, 39.938738 ] } }, +{ "type": "Feature", "properties": { "location": "3400 KIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125235800087196, 40.001956616055303 ] } }, +{ "type": "Feature", "properties": { "location": "199 W CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133945517062898, 39.9944466152483 ] } }, +{ "type": "Feature", "properties": { "location": "432 W ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137088929782394, 39.999560519025401 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RANDOLPH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152853, 39.936245 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149468, 39.933037 ] } }, +{ "type": "Feature", "properties": { "location": "600 E ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.118900149565803, 39.9972008050445 ] } }, +{ "type": "Feature", "properties": { "location": "600 E HILTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118742367347906, 39.997937847488302 ] } }, +{ "type": "Feature", "properties": { "location": "200 E CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127982921392999, 39.993679328318599 ] } }, +{ "type": "Feature", "properties": { "location": "3060 UNRUH AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057316090029204, 40.0339544927904 ] } }, +{ "type": "Feature", "properties": { "location": "2935 PASSMORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.061692015283597, 40.0319381317927 ] } }, +{ "type": "Feature", "properties": { "location": "247 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205522, 39.952755 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N STANLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182056385631498, 39.993556799437599 ] } }, +{ "type": "Feature", "properties": { "location": "500 SPRING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170787, 39.964867 ] } }, +{ "type": "Feature", "properties": { "location": "5400 THOMAS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230686975734997, 39.945825744648701 ] } }, +{ "type": "Feature", "properties": { "location": "7346 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241543650148898, 39.912637767486501 ] } }, +{ "type": "Feature", "properties": { "location": "7379 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2426244921093, 39.912540428672301 ] } }, +{ "type": "Feature", "properties": { "location": "7300 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241543650148898, 39.912637767486501 ] } }, +{ "type": "Feature", "properties": { "location": "112 DURFOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149776944048597, 39.918809227849799 ] } }, +{ "type": "Feature", "properties": { "location": "5100 MONTOUR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107589202036493, 40.029906289 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N RINGGOLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170472241550399, 39.999935180083497 ] } }, +{ "type": "Feature", "properties": { "location": "3102 N BAMBREY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171898750332005, 40.003226722512899 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "4850 E ROOSEVELT BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.095641596500201, 40.026619828528503 ] } }, +{ "type": "Feature", "properties": { "location": "2947 N RINGGOLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170472241550399, 39.999935180083497 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W BERKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160863376627304, 39.9821762449087 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134358, 39.972342 ] } }, +{ "type": "Feature", "properties": { "location": "1300 LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143663, 39.972297 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178013, 39.940423 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140930275007506, 40.011861859392901 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169269724172295, 39.928085368665201 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064010298178701, 40.014484142812499 ] } }, +{ "type": "Feature", "properties": { "location": "130 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173938611328893, 40.038159691523902 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175332, 39.943425 ] } }, +{ "type": "Feature", "properties": { "location": "44 W HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177732189789296, 40.037701511604503 ] } }, +{ "type": "Feature", "properties": { "location": "111 HERMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176729493822293, 40.043400397138797 ] } }, +{ "type": "Feature", "properties": { "location": "500 ARMSTRONG ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160472200296098, 40.036940733857897 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150939644683206, 39.978057818268702 ] } }, +{ "type": "Feature", "properties": { "location": "1599 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086313, 40.015215 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N FRANKLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148627, 39.971958 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150939644683206, 39.978057818268702 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160308932115996, 39.982879157617504 ] } }, +{ "type": "Feature", "properties": { "location": "5224 WESTMINSTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2262914120966, 39.968028045440199 ] } }, +{ "type": "Feature", "properties": { "location": "6400 LEBANON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.249260550799505, 39.978882325380702 ] } }, +{ "type": "Feature", "properties": { "location": "7300 THEODORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241543650148898, 39.912637767486501 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177390130092604, 39.930389493352799 ] } }, +{ "type": "Feature", "properties": { "location": "300 N ORIANNA ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145237, 39.95589 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167168, 39.96653 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162148, 39.964888 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228327, 40.028583 ] } }, +{ "type": "Feature", "properties": { "location": "300 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14871, 39.940638 ] } }, +{ "type": "Feature", "properties": { "location": "6000 PALMETTO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.098768422742907, 40.044657364331997 ] } }, +{ "type": "Feature", "properties": { "location": "9359 NEIL RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043093581883198, 40.085036880182798 ] } }, +{ "type": "Feature", "properties": { "location": "9349 NEIL RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043093581883198, 40.085036880182798 ] } }, +{ "type": "Feature", "properties": { "location": "9333 NEIL RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043093581883198, 40.085036880182798 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15365, 39.95975 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17537, 39.943532 ] } }, +{ "type": "Feature", "properties": { "location": "720 S 52ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227372798802094, 39.9480259881324 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "708 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151957, 39.940523 ] } }, +{ "type": "Feature", "properties": { "location": "6800 KINDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069441762082107, 40.043559026074902 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173283, 39.925633 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144955217431601, 40.0277240135878 ] } }, +{ "type": "Feature", "properties": { "location": "1500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17171, 39.923457 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135925, 39.973278 ] } }, +{ "type": "Feature", "properties": { "location": "800 LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145098, 39.965185 ] } }, +{ "type": "Feature", "properties": { "location": "615 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152906963776502, 39.943122692843701 ] } }, +{ "type": "Feature", "properties": { "location": "3813 WYALUSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199567, 39.972648 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1442, 39.969642 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16083, 39.95039 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128827, 39.969527 ] } }, +{ "type": "Feature", "properties": { "location": "4218 CHESTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208158, 39.948412 ] } }, +{ "type": "Feature", "properties": { "location": "4600 WHITAKER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115130741763295, 40.019023661097499 ] } }, +{ "type": "Feature", "properties": { "location": "900 ATWOOD RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.250572604527505, 39.976790646996498 ] } }, +{ "type": "Feature", "properties": { "location": "700 W BRISTOL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138788746912098, 40.017145083627 ] } }, +{ "type": "Feature", "properties": { "location": "5400 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1774310622027, 40.0267814265761 ] } }, +{ "type": "Feature", "properties": { "location": "900 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144452, 39.967737 ] } }, +{ "type": "Feature", "properties": { "location": "1500 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162330121276298, 39.969907045523101 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160777209453897, 39.921306984541701 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138987682111505, 40.014720665919299 ] } }, +{ "type": "Feature", "properties": { "location": "1411 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076210565799897, 40.041907669535199 ] } }, +{ "type": "Feature", "properties": { "location": "1444 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176917336998798, 39.928852042414398 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224438, 40.02669 ] } }, +{ "type": "Feature", "properties": { "location": "100 DUPONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227750074937902, 40.028285816233797 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22725, 40.028532 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137475, 39.968025 ] } }, +{ "type": "Feature", "properties": { "location": "2700 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.190221107585998, 39.932042003373397 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107642497030497, 39.996867406139998 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 41ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205565, 39.952108 ] } }, +{ "type": "Feature", "properties": { "location": "5700 HUNTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S ALDER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163123, 39.924863 ] } }, +{ "type": "Feature", "properties": { "location": "6250 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246369066741195, 39.959538635384099 ] } }, +{ "type": "Feature", "properties": { "location": "137 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N FRANKLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139637885458896, 40.014808112682402 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "100 W GURNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130398981787096, 39.994548303735897 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OAKLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086382, 40.021383 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N SMEDLEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152425627362305, 40.022741222733899 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 64TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232793876573197, 39.926199203883598 ] } }, +{ "type": "Feature", "properties": { "location": "4700 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217132, 39.954672 ] } }, +{ "type": "Feature", "properties": { "location": "200 S SYDENHAM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167517, 39.948905 ] } }, +{ "type": "Feature", "properties": { "location": "1941 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "700 ADAMS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.106671999753601, 40.032899597601499 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161043, 39.920887 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169288, 39.949372 ] } }, +{ "type": "Feature", "properties": { "location": "401 S 40TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "5256 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069283005599999, 40.015717422060597 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KENILWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.94222 ] } }, +{ "type": "Feature", "properties": { "location": "800 THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123427, 39.974395 ] } }, +{ "type": "Feature", "properties": { "location": "1019 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144433, 39.968675 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180946166820704, 39.968480251838898 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180946166820704, 39.968480251838898 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157073, 39.9613 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086267, 40.013822 ] } }, +{ "type": "Feature", "properties": { "location": "1003 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15861, 39.943815 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162438804761706, 39.982378840837796 ] } }, +{ "type": "Feature", "properties": { "location": "3500 RYAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041417, 40.037735 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156153, 39.959767 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180946166820704, 39.968480251838898 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149297, 40.007222 ] } }, +{ "type": "Feature", "properties": { "location": "1300 NECTARINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159068, 39.961487 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 47TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216073, 39.953423 ] } }, +{ "type": "Feature", "properties": { "location": "300 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202965, 39.960032 ] } }, +{ "type": "Feature", "properties": { "location": "300 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202907, 39.960038 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077698, 40.021925 ] } }, +{ "type": "Feature", "properties": { "location": "4600 GREENE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161528784808596, 40.024566044882199 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11573, 39.995062 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167113, 39.94051 ] } }, +{ "type": "Feature", "properties": { "location": "1084 N DELAWARE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132042749098105, 39.965683239297903 ] } }, +{ "type": "Feature", "properties": { "location": "5200 SAYBROOK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216127391859501, 39.937834875387097 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 7TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154042, 39.941673 ] } }, +{ "type": "Feature", "properties": { "location": "6400 GUYER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226431662385707, 39.919877649605098 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157822, 39.949287 ] } }, +{ "type": "Feature", "properties": { "location": "6400 GREENWAY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234554662594505, 39.9273736210938 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15582, 39.92128 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149432, 40.00523 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "241 E CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126957080132897, 39.9935438035373 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226485, 40.027845 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181295547482094, 39.925236708687997 ] } }, +{ "type": "Feature", "properties": { "location": "3500 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192988, 39.956853 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193062, 39.957157 ] } }, +{ "type": "Feature", "properties": { "location": "3700 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196107, 39.962967 ] } }, +{ "type": "Feature", "properties": { "location": "4200 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139923284371804, 40.016480225708101 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152458, 39.942412 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "306 QUINCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160435, 39.946013 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RUAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088985, 40.010172 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169803, 39.943343 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169812, 39.943368 ] } }, +{ "type": "Feature", "properties": { "location": "1622 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169864151447101, 39.943295280652698 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160397499370703, 39.969047872875997 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161195, 39.95072 ] } }, +{ "type": "Feature", "properties": { "location": "3100 POTTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114924971536098, 39.996205261446804 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153442, 39.929325 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15337, 39.929605 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174463, 39.952327 ] } }, +{ "type": "Feature", "properties": { "location": "100 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140705, 39.964127 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15194, 39.94156 ] } }, +{ "type": "Feature", "properties": { "location": "4800 LEIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0844, 40.019915 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073488, 40.043667 ] } }, +{ "type": "Feature", "properties": { "location": "4822 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133089686270694, 40.024648997932402 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 41ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205865, 39.951088 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155818, 39.959595 ] } }, +{ "type": "Feature", "properties": { "location": "2800 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1828, 39.970647 ] } }, +{ "type": "Feature", "properties": { "location": "2800 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18263, 39.970698 ] } }, +{ "type": "Feature", "properties": { "location": "2800 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182959668383006, 39.973116229474499 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168935143084298, 39.9729501968826 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141537, 40.039392 ] } }, +{ "type": "Feature", "properties": { "location": "3100 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.106409670195802, 39.985206735972199 ] } }, +{ "type": "Feature", "properties": { "location": "1803 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129425307660995, 39.976155466005501 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158138, 39.924993 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179037, 39.926788 ] } }, +{ "type": "Feature", "properties": { "location": "700 W SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141890842925804, 40.004463299879397 ] } }, +{ "type": "Feature", "properties": { "location": "800 E RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113580765080798, 40.000226613532298 ] } }, +{ "type": "Feature", "properties": { "location": "1000 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156122, 39.960253 ] } }, +{ "type": "Feature", "properties": { "location": "4133 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09081, 40.00693 ] } }, +{ "type": "Feature", "properties": { "location": "5900 LUDLOW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.239277255042595, 39.9609851847447 ] } }, +{ "type": "Feature", "properties": { "location": "3400 GOODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147345339801007, 40.0043628671609 ] } }, +{ "type": "Feature", "properties": { "location": "51 E COULTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169779097302097, 40.033949939361101 ] } }, +{ "type": "Feature", "properties": { "location": "1525 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "800 OREGON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161648, 39.915478 ] } }, +{ "type": "Feature", "properties": { "location": "6000 WAYNE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183643679675797, 40.034488599344897 ] } }, +{ "type": "Feature", "properties": { "location": "100 SALAIGNAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213629172673393, 40.019985148646299 ] } }, +{ "type": "Feature", "properties": { "location": "1500 PRATT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.081152, 40.024392 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.069926599667994, 40.0466266245245 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171892, 39.922 ] } }, +{ "type": "Feature", "properties": { "location": "100 VASSAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211335, 40.018607 ] } }, +{ "type": "Feature", "properties": { "location": "5539 BELMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226665671444493, 39.939662556292902 ] } }, +{ "type": "Feature", "properties": { "location": "619 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191745, 39.964655 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155448, 39.927103 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153477, 39.93369 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167947, 39.936608 ] } }, +{ "type": "Feature", "properties": { "location": "3401 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192887, 39.956753 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188602, 39.958873 ] } }, +{ "type": "Feature", "properties": { "location": "1500 UNRUH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.07343, 40.042907 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DRURY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162517, 39.950427 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15482, 39.929553 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137733, 39.96805 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137538, 39.968202 ] } }, +{ "type": "Feature", "properties": { "location": "1832 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177114381938907, 39.926585748356104 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SCHUBERT ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170035, 39.948635 ] } }, +{ "type": "Feature", "properties": { "location": "1008 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164023796188602, 39.921933943538399 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BUTTONWOOD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156257, 39.96077 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 48TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216729584375997, 39.966899482657297 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167408, 39.917763 ] } }, +{ "type": "Feature", "properties": { "location": "605A S 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1572, 39.942385 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157195, 39.942355 ] } }, +{ "type": "Feature", "properties": { "location": "500 E TABOR RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115919366404299, 40.0304736923242 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154347, 39.948925 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156377, 39.923813 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156393, 39.923467 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224238, 40.028287 ] } }, +{ "type": "Feature", "properties": { "location": "4200 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215428, 39.955718 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FARRAGUT TER", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214992, 39.947152 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16027, 39.962647 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168618, 39.933667 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WALLACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159248, 39.965008 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 18TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177572843717797, 39.9183368499829 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176805, 39.953853 ] } }, +{ "type": "Feature", "properties": { "location": "6600 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235898990721395, 39.9244707588648 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MONTROSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169687, 39.939953 ] } }, +{ "type": "Feature", "properties": { "location": "3146 EUCLID AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185358789884503, 39.984829959245999 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ARGYLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111819206454001, 39.998691024209499 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158178, 39.923382 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101812, 40.00799 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101793, 40.00809 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192283, 39.951373 ] } }, +{ "type": "Feature", "properties": { "location": "4600 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214150681328903, 39.955546089996098 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E ESTAUGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.110157224553305, 40.000007593915399 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E WILLARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.111533, 39.997422 ] } }, +{ "type": "Feature", "properties": { "location": "3600 EVELINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19395, 40.01 ] } }, +{ "type": "Feature", "properties": { "location": "1211 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13344, 39.969658 ] } }, +{ "type": "Feature", "properties": { "location": "200 E HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174246300807695, 40.040948821864497 ] } }, +{ "type": "Feature", "properties": { "location": "3300 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191066637057801, 39.952685580967596 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150238, 39.929382 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213008195965898, 40.021422669282302 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171669897472199, 39.938163345933901 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175972, 39.941708 ] } }, +{ "type": "Feature", "properties": { "location": "1100 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127908, 39.969802 ] } }, +{ "type": "Feature", "properties": { "location": "1305 S HOWARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146771912082997, 39.931213845621102 ] } }, +{ "type": "Feature", "properties": { "location": "2026 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226073102746895, 39.934412452547697 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S ROBINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223745990984398, 39.923609611751601 ] } }, +{ "type": "Feature", "properties": { "location": "2126 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170131538347604, 39.978563217687402 ] } }, +{ "type": "Feature", "properties": { "location": "700 W BUTLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140456790540597, 40.009491413250203 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N DARIEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141419388586598, 40.011928406579102 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105577402362201, 39.996600409282102 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168787931314597, 39.990055049283697 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168787931314597, 39.990055049283697 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168787931314597, 39.990055049283697 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N FRANKLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140955038634601, 40.0087380299735 ] } }, +{ "type": "Feature", "properties": { "location": "199 W CAMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133945517062898, 39.9944466152483 ] } }, +{ "type": "Feature", "properties": { "location": "2900 MASCHER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132089567343101, 39.994901469808099 ] } }, +{ "type": "Feature", "properties": { "location": "4102 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140270308877902, 40.014889376962302 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141259550059999, 40.010357869004103 ] } }, +{ "type": "Feature", "properties": { "location": "700 W BUTLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140456790540597, 40.009491413250203 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192462, 39.956937 ] } }, +{ "type": "Feature", "properties": { "location": "6100 NEWTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105021827305407, 40.049562365138698 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133605, 39.9752 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14556, 39.97157 ] } }, +{ "type": "Feature", "properties": { "location": "5300 HEDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.074747708484196, 40.022134073615099 ] } }, +{ "type": "Feature", "properties": { "location": "5329 LESHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075091797978899, 40.0224853771699 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169241674548203, 39.971564729700297 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169241674548203, 39.971564729700297 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162915621781593, 39.9709178350722 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181818931196304, 39.974531177141301 ] } }, +{ "type": "Feature", "properties": { "location": "2300 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183989334270194, 39.932059867899603 ] } }, +{ "type": "Feature", "properties": { "location": "2700 E SERGEANT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117778154384794, 39.9759587737571 ] } }, +{ "type": "Feature", "properties": { "location": "651 SEARS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155342104190595, 39.932107990960297 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156013, 39.95444 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "2300 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183989334270194, 39.932059867899603 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1607147061424, 39.973624990325398 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1607147061424, 39.973624990325398 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164330246081505, 39.981092571123398 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163776394848597, 39.981784939543701 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N 3RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126244193166599, 40.042464853983702 ] } }, +{ "type": "Feature", "properties": { "location": "6100 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123734537075094, 40.043695749716903 ] } }, +{ "type": "Feature", "properties": { "location": "100 WIDENER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121441781882893, 40.040545052844003 ] } }, +{ "type": "Feature", "properties": { "location": "1399 W TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150765, 40.005965 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174937, 39.953218 ] } }, +{ "type": "Feature", "properties": { "location": "3100 ALMOND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.103887, 39.985547 ] } }, +{ "type": "Feature", "properties": { "location": "400 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143342762125599, 39.969984217662599 ] } }, +{ "type": "Feature", "properties": { "location": "200 N CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161033, 39.95688 ] } }, +{ "type": "Feature", "properties": { "location": "3100 W ARIZONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183663631036893, 39.992603701799901 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224412, 40.028128 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114608, 39.999295 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139262, 39.959018 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12675, 39.967882 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137535, 39.968148 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137565, 39.968153 ] } }, +{ "type": "Feature", "properties": { "location": "4923 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116665744294906, 40.024392716328002 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17332, 39.925745 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N OPAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164687016916602, 39.989778875534398 ] } }, +{ "type": "Feature", "properties": { "location": "1627 NORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164733381322307, 39.966268555512499 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170335932913702, 39.930733155947102 ] } }, +{ "type": "Feature", "properties": { "location": "1702 S AVONDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241367251961904, 39.929912890529103 ] } }, +{ "type": "Feature", "properties": { "location": "35 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153945060507994, 39.982820771933397 ] } }, +{ "type": "Feature", "properties": { "location": "1153 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158755, 39.934845 ] } }, +{ "type": "Feature", "properties": { "location": "4000 CLARIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103990037983806, 40.008625827814598 ] } }, +{ "type": "Feature", "properties": { "location": "1122 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157037, 39.935073 ] } }, +{ "type": "Feature", "properties": { "location": "900 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163892, 39.918517 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201843, 39.954735 ] } }, +{ "type": "Feature", "properties": { "location": "214 E HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174246300807695, 40.040948821864497 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "6800 VANDIKE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043042, 40.025293 ] } }, +{ "type": "Feature", "properties": { "location": "600 E PASSYUNK AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15064, 39.94114 ] } }, +{ "type": "Feature", "properties": { "location": "900 S YEWDALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230563383396003, 39.945322639923198 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 41ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205878, 39.950962 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188315, 39.96248 ] } }, +{ "type": "Feature", "properties": { "location": "5700 WINDSOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229939961484007, 39.937980140993801 ] } }, +{ "type": "Feature", "properties": { "location": "5131 ASPEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222645109016398, 39.964602179194301 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171295, 39.940153 ] } }, +{ "type": "Feature", "properties": { "location": "2400 W ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169421185236303, 40.003722144331697 ] } }, +{ "type": "Feature", "properties": { "location": "5700 COMMERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235704852738706, 39.9619734671342 ] } }, +{ "type": "Feature", "properties": { "location": "1222 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164225, 39.935798 ] } }, +{ "type": "Feature", "properties": { "location": "1300 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078220703432194, 40.0430232889412 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171245448620297, 39.966784715197598 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212405, 40.021587 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BLAVIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147905270664893, 40.020850678749703 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159233, 39.920545 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226688907892395, 39.977331806754997 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S CECIL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226073102746895, 39.934412452547697 ] } }, +{ "type": "Feature", "properties": { "location": "3019 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185893122079094, 39.974878321914801 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156155, 39.959783 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163548, 39.934848 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 36TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195345, 39.951018 ] } }, +{ "type": "Feature", "properties": { "location": "200 QUARRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144697, 39.953512 ] } }, +{ "type": "Feature", "properties": { "location": "1299 W CLEARFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150947, 39.999743 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168872, 39.966122 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105383, 39.996722 ] } }, +{ "type": "Feature", "properties": { "location": "5600 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225924335116204, 39.9375786533287 ] } }, +{ "type": "Feature", "properties": { "location": "6400 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233515, 39.926568 ] } }, +{ "type": "Feature", "properties": { "location": "3300 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111371859365207, 39.998630400763197 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 29TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183702050635304, 39.973542504934699 ] } }, +{ "type": "Feature", "properties": { "location": "1000 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161635, 39.92959 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S AVONDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241367251961904, 39.929912890529103 ] } }, +{ "type": "Feature", "properties": { "location": "799 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181317, 39.970138 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163236774265201, 39.984253901258199 ] } }, +{ "type": "Feature", "properties": { "location": "4400 PECHIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218035823143296, 40.031154522330503 ] } }, +{ "type": "Feature", "properties": { "location": "3800 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1977, 39.96075 ] } }, +{ "type": "Feature", "properties": { "location": "1300 LOCUST ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162872277543499, 39.947999965756402 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158062677739096, 39.993156686597501 ] } }, +{ "type": "Feature", "properties": { "location": "3422 GOODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147345339801007, 40.0043628671609 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11658, 39.976322 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10561, 39.996607 ] } }, +{ "type": "Feature", "properties": { "location": "3100 WEYMOUTH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117046422205306, 39.996149419942 ] } }, +{ "type": "Feature", "properties": { "location": "300 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222436389011804, 40.032189448434401 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123058, 39.973748 ] } }, +{ "type": "Feature", "properties": { "location": "2200 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122975, 39.973772 ] } }, +{ "type": "Feature", "properties": { "location": "100 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128417422767001, 39.997894559251897 ] } }, +{ "type": "Feature", "properties": { "location": "4000 COTTMAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.040377, 40.036312 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156392, 39.959903 ] } }, +{ "type": "Feature", "properties": { "location": "12 S 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160069842731602, 39.951047791305001 ] } }, +{ "type": "Feature", "properties": { "location": "2700 S CLEVELAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178484809706802, 39.917023393191897 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159437, 39.942047 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170942073631593, 39.9999976042687 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169597, 39.928232 ] } }, +{ "type": "Feature", "properties": { "location": "400 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152737, 39.92338 ] } }, +{ "type": "Feature", "properties": { "location": "300 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152525, 39.92342 ] } }, +{ "type": "Feature", "properties": { "location": "1803 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129425307660995, 39.976155466005501 ] } }, +{ "type": "Feature", "properties": { "location": "600 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15714, 39.927755 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158088, 39.95854 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114607, 39.999355 ] } }, +{ "type": "Feature", "properties": { "location": "229 N 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177563, 39.950128 ] } }, +{ "type": "Feature", "properties": { "location": "1500 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168328, 39.947607 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 59TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240195346637705, 39.954989774344497 ] } }, +{ "type": "Feature", "properties": { "location": "700 MOLLBORE TE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161632, 39.914697 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155472, 39.984513 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 63RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245950476016304, 39.966558836137303 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155858765551002, 39.962937771558998 ] } }, +{ "type": "Feature", "properties": { "location": "500 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144872, 39.971518 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224202, 40.028325 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 52ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22655, 39.952603 ] } }, +{ "type": "Feature", "properties": { "location": "5640 HAZEL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2356442116875, 39.952591630431002 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164542, 39.91711 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164672, 39.917275 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16424, 39.91726 ] } }, +{ "type": "Feature", "properties": { "location": "300 QUINCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160387, 39.945448 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163872, 39.944913 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163985, 39.945055 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163832, 39.94567 ] } }, +{ "type": "Feature", "properties": { "location": "1246 E BERKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128455, 39.976535 ] } }, +{ "type": "Feature", "properties": { "location": "1399 W ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151957, 40.004718 ] } }, +{ "type": "Feature", "properties": { "location": "4503 N 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156346957061103, 40.023245894636801 ] } }, +{ "type": "Feature", "properties": { "location": "400 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144648, 39.96275 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157882, 39.957753 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158586236202098, 39.9384364580173 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15827, 39.93837 ] } }, +{ "type": "Feature", "properties": { "location": "6622 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.046145313119297, 40.022256661328797 ] } }, +{ "type": "Feature", "properties": { "location": "6200 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149786129488604, 40.049179571233999 ] } }, +{ "type": "Feature", "properties": { "location": "4411 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219440990865294, 40.030254614758199 ] } }, +{ "type": "Feature", "properties": { "location": "5200 DARRAH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.076605, 40.02212 ] } }, +{ "type": "Feature", "properties": { "location": "314 N 9TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153739041251598, 39.9578145194535 ] } }, +{ "type": "Feature", "properties": { "location": "4100 MAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219578, 40.023163 ] } }, +{ "type": "Feature", "properties": { "location": "100 RECTOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220487, 40.0251 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170353, 39.92695 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 66TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.252725823948694, 39.9782145359015 ] } }, +{ "type": "Feature", "properties": { "location": "933 S PAXON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2228783396491, 39.944727299897899 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17637, 39.965747 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176315, 39.96599 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167235, 39.926577 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137673, 39.968225 ] } }, +{ "type": "Feature", "properties": { "location": "5300 ARCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226839811781304, 39.961853650488997 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162438804761706, 39.982378840837796 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171882, 39.92208 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157867, 39.961162 ] } }, +{ "type": "Feature", "properties": { "location": "1499 W BUTLER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151792, 40.011072 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175375, 39.921283 ] } }, +{ "type": "Feature", "properties": { "location": "2343 S 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179994134122296, 39.922092615848101 ] } }, +{ "type": "Feature", "properties": { "location": "1218 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162442, 39.943795 ] } }, +{ "type": "Feature", "properties": { "location": "1900 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175857, 39.939457 ] } }, +{ "type": "Feature", "properties": { "location": "5200 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070571837352503, 40.015432619831302 ] } }, +{ "type": "Feature", "properties": { "location": "2134 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064010298178701, 40.014484142812499 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176872, 39.929078 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169849341646994, 39.970221850758499 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169849341646994, 39.970221850758499 ] } }, +{ "type": "Feature", "properties": { "location": "6500 SAYBROOK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234514023108801, 39.924764151939499 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 9TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153926791081005, 39.957323015741402 ] } }, +{ "type": "Feature", "properties": { "location": "48 E CLAPIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162253309380702, 40.029950776527997 ] } }, +{ "type": "Feature", "properties": { "location": "5500 MATTHEWS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158928290325406, 40.048120490842201 ] } }, +{ "type": "Feature", "properties": { "location": "35 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "4300 TOWER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220037, 40.026347 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159335, 39.923842 ] } }, +{ "type": "Feature", "properties": { "location": "5527 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232414175337894, 39.955379345034402 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S CAMAC ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167402, 39.920242 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155102, 39.929215 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154396502410904, 39.929091754379897 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1550454276165, 39.929768979897901 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156873, 39.928022 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156883, 39.928077 ] } }, +{ "type": "Feature", "properties": { "location": "5421 MULBERRY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070804757076502, 40.021720881286903 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235120007146406, 39.971185535528598 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235120007146406, 39.971185535528598 ] } }, +{ "type": "Feature", "properties": { "location": "4800 WALTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2211, 39.949007 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164810817529002, 39.984463434853303 ] } }, +{ "type": "Feature", "properties": { "location": "400 N SICKELS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229061485178093, 39.967199097776003 ] } }, +{ "type": "Feature", "properties": { "location": "400 N SICKELS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229061485178093, 39.967199097776003 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20451, 39.956747 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153461910362296, 39.931041315175399 ] } }, +{ "type": "Feature", "properties": { "location": "6400 GREENWAY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234554662594505, 39.9273736210938 ] } }, +{ "type": "Feature", "properties": { "location": "5300 HADFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227993214652301, 39.945027257083296 ] } }, +{ "type": "Feature", "properties": { "location": "5300 HADFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227993214652301, 39.945027257083296 ] } }, +{ "type": "Feature", "properties": { "location": "2634 SYLMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234865020780106, 39.915772550529503 ] } }, +{ "type": "Feature", "properties": { "location": "2636 SYLMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234865020780106, 39.915772550529503 ] } }, +{ "type": "Feature", "properties": { "location": "6800 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240057705149397, 39.9235055284556 ] } }, +{ "type": "Feature", "properties": { "location": "5900 WINDSOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232811858843803, 39.9359672527439 ] } }, +{ "type": "Feature", "properties": { "location": "5500 BROOMALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232136986038796, 39.944274552826499 ] } }, +{ "type": "Feature", "properties": { "location": "5600 WHITBY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232697482189593, 39.943110610870399 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "7300 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241543650148898, 39.912637767486501 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090852, 40.007575 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151395, 40.002915 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.08973, 40.009495 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224383, 40.026685 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224337, 40.026655 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176213, 39.965682 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173778051459394, 39.928445129710298 ] } }, +{ "type": "Feature", "properties": { "location": "3700 E CROWN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.987776594365798, 40.067800221311202 ] } }, +{ "type": "Feature", "properties": { "location": "3600 MORRELL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -74.987938905331902, 40.069641310085203 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0738, 40.043342 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W SCHOOL HOUSE LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181765, 40.025653 ] } }, +{ "type": "Feature", "properties": { "location": "127 HANSBERRY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169101858445401, 40.029163278244098 ] } }, +{ "type": "Feature", "properties": { "location": "2601 S DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162254877592403, 39.916298337428699 ] } }, +{ "type": "Feature", "properties": { "location": "4500 MITCHELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217846195282306, 40.033287356232201 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FARRAGUT TER", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21418, 39.947178 ] } }, +{ "type": "Feature", "properties": { "location": "219 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224978854150393, 40.029976752046998 ] } }, +{ "type": "Feature", "properties": { "location": "3200 W YORK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1846600827744, 39.9931254551122 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160137, 39.983497 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22713, 40.03127 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226744803802902, 40.028099275133499 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1332 PASSMORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078893549245706, 40.041508169092701 ] } }, +{ "type": "Feature", "properties": { "location": "1100 ELBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081404859025895, 40.042340270034799 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "600 MAYFAIR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108540089445995, 40.033739387584497 ] } }, +{ "type": "Feature", "properties": { "location": "1337 WELLS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077170394985401, 40.043764521458897 ] } }, +{ "type": "Feature", "properties": { "location": "6840 KINDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069441762082107, 40.043559026074902 ] } }, +{ "type": "Feature", "properties": { "location": "1800 DUDLEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17585, 39.926933 ] } }, +{ "type": "Feature", "properties": { "location": "2429 NAUDAIN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181757, 39.946217 ] } }, +{ "type": "Feature", "properties": { "location": "1717 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173643, 39.929435 ] } }, +{ "type": "Feature", "properties": { "location": "6536 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235245, 39.925072 ] } }, +{ "type": "Feature", "properties": { "location": "1200 WILDER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164412, 39.931638 ] } }, +{ "type": "Feature", "properties": { "location": "1128 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167052, 39.936883 ] } }, +{ "type": "Feature", "properties": { "location": "600 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147033, 39.971715 ] } }, +{ "type": "Feature", "properties": { "location": "500 W SOMERVILLE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131217, 40.033437 ] } }, +{ "type": "Feature", "properties": { "location": "4799 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.083807, 40.017925 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16348, 39.946548 ] } }, +{ "type": "Feature", "properties": { "location": "4132 MAYWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099531786708695, 40.009621428191203 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S FELTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231177, 39.927867 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235137, 39.92509 ] } }, +{ "type": "Feature", "properties": { "location": "6800 BUSTLETON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.065015, 40.041173 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1700685563127, 40.002994439038702 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S REDFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229960137787103, 39.933744637602203 ] } }, +{ "type": "Feature", "properties": { "location": "600 AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142247, 39.96147 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "3000 TREMONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.017359063687394, 40.0582866176658 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162135, 39.949522 ] } }, +{ "type": "Feature", "properties": { "location": "4937 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116665744294906, 40.024392716328002 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15384, 39.946177 ] } }, +{ "type": "Feature", "properties": { "location": "6227 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149786129488604, 40.049179571233999 ] } }, +{ "type": "Feature", "properties": { "location": "6227 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149786129488604, 40.049179571233999 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12817, 39.96723 ] } }, +{ "type": "Feature", "properties": { "location": "2500 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173382083977401, 39.995283103063301 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W YORK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149451436901202, 39.988581790664597 ] } }, +{ "type": "Feature", "properties": { "location": "2500 W ARIZONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174236953725298, 39.991393859692799 ] } }, +{ "type": "Feature", "properties": { "location": "2452 N COLORADO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160763455261204, 39.990805279459003 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158147, 39.923803 ] } }, +{ "type": "Feature", "properties": { "location": "4900 OLD YORK RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146425, 40.027767 ] } }, +{ "type": "Feature", "properties": { "location": "2700 JASPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1228402273711, 39.989635134129102 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146402, 40.040157 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134650654095495, 40.0267892104265 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150767, 39.918008 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15289, 39.93432 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 51ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224702, 39.950888 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150907, 40.004513 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162532, 39.925952 ] } }, +{ "type": "Feature", "properties": { "location": "900 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162103, 39.92716 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187989848690293, 39.9588431484175 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 34TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190647, 39.957873 ] } }, +{ "type": "Feature", "properties": { "location": "130 GAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223984520398901, 40.026902450135701 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160233, 39.920548 ] } }, +{ "type": "Feature", "properties": { "location": "800 WOLF ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160554974993801, 39.920647889252699 ] } }, +{ "type": "Feature", "properties": { "location": "800 WOLF ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160554974993801, 39.920647889252699 ] } }, +{ "type": "Feature", "properties": { "location": "4770 ISLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229786720215799, 39.882405635779797 ] } }, +{ "type": "Feature", "properties": { "location": "2500 WEBB ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118718964919196, 39.976107690950499 ] } }, +{ "type": "Feature", "properties": { "location": "3000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184369184914601, 39.954150384654497 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154848, 39.937415 ] } }, +{ "type": "Feature", "properties": { "location": "1200 BUTTONWOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158032, 39.961035 ] } }, +{ "type": "Feature", "properties": { "location": "1005 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144507, 39.968333 ] } }, +{ "type": "Feature", "properties": { "location": "400 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145555, 39.961923 ] } }, +{ "type": "Feature", "properties": { "location": "1892 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073438172180701, 40.017068929521997 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N SYDENHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154327, 40.006467 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N FELTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244265073578006, 39.9730740991834 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153305, 39.934015 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 19TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172127, 39.951263 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172957, 39.95752 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159857, 39.952648 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090778, 40.006933 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177127, 39.927497 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163387, 39.920933 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171858, 39.921998 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E LIPPINCOTT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114248, 39.995855 ] } }, +{ "type": "Feature", "properties": { "location": "1700 DORRANCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176203125650602, 39.929610684963002 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163437273571901, 39.939270976189697 ] } }, +{ "type": "Feature", "properties": { "location": "4000 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.20448, 39.95904 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N FELTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244370963723995, 39.974672494528903 ] } }, +{ "type": "Feature", "properties": { "location": "2900 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181313114072196, 39.9883256899084 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SPRING GARDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.199497, 39.962037 ] } }, +{ "type": "Feature", "properties": { "location": "100 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145292, 39.941765 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E HAZZARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121825771490094, 39.9815882117001 ] } }, +{ "type": "Feature", "properties": { "location": "100 RECTOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22051, 40.025113 ] } }, +{ "type": "Feature", "properties": { "location": "195 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "2032 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180101008471098, 39.926165919914098 ] } }, +{ "type": "Feature", "properties": { "location": "2032 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180101008471098, 39.926165919914098 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180101008471098, 39.926165919914098 ] } }, +{ "type": "Feature", "properties": { "location": "1006 S BOUVIER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172549239947898, 39.939193524929202 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211407994077206, 39.956538793198 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16922291537, 39.998229290531498 ] } }, +{ "type": "Feature", "properties": { "location": "1499 MCKINLEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.078232257056797, 40.036941819632702 ] } }, +{ "type": "Feature", "properties": { "location": "1 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13405, 39.97294 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156288, 39.960233 ] } }, +{ "type": "Feature", "properties": { "location": "1626S BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170065, 39.943237 ] } }, +{ "type": "Feature", "properties": { "location": "3414 ORMES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123963183298102, 40.001817288000602 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173368, 39.925077 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.190805, 39.960115 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ELLSWORTH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173327, 39.93768 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "4600 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117729166988298, 40.019912280046697 ] } }, +{ "type": "Feature", "properties": { "location": "1900 JACKSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178209387132199, 39.924210532710603 ] } }, +{ "type": "Feature", "properties": { "location": "2900 S FELTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222310373834802, 39.9213775715967 ] } }, +{ "type": "Feature", "properties": { "location": "6700 LINMORE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236046103742893, 39.921901679054201 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160565, 39.951248 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15599, 39.921258 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1559, 39.921335 ] } }, +{ "type": "Feature", "properties": { "location": "400 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1544, 39.924452 ] } }, +{ "type": "Feature", "properties": { "location": "400 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153826460525593, 39.924364113415301 ] } }, +{ "type": "Feature", "properties": { "location": "2144 S 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163097426678803, 39.922472331345702 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113420125276093, 39.995497400423197 ] } }, +{ "type": "Feature", "properties": { "location": "181 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "189 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "3500 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193395, 39.956948 ] } }, +{ "type": "Feature", "properties": { "location": "600 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157579902741006, 39.921991130310303 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154905, 39.929592 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228082, 40.028312 ] } }, +{ "type": "Feature", "properties": { "location": "1912 DELANCEY PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173418, 39.947565 ] } }, +{ "type": "Feature", "properties": { "location": "5519 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231142311591697, 39.970843096645602 ] } }, +{ "type": "Feature", "properties": { "location": "300 CATHARINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149135, 39.938058 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153335, 39.933802 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154781369644894, 39.9309962592964 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15328, 39.934178 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143046514553305, 39.955143513987899 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127825, 39.967535 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127835, 39.967593 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073618, 40.043428 ] } }, +{ "type": "Feature", "properties": { "location": "1613 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156888567679303, 39.928758871064701 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070505, 40.046425 ] } }, +{ "type": "Feature", "properties": { "location": "600 W BUTLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138897673507103, 40.009287774245301 ] } }, +{ "type": "Feature", "properties": { "location": "875 N 40TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203526571370602, 39.969876745058002 ] } }, +{ "type": "Feature", "properties": { "location": "5645 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234729604511102, 39.977733102029603 ] } }, +{ "type": "Feature", "properties": { "location": "300 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202852, 39.959702 ] } }, +{ "type": "Feature", "properties": { "location": "324 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202853537445307, 39.959720909115298 ] } }, +{ "type": "Feature", "properties": { "location": "615 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157982499266893, 39.917747840649596 ] } }, +{ "type": "Feature", "properties": { "location": "400 FOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223618469126606, 40.037732943714303 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MONTAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.058785366106605, 40.024669426043502 ] } }, +{ "type": "Feature", "properties": { "location": "813 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143705024180605, 39.963839150282602 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152936829495303, 39.935681033067901 ] } }, +{ "type": "Feature", "properties": { "location": "500 E LURAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115470254301997, 40.019830726054003 ] } }, +{ "type": "Feature", "properties": { "location": "4600 D ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1163815876413, 40.019187282331302 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W DUNCANNON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14721, 40.032267 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170335932913702, 39.930733155947102 ] } }, +{ "type": "Feature", "properties": { "location": "1199 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165102, 39.935308 ] } }, +{ "type": "Feature", "properties": { "location": "819 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241536944999297, 39.948522011361398 ] } }, +{ "type": "Feature", "properties": { "location": "3107 AGATE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108267911109607, 39.988675081499103 ] } }, +{ "type": "Feature", "properties": { "location": "OPP228 N 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177517, 39.950115 ] } }, +{ "type": "Feature", "properties": { "location": "2100 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109914915790995, 39.991402701771698 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "2500 DICKINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186580949730299, 39.934073308969801 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 11TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161365, 39.936777 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219842298067505, 40.028135599795696 ] } }, +{ "type": "Feature", "properties": { "location": "102 LINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121281541949102, 40.041020404649601 ] } }, +{ "type": "Feature", "properties": { "location": "821 E TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.112811291142705, 40.001166184540303 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "836 E HILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114518917908796, 39.997136943518399 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ARGYLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111819206454001, 39.998691024209499 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N NEWKIRK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178340816714396, 39.993071915742703 ] } }, +{ "type": "Feature", "properties": { "location": "5700 WEBSTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.237686247872006, 39.949490177555496 ] } }, +{ "type": "Feature", "properties": { "location": "35 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "6300 REGENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236871199504506, 39.928633872123797 ] } }, +{ "type": "Feature", "properties": { "location": "1527 WAKELING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080868053065004, 40.020532872645397 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17021, 39.929433 ] } }, +{ "type": "Feature", "properties": { "location": "2800 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182252, 39.973037 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "1900 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177566442877506, 39.929595480236003 ] } }, +{ "type": "Feature", "properties": { "location": "6226 DELANCEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2469698261811, 39.956629995127699 ] } }, +{ "type": "Feature", "properties": { "location": "1412 ALDINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075304337055599, 40.057485566232401 ] } }, +{ "type": "Feature", "properties": { "location": "1100 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088307602204097, 40.034684730937002 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100441107837099, 40.043696438575203 ] } }, +{ "type": "Feature", "properties": { "location": "700 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156307, 39.931432 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156235, 39.931328 ] } }, +{ "type": "Feature", "properties": { "location": "237 HARVEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181664058564607, 40.035302267256903 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234334356912299, 39.926551786869403 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234334356912299, 39.926551786869403 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237293441597501, 39.916219986919103 ] } }, +{ "type": "Feature", "properties": { "location": "700 E ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1164025539248, 40.000051055523699 ] } }, +{ "type": "Feature", "properties": { "location": "5931 SUMMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238622031502899, 39.965880385871998 ] } }, +{ "type": "Feature", "properties": { "location": "5931 SUMMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238622031502899, 39.965880385871998 ] } }, +{ "type": "Feature", "properties": { "location": "6200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244557842006998, 39.965607060080501 ] } }, +{ "type": "Feature", "properties": { "location": "6600 WALKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.051091006593296, 40.0279057279688 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159265, 39.920488 ] } }, +{ "type": "Feature", "properties": { "location": "417 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "7300 BELDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068252, 40.052927 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0708486779086, 40.0213430257621 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18844, 39.958972 ] } }, +{ "type": "Feature", "properties": { "location": "3900 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102275392732693, 40.0066248818476 ] } }, +{ "type": "Feature", "properties": { "location": "500 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145528, 39.971573 ] } }, +{ "type": "Feature", "properties": { "location": "3600 ELDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149688, 40.00882 ] } }, +{ "type": "Feature", "properties": { "location": "3200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188957087953298, 40.010656329273502 ] } }, +{ "type": "Feature", "properties": { "location": "600 N BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142878, 39.961447 ] } }, +{ "type": "Feature", "properties": { "location": "5800 ELMWOOD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220845401775094, 39.928868277168903 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225090148463295, 40.028901944853203 ] } }, +{ "type": "Feature", "properties": { "location": "800 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157208, 39.936542 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17224, 39.920857 ] } }, +{ "type": "Feature", "properties": { "location": "24 S 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.24285, 39.961533 ] } }, +{ "type": "Feature", "properties": { "location": "5800 ELMWOOD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220845401775094, 39.928868277168903 ] } }, +{ "type": "Feature", "properties": { "location": "4000 N 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139323026186602, 40.013193258957301 ] } }, +{ "type": "Feature", "properties": { "location": "5501 WESTFORD RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114802404334597, 40.0333993227786 ] } }, +{ "type": "Feature", "properties": { "location": "4300 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075715355306798, 39.9972515254955 ] } }, +{ "type": "Feature", "properties": { "location": "281 HARVEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181664058564607, 40.035302267256903 ] } }, +{ "type": "Feature", "properties": { "location": "5100 HAZEL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225712909647299, 39.951124241254298 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "6700 YOCUM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238278047178198, 39.923771572903703 ] } }, +{ "type": "Feature", "properties": { "location": "6600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236328265977804, 39.924866610348701 ] } }, +{ "type": "Feature", "properties": { "location": "1900 DELANCEY PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173915, 39.947515 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 42ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206225, 39.955452 ] } }, +{ "type": "Feature", "properties": { "location": "600 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152137, 39.943523 ] } }, +{ "type": "Feature", "properties": { "location": "600 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152192, 39.943522 ] } }, +{ "type": "Feature", "properties": { "location": "1300 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168757, 39.919247 ] } }, +{ "type": "Feature", "properties": { "location": "1629 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155505078731494, 39.9277545765733 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187617, 39.958778 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 24TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17951, 39.952108 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175372, 39.953658 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16322, 39.950208 ] } }, +{ "type": "Feature", "properties": { "location": "1100 HALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161970577316396, 39.938892154075901 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14278, 39.967615 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157868, 39.96115 ] } }, +{ "type": "Feature", "properties": { "location": "2414 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159672571765, 39.918604543700397 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128198, 39.967185 ] } }, +{ "type": "Feature", "properties": { "location": "2800 B ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126634064256905, 39.992143762584199 ] } }, +{ "type": "Feature", "properties": { "location": "600 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155878, 39.926815 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159963, 39.962805 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160058, 39.962702 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104852, 39.996925 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104828, 39.996807 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.104982, 39.996932 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107473, 39.997598 ] } }, +{ "type": "Feature", "properties": { "location": "100 SALAIGNAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213629172673393, 40.019985148646299 ] } }, +{ "type": "Feature", "properties": { "location": "2637 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086267, 40.013832 ] } }, +{ "type": "Feature", "properties": { "location": "1300 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163888, 39.944837 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16038, 39.942068 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15953, 39.97604 ] } }, +{ "type": "Feature", "properties": { "location": "6600 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235898990721395, 39.9244707588648 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143893, 39.969627 ] } }, +{ "type": "Feature", "properties": { "location": "199 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143325, 39.944447 ] } }, +{ "type": "Feature", "properties": { "location": "5700 MEDIA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235414355227903, 39.974870351193204 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178055, 39.940102 ] } }, +{ "type": "Feature", "properties": { "location": "1899 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176339292780298, 39.930253317838897 ] } }, +{ "type": "Feature", "properties": { "location": "2300 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183989334270194, 39.932059867899603 ] } }, +{ "type": "Feature", "properties": { "location": "100 N PAXON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223392669819603, 39.962204074060303 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152522, 39.942347 ] } }, +{ "type": "Feature", "properties": { "location": "500 MARTIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "6300 REGENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236871199504506, 39.928633872123797 ] } }, +{ "type": "Feature", "properties": { "location": "4600 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213003880532, 39.946654764117703 ] } }, +{ "type": "Feature", "properties": { "location": "1512 STONEY LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044882459920998, 40.083737844062497 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MARLBOROUGH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13381, 39.973288 ] } }, +{ "type": "Feature", "properties": { "location": "2538 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234788011345998, 39.9179860542299 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234788011345998, 39.9179860542299 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GUYER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230382381546093, 39.917111764473503 ] } }, +{ "type": "Feature", "properties": { "location": "6700 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238278047178198, 39.923771572903703 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S MILLICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223731760517197, 39.925799354806102 ] } }, +{ "type": "Feature", "properties": { "location": "6000 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222344086074102, 39.925731068380401 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139612382672397, 40.039199128727198 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 43RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209416286563695, 39.965185293243302 ] } }, +{ "type": "Feature", "properties": { "location": "6738 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072454617014998, 40.043343221884101 ] } }, +{ "type": "Feature", "properties": { "location": "500 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155863267995102, 39.9200468406273 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155359290048295, 39.921096143281702 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155718, 39.929353 ] } }, +{ "type": "Feature", "properties": { "location": "901 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158586236202098, 39.9384364580173 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153486617622207, 39.9220569546072 ] } }, +{ "type": "Feature", "properties": { "location": "401 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "439 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "400 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "445 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 27TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178367884285507, 39.983667870678197 ] } }, +{ "type": "Feature", "properties": { "location": "5943 SUMMER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238622031502899, 39.965880385871998 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152773, 40.009655 ] } }, +{ "type": "Feature", "properties": { "location": "700 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158253498857505, 39.926209797771001 ] } }, +{ "type": "Feature", "properties": { "location": "700 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158253498857505, 39.926209797771001 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179475, 39.924388 ] } }, +{ "type": "Feature", "properties": { "location": "100 SHURS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216355, 40.023458 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171452, 39.948118 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151577, 40.00134 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141248, 39.968647 ] } }, +{ "type": "Feature", "properties": { "location": "973 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088179755099404, 40.032672571545 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LARDNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0795396301408, 40.035554269592197 ] } }, +{ "type": "Feature", "properties": { "location": "3000 EDGEMONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.106762775547395, 39.981950483936203 ] } }, +{ "type": "Feature", "properties": { "location": "1800 JACKSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176880902379196, 39.9240259849634 ] } }, +{ "type": "Feature", "properties": { "location": "1800 JACKSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176880902379196, 39.9240259849634 ] } }, +{ "type": "Feature", "properties": { "location": "3180 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187415, 39.953607 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171202, 39.940118 ] } }, +{ "type": "Feature", "properties": { "location": "2700 AMBER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.119862683606996, 39.987025060434199 ] } }, +{ "type": "Feature", "properties": { "location": "204 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124695974647196, 40.044583159159998 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 12TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141947602120197, 40.033989756133103 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165288, 39.917433 ] } }, +{ "type": "Feature", "properties": { "location": "200 RITNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1510043825498, 39.918131063474803 ] } }, +{ "type": "Feature", "properties": { "location": "199 ROSELYN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122938193073097, 40.042310174034199 ] } }, +{ "type": "Feature", "properties": { "location": "221 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142423, 39.961148 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158738, 39.920848 ] } }, +{ "type": "Feature", "properties": { "location": "5255 N MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134329509997301, 40.031443166546602 ] } }, +{ "type": "Feature", "properties": { "location": "5227 N MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134329509997301, 40.031443166546602 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SHARP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213062, 40.019957 ] } }, +{ "type": "Feature", "properties": { "location": "500 PIERCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15565, 39.926758 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158595, 39.920657 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 21ST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174538, 39.95456 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 40TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "1500 PRINCETON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068997, 40.048 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154803, 39.923728 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N GRATZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155555131948603, 40.023145524164903 ] } }, +{ "type": "Feature", "properties": { "location": "1800 DUDLEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175815, 39.92686 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PENNSYLVANIA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176215, 39.964478 ] } }, +{ "type": "Feature", "properties": { "location": "100 E CLEARFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129343677754903, 39.996921583508097 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162135, 39.948142 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CARLISLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160008, 39.972448 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144605, 39.958647 ] } }, +{ "type": "Feature", "properties": { "location": "1866 E HILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112121864087101, 39.996197398624801 ] } }, +{ "type": "Feature", "properties": { "location": "2800 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126977588820495, 39.993104615507796 ] } }, +{ "type": "Feature", "properties": { "location": "5500 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231991619159004, 39.960082144561703 ] } }, +{ "type": "Feature", "properties": { "location": "6300 MASTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245477780575897, 39.972109897088302 ] } }, +{ "type": "Feature", "properties": { "location": "3100 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107970569468193, 39.988342253737997 ] } }, +{ "type": "Feature", "properties": { "location": "2100 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109914915790995, 39.991402701771698 ] } }, +{ "type": "Feature", "properties": { "location": "2100 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109914915790995, 39.991402701771698 ] } }, +{ "type": "Feature", "properties": { "location": "2100 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109914915790995, 39.991402701771698 ] } }, +{ "type": "Feature", "properties": { "location": "3100 BOUDINOT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122262, 39.997583 ] } }, +{ "type": "Feature", "properties": { "location": "1859 E CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114018583622695, 39.994666103132801 ] } }, +{ "type": "Feature", "properties": { "location": "715 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116087137108593, 40.001585279176297 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WEIKEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101853855160599, 39.993180355723297 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115613211185604, 39.994967777718799 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "4400 MITCHELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215066657491903, 40.030705583339 ] } }, +{ "type": "Feature", "properties": { "location": "1900 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176685091998607, 39.9336365728483 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133858, 39.97253 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161905, 39.94373 ] } }, +{ "type": "Feature", "properties": { "location": "1212 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160832, 39.950592 ] } }, +{ "type": "Feature", "properties": { "location": "1533 STONEY LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044882459920998, 40.083737844062497 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SCHUBERT ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169952, 39.948365 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OXFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.084373, 40.020333 ] } }, +{ "type": "Feature", "properties": { "location": "1 N ROBINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243866275519807, 39.9631531775564 ] } }, +{ "type": "Feature", "properties": { "location": "3700 WALLACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196900772541696, 39.964663377957599 ] } }, +{ "type": "Feature", "properties": { "location": "3500 JANNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099833519642601, 39.994700297769803 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "3400 TAMPA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1175767096166, 40.000987289979797 ] } }, +{ "type": "Feature", "properties": { "location": "941 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239211322196397, 39.946702754627701 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108681669775905, 39.998047076844301 ] } }, +{ "type": "Feature", "properties": { "location": "2945 N RINGGOLD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170472241550399, 39.999935180083497 ] } }, +{ "type": "Feature", "properties": { "location": "3246 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100094324512995, 39.984507948654802 ] } }, +{ "type": "Feature", "properties": { "location": "3250 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100094324512995, 39.984507948654802 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "3107 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129008415784995, 39.997216563602699 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CLARIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103671412504397, 40.010155809129202 ] } }, +{ "type": "Feature", "properties": { "location": "3100 HURLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121922315190304, 39.996776717591104 ] } }, +{ "type": "Feature", "properties": { "location": "3100 HURLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121922315190304, 39.996776717591104 ] } }, +{ "type": "Feature", "properties": { "location": "3100 TULIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108560071126405, 39.9890070944736 ] } }, +{ "type": "Feature", "properties": { "location": "206 HOWELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106416551154197, 40.047784474725802 ] } }, +{ "type": "Feature", "properties": { "location": "5629 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235739870770203, 39.952131925610402 ] } }, +{ "type": "Feature", "properties": { "location": "16 S DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243505303084504, 39.961905576043002 ] } }, +{ "type": "Feature", "properties": { "location": "5500 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232278269525906, 39.9560084940791 ] } }, +{ "type": "Feature", "properties": { "location": "251 S ITHAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234550841567895, 39.956278254460997 ] } }, +{ "type": "Feature", "properties": { "location": "5521 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232414175337894, 39.955379345034402 ] } }, +{ "type": "Feature", "properties": { "location": "6200 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246162, 39.98459 ] } }, +{ "type": "Feature", "properties": { "location": "500 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12777, 39.969922 ] } }, +{ "type": "Feature", "properties": { "location": "6700 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072454617014998, 40.043343221884101 ] } }, +{ "type": "Feature", "properties": { "location": "533 S 57TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236695904208005, 39.952486588402401 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 40TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205222, 39.959518 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 41ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205249443385, 39.959517248553901 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182611070365994, 39.970891215557899 ] } }, +{ "type": "Feature", "properties": { "location": "11870 BASILE RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.982408969866199, 40.0936256640314 ] } }, +{ "type": "Feature", "properties": { "location": "3300 G ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115060670492895, 39.998570538766302 ] } }, +{ "type": "Feature", "properties": { "location": "4800 HORROCKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.088415066593598, 40.021502818713699 ] } }, +{ "type": "Feature", "properties": { "location": "900 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089901685639305, 40.033014671300798 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181325803098304, 39.928825307017803 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181325803098304, 39.928825307017803 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162905, 39.923735 ] } }, +{ "type": "Feature", "properties": { "location": "5541 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232145324628306, 39.959337449758003 ] } }, +{ "type": "Feature", "properties": { "location": "6300 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229337034842004, 39.924330545924001 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N NEWKIRK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175516428937001, 40.005323661629902 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "2100 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1807967282909, 39.931269215072099 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163768909327601, 39.943880565987399 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163768909327601, 39.943880565987399 ] } }, +{ "type": "Feature", "properties": { "location": "900 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155271349187302, 39.952888684061698 ] } }, +{ "type": "Feature", "properties": { "location": "300 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216233997078703, 40.027777327623603 ] } }, +{ "type": "Feature", "properties": { "location": "144 SHURS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216660207873403, 40.023203223140797 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159605, 39.975907 ] } }, +{ "type": "Feature", "properties": { "location": "900 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157855, 39.942628 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 10TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163677, 39.919735 ] } }, +{ "type": "Feature", "properties": { "location": "1413 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170925, 39.922013 ] } }, +{ "type": "Feature", "properties": { "location": "6300 SUMMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.247505020028001, 39.966735754806201 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.245057755271105, 39.962495105725097 ] } }, +{ "type": "Feature", "properties": { "location": "101 N VOGDES ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231174224032102, 39.962731576073402 ] } }, +{ "type": "Feature", "properties": { "location": "5147 RANSTEAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224568, 39.958965 ] } }, +{ "type": "Feature", "properties": { "location": "900 WYNNEWOOD RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.247615401777495, 39.979071800635303 ] } }, +{ "type": "Feature", "properties": { "location": "400 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14561, 39.961923 ] } }, +{ "type": "Feature", "properties": { "location": "1363 S MELVILLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207951954694096, 39.943743181238403 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 36TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194278, 39.963235 ] } }, +{ "type": "Feature", "properties": { "location": "3600 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194613, 39.963162 ] } }, +{ "type": "Feature", "properties": { "location": "4370 MAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224424897149902, 40.025779247364703 ] } }, +{ "type": "Feature", "properties": { "location": "4200 MANAYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215802550019504, 40.0265184750914 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156738, 39.960952 ] } }, +{ "type": "Feature", "properties": { "location": "900 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160919825913894, 39.928689558008898 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16077, 39.918118 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160837, 39.918135 ] } }, +{ "type": "Feature", "properties": { "location": "900 HOFFMAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160903, 39.9253 ] } }, +{ "type": "Feature", "properties": { "location": "900 HOFFMAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160893, 39.925297 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157868428971199, 40.0125124206468 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N CARLISLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153685, 40.002148 ] } }, +{ "type": "Feature", "properties": { "location": "4901 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220047818769203, 39.974005181985099 ] } }, +{ "type": "Feature", "properties": { "location": "100 N SALFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.239601391036004, 39.964212624702 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167922, 39.940643 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S ALDER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164282, 39.919637 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197137, 39.962342 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086202, 40.013912 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W PACIFIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151767, 40.00881 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086185, 40.013828 ] } }, +{ "type": "Feature", "properties": { "location": "600 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151998, 39.945075 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152388, 40.00757 ] } }, +{ "type": "Feature", "properties": { "location": "5900 HOUGHTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209748333200807, 40.031203852959202 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12535, 39.97081 ] } }, +{ "type": "Feature", "properties": { "location": "800 W BUTLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141670286803404, 40.009643343842299 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156842, 39.928993 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 41ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205797, 39.949775 ] } }, +{ "type": "Feature", "properties": { "location": "4200 SPRUCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207065, 39.952243 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SMICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228495, 40.03048 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154713, 39.93127 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15573, 39.929928 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140943, 40.03934 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S CAMAC ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165198, 39.930078 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175333, 39.943442 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170511155214996, 39.936005638948302 ] } }, +{ "type": "Feature", "properties": { "location": "500 RUSCOMB ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132587, 40.027335 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141287343452504, 40.0150239962095 ] } }, +{ "type": "Feature", "properties": { "location": "500 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157903, 39.916422 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141597052787205, 40.008818888064397 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SHARP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212570699364605, 40.0192285521534 ] } }, +{ "type": "Feature", "properties": { "location": "1452 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212113, 40.021457 ] } }, +{ "type": "Feature", "properties": { "location": "600 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156138059500293, 39.929722298083398 ] } }, +{ "type": "Feature", "properties": { "location": "5500 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232153165371997, 39.956605097332897 ] } }, +{ "type": "Feature", "properties": { "location": "100 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140805, 39.961802 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W CHAMPLOST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137443, 40.043718 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128683, 39.974303 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180946166820704, 39.968480251838898 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171347, 39.932173 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166938, 39.965267 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 40TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16406, 39.945037 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CREASE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132835, 39.969998 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176097, 39.954298 ] } }, +{ "type": "Feature", "properties": { "location": "2100 W TORONTO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165609657432896, 40.000834781865102 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177162, 39.952692 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156703, 39.936692 ] } }, +{ "type": "Feature", "properties": { "location": "3400 W PENN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189498, 40.014975 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1548418851402, 39.923474786287002 ] } }, +{ "type": "Feature", "properties": { "location": "2716 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158796085709895, 39.914496545690298 ] } }, +{ "type": "Feature", "properties": { "location": "1 CHRISTIAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144333, 39.935258 ] } }, +{ "type": "Feature", "properties": { "location": "5400 N PENN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077813, 40.026212 ] } }, +{ "type": "Feature", "properties": { "location": "5400 N PENN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077388, 40.026768 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175225, 39.947195 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168855, 39.94608 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234334356912299, 39.926551786869403 ] } }, +{ "type": "Feature", "properties": { "location": "500 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164452, 39.94354 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224408, 40.02671 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13773, 39.968122 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137587, 39.968215 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARLBOROUGH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132583, 39.971195 ] } }, +{ "type": "Feature", "properties": { "location": "5600 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233587, 39.958037 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178487, 39.96816 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226785009021498, 39.937893641349397 ] } }, +{ "type": "Feature", "properties": { "location": "900 BUTTONWOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15351, 39.960793 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170177, 39.942383 ] } }, +{ "type": "Feature", "properties": { "location": "1600 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170287, 39.942303 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170253, 39.94236 ] } }, +{ "type": "Feature", "properties": { "location": "4300 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218378, 40.028133 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154832, 39.92955 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154975, 39.929535 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157803, 39.93157 ] } }, +{ "type": "Feature", "properties": { "location": "2075 MARTHA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130756884455394, 39.980713988991802 ] } }, +{ "type": "Feature", "properties": { "location": "4200 STATION ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219833, 40.023953 ] } }, +{ "type": "Feature", "properties": { "location": "900 N BODINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141417, 39.96559 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175268, 39.94348 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161275, 39.982225 ] } }, +{ "type": "Feature", "properties": { "location": "5316 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226547591533901, 39.963373653187404 ] } }, +{ "type": "Feature", "properties": { "location": "5700 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234458236101005, 39.964355959591998 ] } }, +{ "type": "Feature", "properties": { "location": "834 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159840294417904, 39.969599703115698 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141183, 39.968825 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156052, 39.958087 ] } }, +{ "type": "Feature", "properties": { "location": "4400 HURLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117401166566296, 40.016615044793198 ] } }, +{ "type": "Feature", "properties": { "location": "1300 LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143628, 39.972297 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130195, 39.972092 ] } }, +{ "type": "Feature", "properties": { "location": "300 BURNSIDE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214049194712203, 40.024916876614697 ] } }, +{ "type": "Feature", "properties": { "location": "305 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214197519509298, 40.024607249323999 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153537, 39.92936 ] } }, +{ "type": "Feature", "properties": { "location": "1529 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165917, 39.964345 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15326, 39.933962 ] } }, +{ "type": "Feature", "properties": { "location": "1613 N ALLISON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232846602334007, 39.977135221851903 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073533, 40.043718 ] } }, +{ "type": "Feature", "properties": { "location": "2600 SHIELDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230129822325495, 39.919097764043002 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16032, 39.962822 ] } }, +{ "type": "Feature", "properties": { "location": "900 W RUSCOMB ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13849, 40.028012 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W DUNCANNON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147122, 40.032353 ] } }, +{ "type": "Feature", "properties": { "location": "400 E TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.121028, 40.002188 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169877, 39.920608 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115683, 39.995055 ] } }, +{ "type": "Feature", "properties": { "location": "3400 B ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124572301175206, 40.001880480241397 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153267, 39.934145 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "800 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687857051997, 39.922383040809997 ] } }, +{ "type": "Feature", "properties": { "location": "2115 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158327063538394, 39.9222672515371 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "800 ALTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157072, 39.935373 ] } }, +{ "type": "Feature", "properties": { "location": "3100 W CLEARFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115747, 39.99528 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173467, 39.948417 ] } }, +{ "type": "Feature", "properties": { "location": "859 ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114028, 39.99665 ] } }, +{ "type": "Feature", "properties": { "location": "1100 KATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161043, 39.942665 ] } }, +{ "type": "Feature", "properties": { "location": "5600 N BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144661530848296, 40.039455902654304 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179230493965306, 39.930185948313799 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 22ND ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173392933709493, 39.971684142727298 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15355, 39.936362 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156248, 39.921442 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141525, 40.03936 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183702050635304, 39.973542504934699 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178283, 39.939185 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178337, 39.93916 ] } }, +{ "type": "Feature", "properties": { "location": "4600 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117729166988298, 40.019912280046697 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FITZWATER ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160353, 39.942128 ] } }, +{ "type": "Feature", "properties": { "location": "600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157293, 39.920243 ] } }, +{ "type": "Feature", "properties": { "location": "1301 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165598, 39.935408 ] } }, +{ "type": "Feature", "properties": { "location": "2700 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.190221107585998, 39.932042003373397 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "241 N SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.249132547219006, 39.966953620790399 ] } }, +{ "type": "Feature", "properties": { "location": "3420 GOODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147345339801007, 40.0043628671609 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WYOMING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117928213579603, 40.020758246232099 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "900 E ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112347983604806, 39.9995160672891 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "5347 N 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 40.034878 ] } }, +{ "type": "Feature", "properties": { "location": "1638 W MENTOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151908793351396, 40.026175636755902 ] } }, +{ "type": "Feature", "properties": { "location": "200 W GEORGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140063, 39.967598 ] } }, +{ "type": "Feature", "properties": { "location": "201 SALAIGNAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206572816810606, 40.022170275830497 ] } }, +{ "type": "Feature", "properties": { "location": "501 RIGHTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207541975219002, 40.022771162264199 ] } }, +{ "type": "Feature", "properties": { "location": "800 CARVER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.091025852555404, 40.034293984669098 ] } }, +{ "type": "Feature", "properties": { "location": "4200 M ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.099765, 40.012062 ] } }, +{ "type": "Feature", "properties": { "location": "6117 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243709768542999, 39.9623251362719 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11392, 39.999263 ] } }, +{ "type": "Feature", "properties": { "location": "3300 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.11491, 39.999358 ] } }, +{ "type": "Feature", "properties": { "location": "1300 LOCUST ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16346, 39.948072 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164105, 39.940203 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167227, 39.92658 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157425, 39.919 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159772388436295, 39.985340213142798 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 31ST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185292, 39.954632 ] } }, +{ "type": "Feature", "properties": { "location": "2519 N CORLIES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181270326244501, 39.994985069137897 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228038, 40.028307 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142275, 40.039493 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10578, 39.996415 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RODMAN ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16166, 39.943752 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128318, 39.967175 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141472, 39.967668 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196918, 39.960262 ] } }, +{ "type": "Feature", "properties": { "location": "117 LOCKART PLZ", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.039515166103897, 40.117995553613703 ] } }, +{ "type": "Feature", "properties": { "location": "7500 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.062866812921101, 40.054626076493903 ] } }, +{ "type": "Feature", "properties": { "location": "6200 CEDAR AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.247153209040803, 39.952968592248602 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155252, 39.936627 ] } }, +{ "type": "Feature", "properties": { "location": "2300 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180868, 39.944657 ] } }, +{ "type": "Feature", "properties": { "location": "2430 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.186432267686996, 39.931552626949497 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174222, 39.955243 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176725, 39.922787 ] } }, +{ "type": "Feature", "properties": { "location": "4600 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148070681553605, 40.023757753170997 ] } }, +{ "type": "Feature", "properties": { "location": "4623 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148070681553605, 40.023757753170997 ] } }, +{ "type": "Feature", "properties": { "location": "500 SIGEL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15594, 39.925495 ] } }, +{ "type": "Feature", "properties": { "location": "901 S 60TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243618453608093, 39.948277428695299 ] } }, +{ "type": "Feature", "properties": { "location": "322 E TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123574227881406, 40.0025550889737 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133507, 39.97523 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123017, 39.973822 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142287, 40.039623 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182738, 39.970578 ] } }, +{ "type": "Feature", "properties": { "location": "6323 MERSHON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064430024362807, 40.031253197792402 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160381378949296, 39.950946961134697 ] } }, +{ "type": "Feature", "properties": { "location": "130 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213577761954099, 39.955864240717801 ] } }, +{ "type": "Feature", "properties": { "location": "701 S MOLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16833, 39.942617 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187532, 39.958907 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159228, 39.925443 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158472, 39.938428 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152726935217203, 39.9257032347547 ] } }, +{ "type": "Feature", "properties": { "location": "1801 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152726935217203, 39.9257032347547 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165498, 39.918763 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E WISHART ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.113962, 39.995923 ] } }, +{ "type": "Feature", "properties": { "location": "5700 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234779806555906, 39.9694959115117 ] } }, +{ "type": "Feature", "properties": { "location": "700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15322, 39.952075 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15194, 39.929148 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160318, 39.951053 ] } }, +{ "type": "Feature", "properties": { "location": "520 S 3RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147457, 39.941737 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "3048 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "900 FERNON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161603, 39.929197 ] } }, +{ "type": "Feature", "properties": { "location": "900 FERNON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161592, 39.929228 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158643, 39.92078 ] } }, +{ "type": "Feature", "properties": { "location": "3424 ORMES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123963183298102, 40.001817288000602 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148237, 40.040557 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214273, 40.023717 ] } }, +{ "type": "Feature", "properties": { "location": "700 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159819306267707, 39.916706806100898 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161907, 39.983297 ] } }, +{ "type": "Feature", "properties": { "location": "1818 MEDARY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149261451168101, 40.049907163692097 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1100 E COLUMBIA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130302, 39.970087 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1619138463289, 39.971782230279302 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1543, 40.00497 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176375, 39.923942 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S MOLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170003, 39.937238 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151631468978806, 40.022638495296697 ] } }, +{ "type": "Feature", "properties": { "location": "900 BUTTONWOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15318, 39.96078 ] } }, +{ "type": "Feature", "properties": { "location": "5800 W THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236295584804907, 39.971841153161598 ] } }, +{ "type": "Feature", "properties": { "location": "1100 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15628, 39.959787 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182918589324103, 39.940858001439402 ] } }, +{ "type": "Feature", "properties": { "location": "4600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211166128814298, 39.945192055643801 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152372, 39.942352 ] } }, +{ "type": "Feature", "properties": { "location": "9346 NEIL RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043093581883198, 40.085036880182798 ] } }, +{ "type": "Feature", "properties": { "location": "300 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150322453054201, 39.926409714725899 ] } }, +{ "type": "Feature", "properties": { "location": "5000 MORRIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170917202717106, 40.023128931092202 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234788011345998, 39.9179860542299 ] } }, +{ "type": "Feature", "properties": { "location": "200 HANSBERRY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171472282837698, 40.026806305172002 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.92327 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BACH PL", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165788, 39.947653 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E BOSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1253109355997, 39.979762089561397 ] } }, +{ "type": "Feature", "properties": { "location": "2019 E BOSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1292057093588, 39.984172688489899 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130211055352007, 39.994177508307303 ] } }, +{ "type": "Feature", "properties": { "location": "1230 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162765, 39.943865 ] } }, +{ "type": "Feature", "properties": { "location": "3500 INDIAN QUEEN LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188002, 40.010785 ] } }, +{ "type": "Feature", "properties": { "location": "2527 WEBB ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118718964919196, 39.976107690950499 ] } }, +{ "type": "Feature", "properties": { "location": "2500 WEBB ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118718964919196, 39.976107690950499 ] } }, +{ "type": "Feature", "properties": { "location": "3600 INDIAN QUEEN LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19249, 40.009337 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OLD YORK RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146425, 40.027442 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 35TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192428, 39.958635 ] } }, +{ "type": "Feature", "properties": { "location": "1800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176423, 39.923917 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090988, 40.007173 ] } }, +{ "type": "Feature", "properties": { "location": "6400 PASCHALL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232500270685406, 39.924997091097801 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221317, 40.02983 ] } }, +{ "type": "Feature", "properties": { "location": "328 E ALLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129646826684805, 39.967286394784303 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156047, 39.959793 ] } }, +{ "type": "Feature", "properties": { "location": "300 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152002, 39.928242 ] } }, +{ "type": "Feature", "properties": { "location": "123 NANDINA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.036509370513997, 40.118645521351198 ] } }, +{ "type": "Feature", "properties": { "location": "242 ERICA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.040944920656699, 40.116487384832503 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154762, 39.931182 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226688907892395, 39.977331806754997 ] } }, +{ "type": "Feature", "properties": { "location": "600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15722, 39.920278 ] } }, +{ "type": "Feature", "properties": { "location": "1041 RIDGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156068023917996, 39.959979283882902 ] } }, +{ "type": "Feature", "properties": { "location": "300 S WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164165, 39.946237 ] } }, +{ "type": "Feature", "properties": { "location": "2038 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180101008471098, 39.926165919914098 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOBSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233186011450002, 39.919113482363798 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173240089075804, 39.930896151650501 ] } }, +{ "type": "Feature", "properties": { "location": "2600 W FLETCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176233909677194, 39.9896878221912 ] } }, +{ "type": "Feature", "properties": { "location": "10128 VERREE RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.029229691504696, 40.106919568809303 ] } }, +{ "type": "Feature", "properties": { "location": "300 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219956696157595, 40.029184889785903 ] } }, +{ "type": "Feature", "properties": { "location": "1239 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128967977513994, 39.971884178880799 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128868, 39.971807 ] } }, +{ "type": "Feature", "properties": { "location": "436 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131112148426098, 39.974473839710697 ] } }, +{ "type": "Feature", "properties": { "location": "1520 W BOSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157525108501801, 39.990070353346297 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 24TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18074, 39.945788 ] } }, +{ "type": "Feature", "properties": { "location": "800 LINDLEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137997, 40.029437 ] } }, +{ "type": "Feature", "properties": { "location": "4600 PINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214523, 39.952077 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169717, 39.94331 ] } }, +{ "type": "Feature", "properties": { "location": "6500 PASCHALL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233746030624204, 39.924127181588602 ] } }, +{ "type": "Feature", "properties": { "location": "6149 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226582568443902, 39.926219003183597 ] } }, +{ "type": "Feature", "properties": { "location": "7452 N 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150255661971997, 40.068507532751298 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MONUMENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163088, 39.98299 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BUTTONWOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162248, 39.961777 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILLARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILLARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105822, 39.99644 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13941, 39.987237 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163818, 39.945145 ] } }, +{ "type": "Feature", "properties": { "location": "900 BUTTONWOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153675, 39.960708 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128673082415006, 40.040165061529898 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "100 JACKSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148648, 39.920245 ] } }, +{ "type": "Feature", "properties": { "location": "6700 DICKS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230354040444595, 39.917865259198898 ] } }, +{ "type": "Feature", "properties": { "location": "700 SHIRLEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167495740097607, 39.967416185309801 ] } }, +{ "type": "Feature", "properties": { "location": "6800 PASCHALL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238028287658807, 39.9211161758017 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226785009021498, 39.937893641349397 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "2608 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233394290358703, 39.916809360825901 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SHIELDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237124739356403, 39.9250796090774 ] } }, +{ "type": "Feature", "properties": { "location": "6600 UPLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238190089314699, 39.925888608565401 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S PAXON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220194116448795, 39.942521628760502 ] } }, +{ "type": "Feature", "properties": { "location": "900 BODINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14139, 39.965677 ] } }, +{ "type": "Feature", "properties": { "location": "1420 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N 25TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173267398630202, 39.992038637402302 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RORER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120245, 39.9975 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151893, 39.929552 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171245448620297, 39.966784715197598 ] } }, +{ "type": "Feature", "properties": { "location": "500 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155963, 39.924643 ] } }, +{ "type": "Feature", "properties": { "location": "2100 W PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182556448709803, 39.923120843335099 ] } }, +{ "type": "Feature", "properties": { "location": "4900 C ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117515313267305, 40.024446388981403 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137993221361697, 40.0114821032723 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115197, 39.99834 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159267, 39.917887 ] } }, +{ "type": "Feature", "properties": { "location": "600 S YEWDALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231504300663104, 39.9502701585333 ] } }, +{ "type": "Feature", "properties": { "location": "5800 ADDISON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.239358129497901, 39.954141056685202 ] } }, +{ "type": "Feature", "properties": { "location": "5800 WALTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239994780185597, 39.951074446819199 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "2701 S BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171547925723701, 39.915510132598399 ] } }, +{ "type": "Feature", "properties": { "location": "2529 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182848487988693, 39.995189741029698 ] } }, +{ "type": "Feature", "properties": { "location": "100 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156092, 39.955433 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204685, 39.956687 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191797, 39.957797 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164123, 39.94474 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167042, 39.940502 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CEMETERY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232412182624103, 39.928364680387801 ] } }, +{ "type": "Feature", "properties": { "location": "5700 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229939961484007, 39.937980140993801 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16074, 39.918102 ] } }, +{ "type": "Feature", "properties": { "location": "4000 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204458, 39.958972 ] } }, +{ "type": "Feature", "properties": { "location": "142 N EDGEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240914249903, 39.964375209885098 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N 59TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238130726632804, 39.973756441754603 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155877, 39.954337 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155882, 39.92114 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156908, 39.921325 ] } }, +{ "type": "Feature", "properties": { "location": "900 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16305, 39.922225 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WYOMING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.111555, 40.019963 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178244929496401, 39.922701199644202 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176115781630102, 39.926459757025199 ] } }, +{ "type": "Feature", "properties": { "location": "2000 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SAINT VINCENT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.04578, 40.036938 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164153397583902, 39.967866122955101 ] } }, +{ "type": "Feature", "properties": { "location": "700 CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170247, 39.942405 ] } }, +{ "type": "Feature", "properties": { "location": "3865 N GRATZ ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157868428971199, 40.0125124206468 ] } }, +{ "type": "Feature", "properties": { "location": "2900 S FELTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222310373834802, 39.9213775715967 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20454, 39.956663 ] } }, +{ "type": "Feature", "properties": { "location": "5500 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221483757451395, 39.935572419389999 ] } }, +{ "type": "Feature", "properties": { "location": "399 N 59TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237325, 39.967658 ] } }, +{ "type": "Feature", "properties": { "location": "5654 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228507048455796, 39.939002284704699 ] } }, +{ "type": "Feature", "properties": { "location": "2240 SHIELDS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235631033326896, 39.923731297543199 ] } }, +{ "type": "Feature", "properties": { "location": "6100 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227529884946094, 39.926954104333802 ] } }, +{ "type": "Feature", "properties": { "location": "6100 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227529884946094, 39.926954104333802 ] } }, +{ "type": "Feature", "properties": { "location": "6208 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227625596527005, 39.924901286655498 ] } }, +{ "type": "Feature", "properties": { "location": "1323 S REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153625042229507, 39.931686964491902 ] } }, +{ "type": "Feature", "properties": { "location": "7100 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.067746600068503, 40.048324678195499 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16896, 39.928228 ] } }, +{ "type": "Feature", "properties": { "location": "3701 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196227, 39.957263 ] } }, +{ "type": "Feature", "properties": { "location": "3701 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196135, 39.957245 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E ALBERT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120470891246001, 39.982293381009498 ] } }, +{ "type": "Feature", "properties": { "location": "7000 CALVERT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.059473990595194, 40.041338288584001 ] } }, +{ "type": "Feature", "properties": { "location": "800 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "438 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131112148426098, 39.974473839710697 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086502, 40.013985 ] } }, +{ "type": "Feature", "properties": { "location": "5600 BELMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228102282642894, 39.938660181167599 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S HICKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17245, 39.922238 ] } }, +{ "type": "Feature", "properties": { "location": "100 GREEN LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226773, 40.027282 ] } }, +{ "type": "Feature", "properties": { "location": "917 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168087, 39.939762 ] } }, +{ "type": "Feature", "properties": { "location": "1800 DUDLEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175847, 39.926873 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W GRANGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142128, 40.041135 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151702, 39.92568 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W GRANGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142188, 40.041058 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09091, 40.007108 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090798, 40.007595 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166885, 39.95668 ] } }, +{ "type": "Feature", "properties": { "location": "4500 GRISCOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.086733, 40.014895 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163437273571901, 39.939270976189697 ] } }, +{ "type": "Feature", "properties": { "location": "600 MCKEAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157149589076795, 39.923990155184399 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191855, 39.957567 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177835, 39.948038 ] } }, +{ "type": "Feature", "properties": { "location": "2100 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109914915790995, 39.991402701771698 ] } }, +{ "type": "Feature", "properties": { "location": "1500 UNRUH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.073441540409405, 40.0429490743374 ] } }, +{ "type": "Feature", "properties": { "location": "6200 LARGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077502358495494, 40.036005798519497 ] } }, +{ "type": "Feature", "properties": { "location": "937 GRANITE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091344380469593, 40.031211659254197 ] } }, +{ "type": "Feature", "properties": { "location": "4813 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "6100 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125911479585994, 40.043983907694198 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LARDNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0795396301408, 40.035554269592197 ] } }, +{ "type": "Feature", "properties": { "location": "3300 FREDERICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194358, 40.010218 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214035, 40.023333 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213963, 40.02329 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "1900 W BERKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165579398929395, 39.982791744325603 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175362, 39.943458 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S FRONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146222, 39.931293 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167878, 39.936763 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160863376627304, 39.9821762449087 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153273, 39.93103 ] } }, +{ "type": "Feature", "properties": { "location": "1801 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164458, 39.982683 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226332, 40.027777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162438804761706, 39.982378840837796 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162438804761706, 39.982378840837796 ] } }, +{ "type": "Feature", "properties": { "location": "900 E RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111521978752705, 39.999956871853399 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179745, 39.973805 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1600 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160463751193504, 39.985880368044803 ] } }, +{ "type": "Feature", "properties": { "location": "2600 E AUBURN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111503544270505, 39.981206073707497 ] } }, +{ "type": "Feature", "properties": { "location": "3500 STOUTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104852698238005, 39.9998344401371 ] } }, +{ "type": "Feature", "properties": { "location": "3000 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108612480957305, 39.984047871950999 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "500 W ELEANOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133553881958207, 40.025068254067101 ] } }, +{ "type": "Feature", "properties": { "location": "2600 E AUBURN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111503544270505, 39.981206073707497 ] } }, +{ "type": "Feature", "properties": { "location": "200 E STELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126541988791701, 39.9957922514157 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W PASSYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174984097362298, 39.924483409012197 ] } }, +{ "type": "Feature", "properties": { "location": "442 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131112148426098, 39.974473839710697 ] } }, +{ "type": "Feature", "properties": { "location": "5900 TRINITY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231314050389599, 39.934707658451003 ] } }, +{ "type": "Feature", "properties": { "location": "600 GREENWICH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156677, 39.929733 ] } }, +{ "type": "Feature", "properties": { "location": "100 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149947916850905, 39.9179971260616 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18858, 39.958827 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NEDRO AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150938813804899, 40.043654898033097 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160515, 39.926963 ] } }, +{ "type": "Feature", "properties": { "location": "201 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "1900 W LAVEER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151743310050094, 40.049559474934803 ] } }, +{ "type": "Feature", "properties": { "location": "400 RUSCOMB ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13245, 40.02722 ] } }, +{ "type": "Feature", "properties": { "location": "3757 N 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140303330652998, 40.008662944211402 ] } }, +{ "type": "Feature", "properties": { "location": "3200 ARCH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188465401414902, 39.957532559424301 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153647, 39.959727 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155935, 39.921448 ] } }, +{ "type": "Feature", "properties": { "location": "1041 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156465, 39.960195 ] } }, +{ "type": "Feature", "properties": { "location": "200 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "5910 N LEITHGOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128072426923296, 40.041649823845198 ] } }, +{ "type": "Feature", "properties": { "location": "200 LINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1252341452102, 40.041518434815799 ] } }, +{ "type": "Feature", "properties": { "location": "6800 N 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1441934161939, 40.057660597696099 ] } }, +{ "type": "Feature", "properties": { "location": "6723 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141895113832405, 40.056031606043803 ] } }, +{ "type": "Feature", "properties": { "location": "800 S ROSEWOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167157, 39.94046 ] } }, +{ "type": "Feature", "properties": { "location": "199 LINTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123184484618207, 40.041258973832797 ] } }, +{ "type": "Feature", "properties": { "location": "6700 ELMWOOD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233141896668101, 39.920215329967803 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10172, 40.009005 ] } }, +{ "type": "Feature", "properties": { "location": "4500 LARCHWOOD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214615, 39.950497 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168037, 39.943655 ] } }, +{ "type": "Feature", "properties": { "location": "145 LINTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123184484618207, 40.041258973832797 ] } }, +{ "type": "Feature", "properties": { "location": "2443 TULIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124741742142106, 39.980541322720697 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132973, 39.968928 ] } }, +{ "type": "Feature", "properties": { "location": "100 VASSAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211337, 40.018513 ] } }, +{ "type": "Feature", "properties": { "location": "4600 PAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.083928, 40.015843 ] } }, +{ "type": "Feature", "properties": { "location": "5800 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.100718274320698, 40.041296691824499 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225595, 39.97233 ] } }, +{ "type": "Feature", "properties": { "location": "4000 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203442, 39.963907 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169728, 39.939442 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169758, 39.939465 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S ALDER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164267, 39.919883 ] } }, +{ "type": "Feature", "properties": { "location": "1230 SUMMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159817, 39.957112 ] } }, +{ "type": "Feature", "properties": { "location": "3846 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.199139087076105, 39.961436159608802 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143882, 39.969778 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143943, 39.96973 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188555, 39.958755 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157418, 39.985348 ] } }, +{ "type": "Feature", "properties": { "location": "665 E CORNWALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117937534522895, 39.999147255209003 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163775748443996, 39.9369371381934 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156375, 39.923835 ] } }, +{ "type": "Feature", "properties": { "location": "6200 DICKENS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225856053019101, 39.924176838387801 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178675, 39.937178 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164232, 39.943138 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166447, 39.92185 ] } }, +{ "type": "Feature", "properties": { "location": "4000 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204841935555706, 39.948611855694899 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N NEWKIRK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175516428937001, 40.005323661629902 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167, 39.919048 ] } }, +{ "type": "Feature", "properties": { "location": "1718 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172015621389406, 39.940242970575298 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176340025879398, 40.0035320270309 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHANCELLOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223735, 39.956157 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WALLACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159197, 39.964998 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197317, 39.957493 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155658, 39.929375 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155683, 39.929203 ] } }, +{ "type": "Feature", "properties": { "location": "200 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234860645026004, 39.964797187948498 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090813, 40.006925 ] } }, +{ "type": "Feature", "properties": { "location": "5100 ROCHELLE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210655157061097, 40.0170090335643 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N SYDENHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16104, 39.976105 ] } }, +{ "type": "Feature", "properties": { "location": "5800 COLGATE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102533230407104, 40.042298384526497 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155448, 39.984517 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171013, 39.938755 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196367372831503, 39.934716375698997 ] } }, +{ "type": "Feature", "properties": { "location": "2600 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188020303558702, 39.937164090118301 ] } }, +{ "type": "Feature", "properties": { "location": "4501 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212788122139699, 39.969625654150398 ] } }, +{ "type": "Feature", "properties": { "location": "2900 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126215283361006, 39.9942111413256 ] } }, +{ "type": "Feature", "properties": { "location": "221 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142333, 39.961193 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161933, 39.94274 ] } }, +{ "type": "Feature", "properties": { "location": "5431 SUMMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229720805651297, 39.964522804028199 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167203, 39.931465 ] } }, +{ "type": "Feature", "properties": { "location": "4611 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148070681553605, 40.023757753170997 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163548, 39.943828 ] } }, +{ "type": "Feature", "properties": { "location": "4800 SANSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218452858667902, 39.956860448694798 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "617 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153053, 39.941758 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158302, 39.9628 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153945060507994, 39.982820771933397 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225872, 40.029638 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156352, 39.960762 ] } }, +{ "type": "Feature", "properties": { "location": "620 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188875087779905, 39.965259974954201 ] } }, +{ "type": "Feature", "properties": { "location": "100 W WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138718, 39.966592 ] } }, +{ "type": "Feature", "properties": { "location": "5400 DISCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080774113352902, 40.028712277559798 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1396512492949, 40.011697459397503 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151893, 39.941443 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152142, 39.928383 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 9TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154251349966501, 39.955505080735897 ] } }, +{ "type": "Feature", "properties": { "location": "1238 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235120007146406, 39.971185535528598 ] } }, +{ "type": "Feature", "properties": { "location": "6000 WAYNE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183643679675797, 40.034488599344897 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142385, 39.96126 ] } }, +{ "type": "Feature", "properties": { "location": "200 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141765, 39.960658 ] } }, +{ "type": "Feature", "properties": { "location": "200 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141805, 39.960672 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090837, 40.007658 ] } }, +{ "type": "Feature", "properties": { "location": "1500 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16879, 39.940762 ] } }, +{ "type": "Feature", "properties": { "location": "2700 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181285, 39.970523 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BUCKNELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185313465198902, 39.927018915684997 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "300 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143287, 39.961367 ] } }, +{ "type": "Feature", "properties": { "location": "700 AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142023, 39.962735 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178089557315005, 39.971246140363597 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173339040144498, 39.924323270472797 ] } }, +{ "type": "Feature", "properties": { "location": "2399 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184155735170705, 39.931266771508398 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144488, 39.96832 ] } }, +{ "type": "Feature", "properties": { "location": "500 W THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145557, 39.971553 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142352, 39.97001 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161963, 39.942745 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157708, 39.923308 ] } }, +{ "type": "Feature", "properties": { "location": "400 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1543505694506, 39.921919685602901 ] } }, +{ "type": "Feature", "properties": { "location": "1219 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158405, 39.962607 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171025, 39.938792 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171764355704198, 39.930285819674303 ] } }, +{ "type": "Feature", "properties": { "location": "2800 WATERLOO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131923344691202, 39.993414172869102 ] } }, +{ "type": "Feature", "properties": { "location": "5200 KERSHAW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226945551075701, 39.9735424992597 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134313, 39.972377 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137482, 39.968218 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137607, 39.9681 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166783, 39.917582 ] } }, +{ "type": "Feature", "properties": { "location": "1800 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174288, 39.93385 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180417, 39.971563 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160972, 39.95056 ] } }, +{ "type": "Feature", "properties": { "location": "6500 CASTOR AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076142, 40.040643 ] } }, +{ "type": "Feature", "properties": { "location": "2701 S BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171547925723701, 39.915510132598399 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16107, 39.972223 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161983, 39.97113 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "2900 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112027, 39.986223 ] } }, +{ "type": "Feature", "properties": { "location": "2903 N TAYLOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170942073631593, 39.9999976042687 ] } }, +{ "type": "Feature", "properties": { "location": "860 LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144983, 39.965427 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157437, 39.985435 ] } }, +{ "type": "Feature", "properties": { "location": "7300 LEON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041807, 40.038083 ] } }, +{ "type": "Feature", "properties": { "location": "3900 DEXTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213501605807494, 40.022750832170203 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BUTTONWOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161637, 39.96152 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S JESSUP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165823, 39.920093 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132937, 39.968838 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159543212185397, 39.917949879625802 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N 57TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235700339879003, 39.978483804109402 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 62ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225970967977901, 39.924684595537201 ] } }, +{ "type": "Feature", "properties": { "location": "800 ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143628, 39.963945 ] } }, +{ "type": "Feature", "properties": { "location": "4600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211166128814298, 39.945192055643801 ] } }, +{ "type": "Feature", "properties": { "location": "3500 RYAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.04127, 40.037557 ] } }, +{ "type": "Feature", "properties": { "location": "742 CHURCH LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1614922972351, 40.043128423595398 ] } }, +{ "type": "Feature", "properties": { "location": "300 SNYDER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152092541024601, 39.922112007176402 ] } }, +{ "type": "Feature", "properties": { "location": "4600 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117729166988298, 40.019912280046697 ] } }, +{ "type": "Feature", "properties": { "location": "4600 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117729166988298, 40.019912280046697 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18287, 39.942237 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149257, 39.939552 ] } }, +{ "type": "Feature", "properties": { "location": "1712 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171677, 39.94026 ] } }, +{ "type": "Feature", "properties": { "location": "800 S CECIL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238925750023895, 39.9480870781859 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156828, 39.96084 ] } }, +{ "type": "Feature", "properties": { "location": "3300 SAINT VINCENT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0458, 40.03699 ] } }, +{ "type": "Feature", "properties": { "location": "5437 MULBERRY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070804757076502, 40.021720881286903 ] } }, +{ "type": "Feature", "properties": { "location": "1900 FITZWATER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175338, 39.943068 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N FRANKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138624302309196, 40.019426015622997 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164923, 39.921287 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SHARP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212932, 40.019765 ] } }, +{ "type": "Feature", "properties": { "location": "200 W CAMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134512070830596, 39.994518370186803 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140930275007506, 40.011861859392901 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 61ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226473483932693, 39.927372825749003 ] } }, +{ "type": "Feature", "properties": { "location": "4300 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217776206719606, 40.027421995234398 ] } }, +{ "type": "Feature", "properties": { "location": "10120 JEANES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.030961780126603, 40.109593202461298 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152608, 39.926358 ] } }, +{ "type": "Feature", "properties": { "location": "432 GASKILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150268, 39.942357 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150533015864397, 39.9579482864591 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N LAWRENCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132325, 40.024383 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15922, 39.977205 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174754906039595, 39.970265735694497 ] } }, +{ "type": "Feature", "properties": { "location": "5148 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22438, 39.959365 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168187434144102, 39.992824352982097 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N ORKNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140232395757906, 39.989689052294601 ] } }, +{ "type": "Feature", "properties": { "location": "600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157307, 39.92023 ] } }, +{ "type": "Feature", "properties": { "location": "3600 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194743, 39.963082 ] } }, +{ "type": "Feature", "properties": { "location": "6715 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073468, 40.043772 ] } }, +{ "type": "Feature", "properties": { "location": "2400 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177742, 39.971087 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171228, 39.919557 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127385, 39.976887 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170975, 39.921892 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S SHERIDAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155492, 39.933218 ] } }, +{ "type": "Feature", "properties": { "location": "3222 N PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133660345495301, 39.999926481514997 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "2150 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179012, 39.942067 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086533, 40.013933 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S CLEVELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173502, 39.939973 ] } }, +{ "type": "Feature", "properties": { "location": "1608 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16933, 39.943202 ] } }, +{ "type": "Feature", "properties": { "location": "1608 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169327, 39.943197 ] } }, +{ "type": "Feature", "properties": { "location": "1800 FONTAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163358106785296, 39.984951470324503 ] } }, +{ "type": "Feature", "properties": { "location": "4057 N 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141596776629399, 40.013584753756597 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152565, 39.942395 ] } }, +{ "type": "Feature", "properties": { "location": "42 S 15TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165472, 39.951303 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154018246213298, 39.919580634062001 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 56TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228011758320406, 39.939743898154497 ] } }, +{ "type": "Feature", "properties": { "location": "700 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156855194355899, 39.930231689330199 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160995, 39.968493 ] } }, +{ "type": "Feature", "properties": { "location": "500 BURGESS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.025132965248702, 40.1167164355899 ] } }, +{ "type": "Feature", "properties": { "location": "4800 PECHIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225468445741598, 40.037424380011899 ] } }, +{ "type": "Feature", "properties": { "location": "200 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142607, 39.962257 ] } }, +{ "type": "Feature", "properties": { "location": "4600 HEDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.082945104812495, 40.013831585552403 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SPRING GARDEN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159282, 39.961935 ] } }, +{ "type": "Feature", "properties": { "location": "2912 NICHOLAS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182825549784198, 39.981404319853702 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "6300 CHEROKEE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182365186400304, 40.0422835497045 ] } }, +{ "type": "Feature", "properties": { "location": "1810 W ALBANUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154167837518202, 40.029560499299699 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159428, 39.924715 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160082, 39.984017 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W FLORA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184181216295201, 39.975145038392498 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S SYDENHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169722, 39.936287 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160941366333802, 39.968544012042102 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ANNIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173483, 39.937128 ] } }, +{ "type": "Feature", "properties": { "location": "4557 BOONE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223588069296099, 40.031027582263 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157848, 39.923325 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157882, 39.923295 ] } }, +{ "type": "Feature", "properties": { "location": "5028 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222912227294898, 39.954845607963698 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SAINT JAMES ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161988, 39.948308 ] } }, +{ "type": "Feature", "properties": { "location": "400 MOYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130012, 39.971555 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243433548444997, 39.958867280161201 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108779703617003, 39.996269105585199 ] } }, +{ "type": "Feature", "properties": { "location": "4000 N MARSHALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138491896493704, 40.013083229471299 ] } }, +{ "type": "Feature", "properties": { "location": "7500 LEON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.037089287633904, 40.040261151336303 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18812, 39.961085 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164658498483007, 39.981444208252597 ] } }, +{ "type": "Feature", "properties": { "location": "4099 BARRINGER ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203778, 39.9603 ] } }, +{ "type": "Feature", "properties": { "location": "4032 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203827, 39.96021 ] } }, +{ "type": "Feature", "properties": { "location": "300 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143992, 39.965613 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150939644683206, 39.978057818268702 ] } }, +{ "type": "Feature", "properties": { "location": "700 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153817, 39.944915 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1537974513367, 39.997649845165697 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193913, 39.957732 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17941, 39.971458 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 26TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179378, 39.97146 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169269724172295, 39.928085368665201 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "1816 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175553556496794, 39.9314094157249 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166798, 39.937163 ] } }, +{ "type": "Feature", "properties": { "location": "2549 MEREDITH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179246934559202, 39.968403499901598 ] } }, +{ "type": "Feature", "properties": { "location": "452 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131112148426098, 39.974473839710697 ] } }, +{ "type": "Feature", "properties": { "location": "452 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131112148426098, 39.974473839710697 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117328, 39.975993 ] } }, +{ "type": "Feature", "properties": { "location": "6525 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234953699091093, 39.925139798670997 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160197, 39.984 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070513, 40.046448 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "5326 OSAGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22912, 39.953402 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13835, 39.964192 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117183, 39.976022 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 21ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179873095612805, 39.9317408353728 ] } }, +{ "type": "Feature", "properties": { "location": "3200 G ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115396282731197, 39.996998765729401 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168347, 39.943637 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N FRONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130211055352007, 39.994177508307303 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WILLINGTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16189, 39.97924 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156907, 39.977085 ] } }, +{ "type": "Feature", "properties": { "location": "720 S 52ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227372798802094, 39.9480259881324 ] } }, +{ "type": "Feature", "properties": { "location": "1213 CREASE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132837, 39.969945 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CREASE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132852, 39.969882 ] } }, +{ "type": "Feature", "properties": { "location": "200 N HOBART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237320189141499, 39.965490709786202 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S NORWOOD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1813059855576, 39.927749741069803 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226428, 40.027845 ] } }, +{ "type": "Feature", "properties": { "location": "5800 OLD YORK RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144377, 40.042205 ] } }, +{ "type": "Feature", "properties": { "location": "100 ALLEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137045, 39.966427 ] } }, +{ "type": "Feature", "properties": { "location": "400 THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1439, 39.971382 ] } }, +{ "type": "Feature", "properties": { "location": "5929 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1292456507108, 40.042189895978602 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182611070365994, 39.970891215557899 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153598, 39.92894 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 51ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223428, 39.957407 ] } }, +{ "type": "Feature", "properties": { "location": "3300 I ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.110904970637506, 39.9981516091961 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165275, 39.934777 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W DAUPHIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156347373131595, 39.987933741196699 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139348, 39.959122 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160099296902004, 39.983849577512302 ] } }, +{ "type": "Feature", "properties": { "location": "1199 DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158302, 39.934802 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 4TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146065, 39.955995 ] } }, +{ "type": "Feature", "properties": { "location": "3900 MANOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212815, 40.02156 ] } }, +{ "type": "Feature", "properties": { "location": "147 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215047, 40.021932 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174132, 39.92469 ] } }, +{ "type": "Feature", "properties": { "location": "6036 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242528097151407, 39.961386236577503 ] } }, +{ "type": "Feature", "properties": { "location": "5500 HUNTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232471905832, 39.977571494189299 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158133, 39.937428 ] } }, +{ "type": "Feature", "properties": { "location": "600 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100624372943301, 40.040243907613302 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163768909327601, 39.943880565987399 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SANSOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.201264225329794, 39.954727613456299 ] } }, +{ "type": "Feature", "properties": { "location": "1200 NECTARINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1591, 39.961483 ] } }, +{ "type": "Feature", "properties": { "location": "300 S FAWN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161652, 39.945728 ] } }, +{ "type": "Feature", "properties": { "location": "300 S FAWN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161663, 39.945707 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105755, 39.996493 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S GARNET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17845, 39.924237 ] } }, +{ "type": "Feature", "properties": { "location": "1116 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15668, 39.936765 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GREEN LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176015, 39.965662 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12295, 39.973692 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122978, 39.973738 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151632, 39.94157 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16085, 39.951273 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16111, 39.951232 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N GARNET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162581302363506, 39.997377906645497 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MASTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160852122883, 39.974751754272802 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158703, 39.959207 ] } }, +{ "type": "Feature", "properties": { "location": "199 N WOODSTOCK ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17292, 39.957595 ] } }, +{ "type": "Feature", "properties": { "location": "60 CHURCH LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171003627298603, 40.034921817857303 ] } }, +{ "type": "Feature", "properties": { "location": "5832 MORTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170937708131703, 40.041767139662603 ] } }, +{ "type": "Feature", "properties": { "location": "1630 S ETTING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190364633541904, 39.932686169208999 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "300 GASKILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148785, 39.942225 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128307, 39.96722 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127953, 39.967327 ] } }, +{ "type": "Feature", "properties": { "location": "130 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173938611328893, 40.038159691523902 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197768, 39.960052 ] } }, +{ "type": "Feature", "properties": { "location": "26 CHURCH LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171003627298603, 40.034921817857303 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159117, 39.920493 ] } }, +{ "type": "Feature", "properties": { "location": "200 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142327, 39.96219 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155468, 39.98456 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155012, 39.929538 ] } }, +{ "type": "Feature", "properties": { "location": "5347 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143502, 40.034905 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170467, 39.96569 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OLD YORK RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146515, 40.027457 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142165, 39.966575 ] } }, +{ "type": "Feature", "properties": { "location": "5600 HADFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317950948228, 39.942357061142502 ] } }, +{ "type": "Feature", "properties": { "location": "2900 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111955, 39.986228 ] } }, +{ "type": "Feature", "properties": { "location": "900 MOUNTAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161738, 39.928878 ] } }, +{ "type": "Feature", "properties": { "location": "800 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160205, 39.928167 ] } }, +{ "type": "Feature", "properties": { "location": "900 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160919825913894, 39.928689558008898 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156368, 39.91626 ] } }, +{ "type": "Feature", "properties": { "location": "1200 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167548, 39.919022 ] } }, +{ "type": "Feature", "properties": { "location": "1 E ARMAT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173225922721798, 40.035500567559197 ] } }, +{ "type": "Feature", "properties": { "location": "6100 WAYNE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184877071784896, 40.0352095801206 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155282, 39.984445 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161292, 39.951215 ] } }, +{ "type": "Feature", "properties": { "location": "1928 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161877, 39.983292 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROBAT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120168890577801, 40.029036355995302 ] } }, +{ "type": "Feature", "properties": { "location": "813 N 49TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218541761942305, 39.966427979547397 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175622, 39.92016 ] } }, +{ "type": "Feature", "properties": { "location": "48 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164298523013301, 40.030578741590404 ] } }, +{ "type": "Feature", "properties": { "location": "6500 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232792966578799, 39.923318525425003 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164282, 39.942743 ] } }, +{ "type": "Feature", "properties": { "location": "3340 JASPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.108349308605099, 39.9971974271172 ] } }, +{ "type": "Feature", "properties": { "location": "716 MARVINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161317, 39.941687 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104827419920596, 39.995849268429602 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206302, 39.954483 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171337, 39.917308 ] } }, +{ "type": "Feature", "properties": { "location": "2400 W MONTGOMERY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174041999028901, 39.982351568200599 ] } }, +{ "type": "Feature", "properties": { "location": "200 SEVILLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212995381035896, 40.022501017011301 ] } }, +{ "type": "Feature", "properties": { "location": "300 BURNSIDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214049194712203, 40.024916876614697 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214005, 40.02321 ] } }, +{ "type": "Feature", "properties": { "location": "3900 DEXTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213501605807494, 40.022750832170203 ] } }, +{ "type": "Feature", "properties": { "location": "4012 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214328751125194, 40.023652320031097 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21389, 40.023303 ] } }, +{ "type": "Feature", "properties": { "location": "5300 CLARIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105782350860196, 40.033147541918503 ] } }, +{ "type": "Feature", "properties": { "location": "700 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116087137108593, 40.001585279176297 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158953, 39.966703 ] } }, +{ "type": "Feature", "properties": { "location": "360 BURNSIDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214049194712203, 40.024916876614697 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "1730 S AVONDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241367251961904, 39.929912890529103 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163523, 39.9451 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182848487988693, 39.995189741029698 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 68TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237802339224004, 39.922199727610199 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 68TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237802339224004, 39.922199727610199 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 68TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237802339224004, 39.922199727610199 ] } }, +{ "type": "Feature", "properties": { "location": "6200 OAKLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.098978981448695, 40.048598901983397 ] } }, +{ "type": "Feature", "properties": { "location": "5100 RANSTEAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225, 39.958978 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155535, 39.921327 ] } }, +{ "type": "Feature", "properties": { "location": "4000 MARKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099294947135903, 40.008023178686798 ] } }, +{ "type": "Feature", "properties": { "location": "3201 UNRUH AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.054062424041206, 40.032146045456301 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S FRAZIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227230171103002, 39.9375768853888 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178089557315005, 39.971246140363597 ] } }, +{ "type": "Feature", "properties": { "location": "2900 S FELTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222310373834802, 39.9213775715967 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073512, 40.043658 ] } }, +{ "type": "Feature", "properties": { "location": "970 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087745643776898, 40.0330053170144 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22441, 40.0266 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224383, 40.026765 ] } }, +{ "type": "Feature", "properties": { "location": "2400 E ALLEGHENY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105188, 39.987138 ] } }, +{ "type": "Feature", "properties": { "location": "800 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091025852555404, 40.034293984669098 ] } }, +{ "type": "Feature", "properties": { "location": "700 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126393, 39.972647 ] } }, +{ "type": "Feature", "properties": { "location": "1022 S 4TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150517397921107, 39.935606957585101 ] } }, +{ "type": "Feature", "properties": { "location": "1199 DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158323, 39.934748 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233186011450002, 39.919113482363798 ] } }, +{ "type": "Feature", "properties": { "location": "7036 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "2700 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147788, 39.993722 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHRISTIAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17108, 39.940638 ] } }, +{ "type": "Feature", "properties": { "location": "1000 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156033, 39.96013 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15274, 39.962452 ] } }, +{ "type": "Feature", "properties": { "location": "600 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154263, 39.933712 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196918, 39.960853 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 63RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228887226671304, 39.925009362716899 ] } }, +{ "type": "Feature", "properties": { "location": "1641 S ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226785009021498, 39.937893641349397 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227018414596103, 39.942084266968202 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 66TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234166465670896, 39.923523921334301 ] } }, +{ "type": "Feature", "properties": { "location": "721 DALY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159404833015103, 39.920961081311198 ] } }, +{ "type": "Feature", "properties": { "location": "5200 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216478859664207, 39.938130733969999 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 62ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244222875267596, 39.964784728301503 ] } }, +{ "type": "Feature", "properties": { "location": "3901 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200316548392394, 39.960534383626403 ] } }, +{ "type": "Feature", "properties": { "location": "1200 GREEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158508, 39.962988 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226073102746895, 39.934412452547697 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175727, 39.948005 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228246109533799, 39.936858316644901 ] } }, +{ "type": "Feature", "properties": { "location": "7224 N 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147297133065294, 40.064615405298099 ] } }, +{ "type": "Feature", "properties": { "location": "500 CANTRELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "500 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "500 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "5900 BELMAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232404639496195, 39.935625107893401 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234022, 39.926288 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153255, 39.934273 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179249308647201, 39.9670232703834 ] } }, +{ "type": "Feature", "properties": { "location": "3000 MEMPHIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.111775, 39.986393 ] } }, +{ "type": "Feature", "properties": { "location": "799 N 25TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17819, 39.96933 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CASTOR AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.097835, 40.011948 ] } }, +{ "type": "Feature", "properties": { "location": "6804 PASCHALL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238028287658807, 39.9211161758017 ] } }, +{ "type": "Feature", "properties": { "location": "7100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044617, 40.034948 ] } }, +{ "type": "Feature", "properties": { "location": "441 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153826460525593, 39.924364113415301 ] } }, +{ "type": "Feature", "properties": { "location": "4000 MARKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099294947135903, 40.008023178686798 ] } }, +{ "type": "Feature", "properties": { "location": "200 ERICA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.040944920656699, 40.116487384832503 ] } }, +{ "type": "Feature", "properties": { "location": "200 ERICA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.040944920656699, 40.116487384832503 ] } }, +{ "type": "Feature", "properties": { "location": "113 ALNUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.039958864852395, 40.117152935769703 ] } }, +{ "type": "Feature", "properties": { "location": "110 ALNUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.039958864852395, 40.117152935769703 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154405, 39.940358 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158211866833994, 40.010971387071102 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155225, 39.984508 ] } }, +{ "type": "Feature", "properties": { "location": "32 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134611224665704, 39.9717297403242 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161545017782203, 39.9735283458986 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "3700 CRESSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212784684631004, 40.018356957214301 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191915, 39.965243 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150761423599505, 39.921304865152301 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "554 N 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16459, 39.963545 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21817, 40.026968 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117262, 39.97612 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117537, 39.9759 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "500 E ASHMEAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160316973341295, 40.037770118497498 ] } }, +{ "type": "Feature", "properties": { "location": "100 LEVERING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224582989786697, 40.026024913591598 ] } }, +{ "type": "Feature", "properties": { "location": "215 S ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234315520075796, 39.957459300003997 ] } }, +{ "type": "Feature", "properties": { "location": "249 S 57TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235625405283002, 39.957621775526597 ] } }, +{ "type": "Feature", "properties": { "location": "4900 OSAGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221444819505606, 39.952159493530402 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142342, 39.970177 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S WATTS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169837, 39.920323 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S WATTS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16978, 39.92039 ] } }, +{ "type": "Feature", "properties": { "location": "4532 HURLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117240584877194, 40.018226869085602 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15486, 39.929523 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 62ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246775120546701, 39.952552083461001 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226448, 40.02784 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165132, 39.927535 ] } }, +{ "type": "Feature", "properties": { "location": "1900 EMERSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.054016760466894, 40.065389802455599 ] } }, +{ "type": "Feature", "properties": { "location": "1900 EMERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.054016760466894, 40.065389802455599 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173339040144498, 39.924323270472797 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173339040144498, 39.924323270472797 ] } }, +{ "type": "Feature", "properties": { "location": "2000 SNYDER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179552759883506, 39.925647236854203 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10174, 40.00884 ] } }, +{ "type": "Feature", "properties": { "location": "200 S MELVILLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212818, 39.95536 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175038, 39.922573 ] } }, +{ "type": "Feature", "properties": { "location": "1800 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173854216149195, 39.936795464638003 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARLBOROUGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132062, 39.970165 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214613238467905, 40.028512966070998 ] } }, +{ "type": "Feature", "properties": { "location": "3900 DEXTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213501605807494, 40.022750832170203 ] } }, +{ "type": "Feature", "properties": { "location": "3799 CRESSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212977, 40.018672 ] } }, +{ "type": "Feature", "properties": { "location": "4200 TERRACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2182081934466, 40.026102644809903 ] } }, +{ "type": "Feature", "properties": { "location": "4223 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215802550019504, 40.0265184750914 ] } }, +{ "type": "Feature", "properties": { "location": "181 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "6249 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246369066741195, 39.959538635384099 ] } }, +{ "type": "Feature", "properties": { "location": "5792 HUNTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163775748443996, 39.9369371381934 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105315, 39.996772 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224402, 40.028182 ] } }, +{ "type": "Feature", "properties": { "location": "211 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "6600 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235898990721395, 39.9244707588648 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231874978413003, 39.922547390890102 ] } }, +{ "type": "Feature", "properties": { "location": "4900 PINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220790311195202, 39.952858868338197 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CHERRY ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174508, 39.956855 ] } }, +{ "type": "Feature", "properties": { "location": "800 W BUTLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141670286803404, 40.009643343842299 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143743, 40.042398 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115405, 39.994825 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 44TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209785696662493, 39.956338134242998 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162427, 39.965345 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15568, 39.929343 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KENILWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162942, 39.942098 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S AVONDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241367251961904, 39.929912890529103 ] } }, +{ "type": "Feature", "properties": { "location": "19 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142112092657001, 39.949889992160301 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 49TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220002, 39.954287 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W CHAMPLOST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13743, 40.043732 ] } }, +{ "type": "Feature", "properties": { "location": "1305 S BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167628, 39.933842 ] } }, +{ "type": "Feature", "properties": { "location": "111 E INDIANA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129667604773601, 39.995429869391401 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192222, 39.9521 ] } }, +{ "type": "Feature", "properties": { "location": "3300 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114978, 39.999315 ] } }, +{ "type": "Feature", "properties": { "location": "400 E FLORA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128832, 39.971283 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151205, 39.984065 ] } }, +{ "type": "Feature", "properties": { "location": "400 VOLLMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155474293425698, 39.916665681953397 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CECIL B MOORE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164365, 39.9795 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W MONTGOMERY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164330246081505, 39.981092571123398 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156400961045605, 40.000798151614902 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159205, 39.976802 ] } }, +{ "type": "Feature", "properties": { "location": "600 BIGLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158916766864607, 39.912579164320398 ] } }, +{ "type": "Feature", "properties": { "location": "500 N ALLISON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231422933208705, 39.9682102076072 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176108, 39.948003 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160873, 39.92118 ] } }, +{ "type": "Feature", "properties": { "location": "2600 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317923606129, 39.917938822517002 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MOYAMENSING RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15254, 39.923408 ] } }, +{ "type": "Feature", "properties": { "location": "1017 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164837, 39.919522 ] } }, +{ "type": "Feature", "properties": { "location": "2700 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131266217413199, 39.991752396303198 ] } }, +{ "type": "Feature", "properties": { "location": "2900 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184450692831007, 39.972662953187601 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117115, 39.976102 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117073, 39.976088 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1174, 39.975917 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117393, 39.975937 ] } }, +{ "type": "Feature", "properties": { "location": "100 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14952, 39.925513 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15508, 39.954322 ] } }, +{ "type": "Feature", "properties": { "location": "2987 RICHMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106701840652804, 39.980221207600799 ] } }, +{ "type": "Feature", "properties": { "location": "3000 MEMPHIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.111822, 39.986385 ] } }, +{ "type": "Feature", "properties": { "location": "2400 SEYBERT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175959670985094, 39.975937244547403 ] } }, +{ "type": "Feature", "properties": { "location": "100 MAYLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177970219773798, 40.044957445014603 ] } }, +{ "type": "Feature", "properties": { "location": "8238 DORCAS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.060540526205301, 40.0699705028414 ] } }, +{ "type": "Feature", "properties": { "location": "1318 HOWARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146898, 39.930755 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 29TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1805509795647, 39.988020224573503 ] } }, +{ "type": "Feature", "properties": { "location": "714 W LEHIGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144148743215794, 39.992592693619599 ] } }, +{ "type": "Feature", "properties": { "location": "700 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148557851455493, 39.9704421314078 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175793, 39.948023 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17552, 39.954857 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177355, 39.952625 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17239, 39.947703 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163905, 39.944883 ] } }, +{ "type": "Feature", "properties": { "location": "1200 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164607, 39.93753 ] } }, +{ "type": "Feature", "properties": { "location": "6400 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234267, 39.925672 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227013821463203, 39.9358202863434 ] } }, +{ "type": "Feature", "properties": { "location": "1200 BUTTONWOOD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159502, 39.961157 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114267, 39.9993 ] } }, +{ "type": "Feature", "properties": { "location": "700 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159819306267707, 39.916706806100898 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 38TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19767, 39.957387 ] } }, +{ "type": "Feature", "properties": { "location": "300 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152917232308994, 39.917092675955402 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175257, 39.94713 ] } }, +{ "type": "Feature", "properties": { "location": "7630 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.060752, 40.05717 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159805, 39.974628 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127917, 39.967563 ] } }, +{ "type": "Feature", "properties": { "location": "1500 E BERKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128315, 39.976385 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15562, 39.929213 ] } }, +{ "type": "Feature", "properties": { "location": "3200 B ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125065, 39.999492 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157172889510406, 39.954789774974103 ] } }, +{ "type": "Feature", "properties": { "location": "809 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238925750023895, 39.9480870781859 ] } }, +{ "type": "Feature", "properties": { "location": "2027 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161515, 39.984848 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153535, 39.929363 ] } }, +{ "type": "Feature", "properties": { "location": "6300 SAYBROOK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232415, 39.925987 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226405, 40.027822 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226455, 40.027808 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226325, 40.027717 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226345, 40.027778 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N FRONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130211055352007, 39.994177508307303 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ELLSWORTH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1733, 39.937692 ] } }, +{ "type": "Feature", "properties": { "location": "5200 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227632, 39.95542 ] } }, +{ "type": "Feature", "properties": { "location": "300 S BOUVIER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17097, 39.946998 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188363, 39.958855 ] } }, +{ "type": "Feature", "properties": { "location": "200 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151285206691995, 39.916878358819602 ] } }, +{ "type": "Feature", "properties": { "location": "199 S BONSALL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17891, 39.951558 ] } }, +{ "type": "Feature", "properties": { "location": "100 POLLARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138105, 39.965805 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153698, 39.959873 ] } }, +{ "type": "Feature", "properties": { "location": "5341 WESTMINSTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227395573224001, 39.967919651055297 ] } }, +{ "type": "Feature", "properties": { "location": "5300 WESTMINSTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227395573224001, 39.967919651055297 ] } }, +{ "type": "Feature", "properties": { "location": "5312 WESTMINSTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227395573224001, 39.967919651055297 ] } }, +{ "type": "Feature", "properties": { "location": "425 N 61ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241368670365205, 39.9687429429218 ] } }, +{ "type": "Feature", "properties": { "location": "405 N SALFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238632812798201, 39.968770236385502 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152305, 40.007465 ] } }, +{ "type": "Feature", "properties": { "location": "900 N RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146222, 39.968815 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CLARISSA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160502604924204, 40.020309288938797 ] } }, +{ "type": "Feature", "properties": { "location": "600 CALLOWHILL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150305, 39.958263 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158211866833994, 40.010971387071102 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155916184470499, 39.958810576146398 ] } }, +{ "type": "Feature", "properties": { "location": "200 W CALVERT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124607347837994, 40.039773192933602 ] } }, +{ "type": "Feature", "properties": { "location": "301 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19257, 39.956853 ] } }, +{ "type": "Feature", "properties": { "location": "5800 AKRON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077762255074006, 40.028963820215701 ] } }, +{ "type": "Feature", "properties": { "location": "199 W CHEW AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1248151985085, 40.037284896730696 ] } }, +{ "type": "Feature", "properties": { "location": "5100 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132003044710103, 40.029547782580103 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146358, 40.040817 ] } }, +{ "type": "Feature", "properties": { "location": "2024 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17052, 39.965073 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236397474778002, 39.963426788595299 ] } }, +{ "type": "Feature", "properties": { "location": "2623 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1884560913999, 39.935145621629701 ] } }, +{ "type": "Feature", "properties": { "location": "2600 GERRITT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1884560913999, 39.935145621629701 ] } }, +{ "type": "Feature", "properties": { "location": "4300 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208612, 39.958483 ] } }, +{ "type": "Feature", "properties": { "location": "2901 HOLME AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.027706636604194, 40.056588350645001 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MONTAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.058785366106605, 40.024669426043502 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15058, 39.919238 ] } }, +{ "type": "Feature", "properties": { "location": "1645 BRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075502444909006, 40.022007674473102 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.959662 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 3RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147427072965002, 39.942228635881001 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159672, 39.974723 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "136 N DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242920393407701, 39.964625138066602 ] } }, +{ "type": "Feature", "properties": { "location": "2555 S DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161986321369895, 39.917620767331499 ] } }, +{ "type": "Feature", "properties": { "location": "2555 S DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161986321369895, 39.917620767331499 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROBBINS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101861164367904, 40.051296699454802 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086232, 40.013685 ] } }, +{ "type": "Feature", "properties": { "location": "3100 MEMPHIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.109175, 39.987787 ] } }, +{ "type": "Feature", "properties": { "location": "1399 W DUNCANNON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145682, 40.03218 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08763, 40.014475 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156190010045904, 39.984621711000997 ] } }, +{ "type": "Feature", "properties": { "location": "4200 SANSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208445, 39.95578 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134198, 40.000867 ] } }, +{ "type": "Feature", "properties": { "location": "425 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.07351, 40.043727 ] } }, +{ "type": "Feature", "properties": { "location": "100 W WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138677, 39.966665 ] } }, +{ "type": "Feature", "properties": { "location": "2700 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18234, 39.971795 ] } }, +{ "type": "Feature", "properties": { "location": "2700 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181348365320005, 39.971651771260802 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163167, 39.922288 ] } }, +{ "type": "Feature", "properties": { "location": "400 RUSCOMB ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132453, 40.027297 ] } }, +{ "type": "Feature", "properties": { "location": "541 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502227031296, 39.933105053217403 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.091047, 40.007535 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187989848690293, 39.9588431484175 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142302, 39.961122 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141325, 39.965345 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125322, 39.970755 ] } }, +{ "type": "Feature", "properties": { "location": "800 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158055, 39.936748 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162075, 39.96397 ] } }, +{ "type": "Feature", "properties": { "location": "5251 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2265025605045, 39.957075778773003 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179807, 39.973447 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086297, 40.013782 ] } }, +{ "type": "Feature", "properties": { "location": "300 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152132, 39.92833 ] } }, +{ "type": "Feature", "properties": { "location": "3056 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "100 E CLEARFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129343677754903, 39.996921583508097 ] } }, +{ "type": "Feature", "properties": { "location": "6100 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243061756618701, 39.962244220818 ] } }, +{ "type": "Feature", "properties": { "location": "5400 HUNTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230531446798295, 39.977911527670997 ] } }, +{ "type": "Feature", "properties": { "location": "4621 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148070681553605, 40.023757753170997 ] } }, +{ "type": "Feature", "properties": { "location": "5801 MORTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170937708131703, 40.041767139662603 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101763, 40.008518 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117217, 39.975935 ] } }, +{ "type": "Feature", "properties": { "location": "43 N RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227810083005593, 39.961165788692199 ] } }, +{ "type": "Feature", "properties": { "location": "100 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215997, 40.023653 ] } }, +{ "type": "Feature", "properties": { "location": "5859 WALTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239994780185597, 39.951074446819199 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 49TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219374896850297, 39.973056464556301 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191958, 39.956823 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164032, 39.930935 ] } }, +{ "type": "Feature", "properties": { "location": "3000 MARTHA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113401350851305, 39.989260851658003 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MCKINLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080084410139506, 40.037835928824499 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LARDNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0795396301408, 40.035554269592197 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 31ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186166211675996, 39.977366298206498 ] } }, +{ "type": "Feature", "properties": { "location": "11 N RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227810083005593, 39.961165788692199 ] } }, +{ "type": "Feature", "properties": { "location": "1600 LEWIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.095875502412895, 40.007256917381298 ] } }, +{ "type": "Feature", "properties": { "location": "2080 ALBRIGHT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099083626888103, 39.998725147744103 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178473318287104, 39.922957168176403 ] } }, +{ "type": "Feature", "properties": { "location": "400 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152482, 39.927218 ] } }, +{ "type": "Feature", "properties": { "location": "831 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160619363168493, 39.922717086238201 ] } }, +{ "type": "Feature", "properties": { "location": "800 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160619363168493, 39.922717086238201 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "700 MOUNTAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158552, 39.928457 ] } }, +{ "type": "Feature", "properties": { "location": "1733 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174235957484697, 39.995116588785898 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174235957484697, 39.995116588785898 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174235957484697, 39.995116588785898 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1486049441001, 39.988743453486101 ] } }, +{ "type": "Feature", "properties": { "location": "1600 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1603648318994, 39.986322712978101 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SEYBERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1614535255124, 39.973926301837601 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168187434144102, 39.992824352982097 ] } }, +{ "type": "Feature", "properties": { "location": "2128 S 58TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225224791299595, 39.9329487932335 ] } }, +{ "type": "Feature", "properties": { "location": "2600 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317923606129, 39.917938822517002 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168153, 39.939765 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "6438 PASCHALL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232500270685406, 39.924997091097801 ] } }, +{ "type": "Feature", "properties": { "location": "100 LEVERING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221863, 40.02723 ] } }, +{ "type": "Feature", "properties": { "location": "200 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163174777779105, 39.949033689181903 ] } }, +{ "type": "Feature", "properties": { "location": "1646 DOUNTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153653054762898, 40.0181050242849 ] } }, +{ "type": "Feature", "properties": { "location": "300 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14245, 39.969193 ] } }, +{ "type": "Feature", "properties": { "location": "900 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15962, 39.934908 ] } }, +{ "type": "Feature", "properties": { "location": "2722 S SHERIDAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159356250711696, 39.9145665876867 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 27TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188931791848702, 39.9366730979715 ] } }, +{ "type": "Feature", "properties": { "location": "500 HOFFMAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155401593027605, 39.924569720754498 ] } }, +{ "type": "Feature", "properties": { "location": "400 HOFFMAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153826460525593, 39.924364113415301 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155038427281397, 39.926224225879999 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BIGLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175098131232403, 39.914654134540598 ] } }, +{ "type": "Feature", "properties": { "location": "3100 GAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105178, 39.987017 ] } }, +{ "type": "Feature", "properties": { "location": "2500 E CLEMENTINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105913, 39.985365 ] } }, +{ "type": "Feature", "properties": { "location": "5300 ARCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226839811781304, 39.961853650488997 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150055084119003, 39.921206374405699 ] } }, +{ "type": "Feature", "properties": { "location": "152 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149915448457705, 39.9205563624474 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152936829495303, 39.935681033067901 ] } }, +{ "type": "Feature", "properties": { "location": "1016 KIMBALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160482484344499, 39.937844928864699 ] } }, +{ "type": "Feature", "properties": { "location": "1000 KIMBALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160482484344499, 39.937844928864699 ] } }, +{ "type": "Feature", "properties": { "location": "600 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194922130445406, 40.034194798394502 ] } }, +{ "type": "Feature", "properties": { "location": "1845 BRUNNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156296739037103, 40.0182251000466 ] } }, +{ "type": "Feature", "properties": { "location": "7810 WHITAKER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070176983811606, 40.064658806045202 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149397, 39.939545 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MOUNTAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161743, 39.92883 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2263, 40.027652 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22631, 40.027728 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153658, 39.959763 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168340278154304, 39.999657792467197 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.104955, 39.997 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104602, 39.996687 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104748, 39.996733 ] } }, +{ "type": "Feature", "properties": { "location": "2400 KIMBALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183878247130494, 39.940731245516297 ] } }, +{ "type": "Feature", "properties": { "location": "312 S 56TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234044923679505, 39.955308195785904 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174767, 39.931295 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174916350542503, 39.970854053890299 ] } }, +{ "type": "Feature", "properties": { "location": "4161 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140765951014103, 40.014950280360097 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153518, 39.92944 ] } }, +{ "type": "Feature", "properties": { "location": "1600 ADAMS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090958, 40.007515 ] } }, +{ "type": "Feature", "properties": { "location": "900 BUTTONWOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153687, 39.960687 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169663, 39.940072 ] } }, +{ "type": "Feature", "properties": { "location": "200 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150213885263994, 39.921863073759503 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WYLIE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166352, 39.969667 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171355, 39.939662 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171197, 39.94009 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154132, 40.003437 ] } }, +{ "type": "Feature", "properties": { "location": "500 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127878, 39.969825 ] } }, +{ "type": "Feature", "properties": { "location": "1 LAUREL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13723, 39.964735 ] } }, +{ "type": "Feature", "properties": { "location": "800 N N FRNT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137085, 39.964723 ] } }, +{ "type": "Feature", "properties": { "location": "1 LAUREL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137272, 39.96475 ] } }, +{ "type": "Feature", "properties": { "location": "1538 GREEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164385, 39.964253 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133233, 39.975838 ] } }, +{ "type": "Feature", "properties": { "location": "330 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188056889150701, 40.0402060406388 ] } }, +{ "type": "Feature", "properties": { "location": "400 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216017592750603, 40.029829748777402 ] } }, +{ "type": "Feature", "properties": { "location": "2700 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131266217413199, 39.991752396303198 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155465, 39.984532 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175045, 39.94726 ] } }, +{ "type": "Feature", "properties": { "location": "3700 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.195267, 39.959762 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129022, 39.972033 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167925, 39.936685 ] } }, +{ "type": "Feature", "properties": { "location": "300 AVON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.032155189403994, 40.116151912634002 ] } }, +{ "type": "Feature", "properties": { "location": "2300 MOUNTAIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184071432821, 39.931688877464403 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 23RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182853921923197, 39.933379398925503 ] } }, +{ "type": "Feature", "properties": { "location": "252 N 32ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187475, 39.959575 ] } }, +{ "type": "Feature", "properties": { "location": "600 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099698519485102, 40.0410411268061 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158378, 39.923763 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.069926599667994, 40.0466266245245 ] } }, +{ "type": "Feature", "properties": { "location": "6400 GREENWAY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234554662594505, 39.9273736210938 ] } }, +{ "type": "Feature", "properties": { "location": "969 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145517, 39.968293 ] } }, +{ "type": "Feature", "properties": { "location": "1201 ARCH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160221976718702, 39.954048344036899 ] } }, +{ "type": "Feature", "properties": { "location": "747N N UBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16914, 39.968357 ] } }, +{ "type": "Feature", "properties": { "location": "234 S 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177748, 39.949483 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155497, 39.92722 ] } }, +{ "type": "Feature", "properties": { "location": "400 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155023, 39.92241 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145465, 39.968265 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145503, 39.968232 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145448, 39.968242 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145485, 39.968275 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14538, 39.968307 ] } }, +{ "type": "Feature", "properties": { "location": "967 N 5TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14542, 39.96811 ] } }, +{ "type": "Feature", "properties": { "location": "1631 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169105528950894, 39.947520599154501 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180488, 39.971587 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101715, 40.008732 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157405, 39.961633 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156587, 39.960633 ] } }, +{ "type": "Feature", "properties": { "location": "210 SEARS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148585061566493, 39.9312941017049 ] } }, +{ "type": "Feature", "properties": { "location": "1500 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162330121276298, 39.969907045523101 ] } }, +{ "type": "Feature", "properties": { "location": "1530 SUSQUEHANNA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127183, 39.976622 ] } }, +{ "type": "Feature", "properties": { "location": "834 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159525105567894, 39.927688267357603 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155212, 39.920797 ] } }, +{ "type": "Feature", "properties": { "location": "2700 S 66TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228529249321397, 39.918762171129003 ] } }, +{ "type": "Feature", "properties": { "location": "3200 W CUMBERLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184328211576599, 39.994614219048501 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161967, 39.95671 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156175, 39.959822 ] } }, +{ "type": "Feature", "properties": { "location": "2200 WATTS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154973, 39.987557 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157868428971199, 40.0125124206468 ] } }, +{ "type": "Feature", "properties": { "location": "3844 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157868428971199, 40.0125124206468 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159507, 39.974943 ] } }, +{ "type": "Feature", "properties": { "location": "600 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152738, 39.943603 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158233, 39.923665 ] } }, +{ "type": "Feature", "properties": { "location": "4500 FLEMING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.222114140580004, 40.030918585895598 ] } }, +{ "type": "Feature", "properties": { "location": "714 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159198, 39.920478 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090802, 40.006837 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162662, 39.924803 ] } }, +{ "type": "Feature", "properties": { "location": "400 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150865, 39.938718 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165072, 39.921208 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W TABOR RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142427, 40.037782 ] } }, +{ "type": "Feature", "properties": { "location": "1117 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156685, 39.962898 ] } }, +{ "type": "Feature", "properties": { "location": "9300 NEIL RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.043093581883198, 40.085036880182798 ] } }, +{ "type": "Feature", "properties": { "location": "2200 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174633, 39.970777 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16074, 39.973417 ] } }, +{ "type": "Feature", "properties": { "location": "200 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14703, 39.938013 ] } }, +{ "type": "Feature", "properties": { "location": "200 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147248, 39.938102 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14123, 39.968873 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165355, 39.950695 ] } }, +{ "type": "Feature", "properties": { "location": "1906 RITTENHOUSE SQ", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173127, 39.949038 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175562, 39.951 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 4TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148977, 39.9428 ] } }, +{ "type": "Feature", "properties": { "location": "3900 DELANCEY ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202056465756797, 39.951064656402998 ] } }, +{ "type": "Feature", "properties": { "location": "1733 PIERCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174417490153601, 39.929191196417698 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MORAVIAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17543, 39.950377 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MORAVIAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175175, 39.950282 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MORAVIAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1753, 39.950925 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "6500 GESNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234154241103198, 39.924462744150603 ] } }, +{ "type": "Feature", "properties": { "location": "299 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163385, 39.947908 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224607, 40.02802 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14239, 39.96111 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N NEWKIRK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175516428937001, 40.005323661629902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N NEWKIRK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175516428937001, 40.005323661629902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N NEWKIRK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175516428937001, 40.005323661629902 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152622, 39.942385 ] } }, +{ "type": "Feature", "properties": { "location": "11987 AUDUBON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.025978374437699, 40.123897847090902 ] } }, +{ "type": "Feature", "properties": { "location": "7600 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.060633, 40.057208 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122968, 39.97374 ] } }, +{ "type": "Feature", "properties": { "location": "410 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1404, 39.968573 ] } }, +{ "type": "Feature", "properties": { "location": "1154 S SYDENHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169592706719996, 39.936514597198901 ] } }, +{ "type": "Feature", "properties": { "location": "1339 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078220703432194, 40.0430232889412 ] } }, +{ "type": "Feature", "properties": { "location": "242 E PENN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165582546277506, 40.035827219265499 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22675, 40.028108 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158075, 39.930408 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159837, 39.974603 ] } }, +{ "type": "Feature", "properties": { "location": "6700 ELMWOOD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233141896668101, 39.920215329967803 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141885, 39.967768 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W LOUDON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147738, 40.025853 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154673, 39.931225 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154678, 39.931223 ] } }, +{ "type": "Feature", "properties": { "location": "800 N UBER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168870127754005, 39.9695373923334 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212662, 39.955442 ] } }, +{ "type": "Feature", "properties": { "location": "6700 KEYSTONE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043527063027597, 40.021964410610899 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S GARNET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176602, 39.932795 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214337, 40.02235 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156773, 39.960935 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139537, 39.956932 ] } }, +{ "type": "Feature", "properties": { "location": "1 JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16291, 39.950608 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091018, 40.007258 ] } }, +{ "type": "Feature", "properties": { "location": "2500 GRAYS FERRY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184837, 39.942115 ] } }, +{ "type": "Feature", "properties": { "location": "2599 CARPENTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18617, 39.941548 ] } }, +{ "type": "Feature", "properties": { "location": "3054 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163922, 39.943895 ] } }, +{ "type": "Feature", "properties": { "location": "2200 E FIRTH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1235012156544, 39.981661141933003 ] } }, +{ "type": "Feature", "properties": { "location": "2902 N BAMBREY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172552018594999, 40.000211146988001 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167338, 39.942455 ] } }, +{ "type": "Feature", "properties": { "location": "3464 KEIM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117123940405904, 40.000928704119097 ] } }, +{ "type": "Feature", "properties": { "location": "7300 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.04044, 40.036822 ] } }, +{ "type": "Feature", "properties": { "location": "1933 S JUNIPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168132, 39.926002 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N 19TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159765981156994, 40.007567946107301 ] } }, +{ "type": "Feature", "properties": { "location": "4600 WALNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21373, 39.955588 ] } }, +{ "type": "Feature", "properties": { "location": "700 W LYCOMING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139485369855294, 40.013973744528897 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180985, 39.97161 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159143, 39.920578 ] } }, +{ "type": "Feature", "properties": { "location": "4000 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204841935555706, 39.948611855694899 ] } }, +{ "type": "Feature", "properties": { "location": "800 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158163, 39.930398 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171228, 39.92075 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172242, 39.920938 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 15TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167285, 39.943358 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163527, 39.93474 ] } }, +{ "type": "Feature", "properties": { "location": "1 N ROBINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243866275519807, 39.9631531775564 ] } }, +{ "type": "Feature", "properties": { "location": "1521 STONEY LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044882459920998, 40.083737844062497 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178502, 39.929267 ] } }, +{ "type": "Feature", "properties": { "location": "6700 RUTLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.072454617014998, 40.043343221884101 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157302, 39.971318 ] } }, +{ "type": "Feature", "properties": { "location": "1200 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167522, 39.918965 ] } }, +{ "type": "Feature", "properties": { "location": "300 W CAMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136922606209595, 39.994833681257198 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213008195965898, 40.021422669282302 ] } }, +{ "type": "Feature", "properties": { "location": "6000 ALMA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.082366888957907, 40.035534917913203 ] } }, +{ "type": "Feature", "properties": { "location": "1600 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160597745499402, 39.985244938189503 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "1 E ABBOTTSFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159936119021097, 40.026658824420302 ] } }, +{ "type": "Feature", "properties": { "location": "3894 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101631006526006, 40.006601779626102 ] } }, +{ "type": "Feature", "properties": { "location": "550 E ASHMEAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160316973341295, 40.037770118497498 ] } }, +{ "type": "Feature", "properties": { "location": "500 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828, 39.934322 ] } }, +{ "type": "Feature", "properties": { "location": "500 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152858, 39.934305 ] } }, +{ "type": "Feature", "properties": { "location": "500 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154217, 39.93309 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196973, 39.96045 ] } }, +{ "type": "Feature", "properties": { "location": "6100 UPLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232114107009593, 39.929870028078298 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SEYBERT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160777, 39.973857 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17329, 39.925502 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15526, 39.984402 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173435, 39.937722 ] } }, +{ "type": "Feature", "properties": { "location": "8100 CASTOR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.054711041399599, 40.063350268222699 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S AVONDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241367251961904, 39.929912890529103 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227018414596103, 39.942084266968202 ] } }, +{ "type": "Feature", "properties": { "location": "5500 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221483757451395, 39.935572419389999 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176353, 39.947403 ] } }, +{ "type": "Feature", "properties": { "location": "2700 E SERGEANT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117778154384794, 39.9759587737571 ] } }, +{ "type": "Feature", "properties": { "location": "2824 N GARNET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162581302363506, 39.997377906645497 ] } }, +{ "type": "Feature", "properties": { "location": "314 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188157, 39.961148 ] } }, +{ "type": "Feature", "properties": { "location": "150 MAPLEWOOD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176648045433197, 40.032260518952498 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166678, 39.956772 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090975, 40.007162 ] } }, +{ "type": "Feature", "properties": { "location": "27 E GARFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163158160783397, 40.030493346771401 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15917, 39.920538 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087172, 40.014287 ] } }, +{ "type": "Feature", "properties": { "location": "410 S 18TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171577708896194, 39.945928155184703 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.245935, 39.962712 ] } }, +{ "type": "Feature", "properties": { "location": "2199 S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174157, 39.924362 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176362, 39.953988 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RIDGE AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157622, 39.961895 ] } }, +{ "type": "Feature", "properties": { "location": "10617 LOCKART RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043189899186501, 40.1160326228134 ] } }, +{ "type": "Feature", "properties": { "location": "400 S HUTCHINSON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157565, 39.943822 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161138, 39.971665 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173378, 39.925095 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15687, 39.958195 ] } }, +{ "type": "Feature", "properties": { "location": "400 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145225, 39.963518 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 27TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178367884285507, 39.983667870678197 ] } }, +{ "type": "Feature", "properties": { "location": "615 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153295, 39.941705 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.194077, 39.961185 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15585, 39.95447 ] } }, +{ "type": "Feature", "properties": { "location": "1206 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16164, 39.94536 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155938, 39.976982 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22642, 40.027733 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226397, 40.027737 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226387, 40.027752 ] } }, +{ "type": "Feature", "properties": { "location": "2700 JUDSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170024064998202, 39.996755692569202 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "201 N HOBART ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.237320189141499, 39.965490709786202 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 41ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20435, 39.956302 ] } }, +{ "type": "Feature", "properties": { "location": "2900 WESTMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181239788576207, 39.988673980494497 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136387667262895, 40.009530455213898 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N GRATZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164658498483007, 39.981444208252597 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139348, 39.959153 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S ROSEWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171508, 39.919478 ] } }, +{ "type": "Feature", "properties": { "location": "5920 W THOMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238987261262693, 39.971541234124999 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 9TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153412, 39.958987 ] } }, +{ "type": "Feature", "properties": { "location": "100 W BERKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13416, 39.9789 ] } }, +{ "type": "Feature", "properties": { "location": "1000 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088748275860894, 40.0369031675909 ] } }, +{ "type": "Feature", "properties": { "location": "900 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091036963435201, 40.038219430004602 ] } }, +{ "type": "Feature", "properties": { "location": "7011 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238704806655903, 39.917073900737897 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160933121139607, 39.983727267426097 ] } }, +{ "type": "Feature", "properties": { "location": "6000 CASTOR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.081287, 40.03531 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086445, 40.014068 ] } }, +{ "type": "Feature", "properties": { "location": "4600 LEIPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.087599657884098, 40.016591158137501 ] } }, +{ "type": "Feature", "properties": { "location": "599 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144187, 39.961255 ] } }, +{ "type": "Feature", "properties": { "location": "400 KRAMS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219414247957999, 40.033588351021997 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152923, 39.950103 ] } }, +{ "type": "Feature", "properties": { "location": "3421 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125864698010005, 40.002036724401002 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E COLUMBIA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129777, 39.969048 ] } }, +{ "type": "Feature", "properties": { "location": "3100 WEYMOUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117046422205306, 39.996149419942 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N 39TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201433658643296, 39.972765083934704 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "4900 OSAGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222397, 39.952263 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170053, 39.960602 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173307, 39.925557 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173283, 39.925638 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132342, 40.028103 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142298, 39.970048 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12822, 39.967165 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168907, 39.944398 ] } }, +{ "type": "Feature", "properties": { "location": "1800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176418, 39.923953 ] } }, +{ "type": "Feature", "properties": { "location": "5300 WISSAHICKON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178587765722995, 40.022963296834803 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167883, 39.9406 ] } }, +{ "type": "Feature", "properties": { "location": "400 W NEDRO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127936822923203, 40.040855442672097 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S HICKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171529307727397, 39.926497961230901 ] } }, +{ "type": "Feature", "properties": { "location": "2608 S PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163366086579003, 39.916443594277197 ] } }, +{ "type": "Feature", "properties": { "location": "846 N UBER ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168614564821794, 39.970697957788403 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188535, 39.958812 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179249308647201, 39.9670232703834 ] } }, +{ "type": "Feature", "properties": { "location": "300 S WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164198, 39.946417 ] } }, +{ "type": "Feature", "properties": { "location": "600 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157002, 39.92359 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166883, 39.955948 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188118, 39.961082 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156885, 39.921407 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155983, 39.92131 ] } }, +{ "type": "Feature", "properties": { "location": "195 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "100 SUMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209642923763994, 40.017097455092497 ] } }, +{ "type": "Feature", "properties": { "location": "3757 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158211866833994, 40.010971387071102 ] } }, +{ "type": "Feature", "properties": { "location": "5200 DARRAH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.076613, 40.022127 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "3400 REACH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1152831300316, 40.000689465926001 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "600 E TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.118095923580299, 40.001848406580002 ] } }, +{ "type": "Feature", "properties": { "location": "704 E MADISON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116239021596797, 39.997723853375803 ] } }, +{ "type": "Feature", "properties": { "location": "3917 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136017576104194, 40.0112313694313 ] } }, +{ "type": "Feature", "properties": { "location": "600 W BRISTOL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137226028090694, 40.016952591429302 ] } }, +{ "type": "Feature", "properties": { "location": "100 LOUDON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124363, 40.023097 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 52ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22363, 39.956057 ] } }, +{ "type": "Feature", "properties": { "location": "2800 ROSEHILL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125076998988803, 39.992536538091201 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SANSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213991414914403, 39.956306088759199 ] } }, +{ "type": "Feature", "properties": { "location": "519 S 57TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236695904208005, 39.952486588402401 ] } }, +{ "type": "Feature", "properties": { "location": "2621 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120357855248201, 39.981865678489001 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N 20TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158007596901399, 40.023204056288101 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129583, 39.972988 ] } }, +{ "type": "Feature", "properties": { "location": "1100 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157402, 39.960373 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150628, 40.011585 ] } }, +{ "type": "Feature", "properties": { "location": "7300 SHISLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068755, 40.053257 ] } }, +{ "type": "Feature", "properties": { "location": "2000 BEYER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.033219160206002, 40.077995706482398 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144035, 39.955217 ] } }, +{ "type": "Feature", "properties": { "location": "800 LINDLEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13796, 40.029447 ] } }, +{ "type": "Feature", "properties": { "location": "1100 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163485, 39.9312 ] } }, +{ "type": "Feature", "properties": { "location": "500 CARVER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102691913961394, 40.0407844103824 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "4124 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "4000 CLARIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103990037983806, 40.008625827814598 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161340914791893, 39.9855363164096 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176862, 39.92909 ] } }, +{ "type": "Feature", "properties": { "location": "2129 N 18TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162667656519005, 39.986868287770598 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "1644 S ETTING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190364633541904, 39.932686169208999 ] } }, +{ "type": "Feature", "properties": { "location": "2620 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120357855248201, 39.981865678489001 ] } }, +{ "type": "Feature", "properties": { "location": "5700 SUMMER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234421873769605, 39.965132256308202 ] } }, +{ "type": "Feature", "properties": { "location": "5700 SUMMER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234421873769605, 39.965132256308202 ] } }, +{ "type": "Feature", "properties": { "location": "800 GRANITE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.093513804103594, 40.032417718854703 ] } }, +{ "type": "Feature", "properties": { "location": "800 GRANITE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.093513804103594, 40.032417718854703 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14773, 39.93151 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S FRONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146283182406194, 39.930717298616401 ] } }, +{ "type": "Feature", "properties": { "location": "8127 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.024752233008499, 40.042637592597998 ] } }, +{ "type": "Feature", "properties": { "location": "6100 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "6100 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227529884946094, 39.926954104333802 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 66TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235351844095504, 39.924517135190897 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164045, 39.918512 ] } }, +{ "type": "Feature", "properties": { "location": "6211 MERSHON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065584229748794, 40.0300327527519 ] } }, +{ "type": "Feature", "properties": { "location": "900 NEW MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139038, 39.96441 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086193, 40.013928 ] } }, +{ "type": "Feature", "properties": { "location": "4000 MITCHELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209805554514205, 40.024408828650898 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155, 39.949138 ] } }, +{ "type": "Feature", "properties": { "location": "2027 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161543, 39.984728 ] } }, +{ "type": "Feature", "properties": { "location": "6600 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235898990721395, 39.9244707588648 ] } }, +{ "type": "Feature", "properties": { "location": "2800 STEVENS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.066896057351201, 40.0290421668699 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224465, 40.028095 ] } }, +{ "type": "Feature", "properties": { "location": "2712 S SHERIDAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159356250711696, 39.9145665876867 ] } }, +{ "type": "Feature", "properties": { "location": "2700 S 66TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228529249321397, 39.918762171129003 ] } }, +{ "type": "Feature", "properties": { "location": "401 N 21ST ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173279740163295, 39.9620842819822 ] } }, +{ "type": "Feature", "properties": { "location": "600 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153142, 39.94007 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155862, 39.936172 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15428, 39.933235 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154267, 39.933235 ] } }, +{ "type": "Feature", "properties": { "location": "6401 GLENMORE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231523820200394, 39.924134249333797 ] } }, +{ "type": "Feature", "properties": { "location": "799 TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180388, 39.970285 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0708486779086, 40.0213430257621 ] } }, +{ "type": "Feature", "properties": { "location": "2000 EMILY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090867, 40.007648 ] } }, +{ "type": "Feature", "properties": { "location": "6800 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071284629810194, 40.044584488144402 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179406842928501, 39.929397696543397 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158362, 39.938623 ] } }, +{ "type": "Feature", "properties": { "location": "928 S DELHI ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15907, 39.938988 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205670095214799, 39.948283616096901 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08634, 40.01382 ] } }, +{ "type": "Feature", "properties": { "location": "6624 GUYER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228950817736802, 39.9180926880165 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231128, 39.92775 ] } }, +{ "type": "Feature", "properties": { "location": "1819 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173843, 39.928315 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183419604886694, 39.974802665553199 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GAUL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127992, 39.9767 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165675, 39.917372 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150775536294105, 39.917879911593502 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235105, 39.925042 ] } }, +{ "type": "Feature", "properties": { "location": "928 RIDGE AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154668, 39.958025 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170807, 39.942448 ] } }, +{ "type": "Feature", "properties": { "location": "2700 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131266217413199, 39.991752396303198 ] } }, +{ "type": "Feature", "properties": { "location": "1312 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163455, 39.94551 ] } }, +{ "type": "Feature", "properties": { "location": "4600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211166128814298, 39.945192055643801 ] } }, +{ "type": "Feature", "properties": { "location": "200 E INDIANA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127670845717006, 39.99516976572 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WALNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1626269596009, 39.949144266835603 ] } }, +{ "type": "Feature", "properties": { "location": "1000 HOPE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137525, 39.966487 ] } }, +{ "type": "Feature", "properties": { "location": "5207 MONTOUR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107107999462698, 40.030276159504702 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.07043, 40.046527 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "6500 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235814058020694, 39.926483823601203 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S PAXON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221488323555207, 39.943612365451401 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218533670274198, 40.0267494724595 ] } }, +{ "type": "Feature", "properties": { "location": "7359 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241543650148898, 39.912637767486501 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167005, 39.956217 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232248012542499, 39.936745311179003 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133089686270694, 40.024648997932402 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225090148463295, 40.028901944853203 ] } }, +{ "type": "Feature", "properties": { "location": "100 SUMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209642923763994, 40.017097455092497 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153945060507994, 39.982820771933397 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N 27TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177118009215604, 39.989390661574298 ] } }, +{ "type": "Feature", "properties": { "location": "1341 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196867, 39.960398 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 65TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238090203166195, 39.9287344751435 ] } }, +{ "type": "Feature", "properties": { "location": "750 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178298, 39.968822 ] } }, +{ "type": "Feature", "properties": { "location": "130 S 53RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227308, 39.957808 ] } }, +{ "type": "Feature", "properties": { "location": "967 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145457, 39.96816 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154378, 39.926137 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154372, 39.926252 ] } }, +{ "type": "Feature", "properties": { "location": "7600 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.061883419415196, 40.055743174390699 ] } }, +{ "type": "Feature", "properties": { "location": "6300 ALGON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085743302797397, 40.043150411282497 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W ERIE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146285169815698, 40.008608287497701 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143783, 39.969588 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16428, 39.917242 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128203, 39.967387 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188567, 39.959005 ] } }, +{ "type": "Feature", "properties": { "location": "260 N 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178461521943106, 39.961200176563501 ] } }, +{ "type": "Feature", "properties": { "location": "900 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15783, 39.94189 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211255, 39.947702 ] } }, +{ "type": "Feature", "properties": { "location": "600 S AMERICAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146793289865499, 39.941080337210401 ] } }, +{ "type": "Feature", "properties": { "location": "6201 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.245057755271105, 39.962495105725097 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "5200 W CLARKSON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160118332345405, 40.038293657671403 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "1600 UNITY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08763, 40.012373 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155308, 39.984508 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173275, 39.957608 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225658, 39.972335 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160122, 39.969398 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "2000 OGDEN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170053449747698, 39.970814732914597 ] } }, +{ "type": "Feature", "properties": { "location": "7300 BELDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068228, 40.052968 ] } }, +{ "type": "Feature", "properties": { "location": "2409 FEDERAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184388864946499, 39.938396396980501 ] } }, +{ "type": "Feature", "properties": { "location": "4601 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214150681328903, 39.955546089996098 ] } }, +{ "type": "Feature", "properties": { "location": "5328 REINHARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220459404589107, 39.938675671415801 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127833, 39.969812 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N FRANKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138624302309196, 40.019426015622997 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.069926599667994, 40.0466266245245 ] } }, +{ "type": "Feature", "properties": { "location": "3231 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133066926182394, 39.999851607906699 ] } }, +{ "type": "Feature", "properties": { "location": "157 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187557, 39.958775 ] } }, +{ "type": "Feature", "properties": { "location": "6000 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222344086074102, 39.925731068380401 ] } }, +{ "type": "Feature", "properties": { "location": "600 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155868, 39.928828 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179837, 39.973487 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214613238467905, 40.028512966070998 ] } }, +{ "type": "Feature", "properties": { "location": "237 W THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134455147388806, 40.001968784047499 ] } }, +{ "type": "Feature", "properties": { "location": "1222 BAINBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163117, 39.942385 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N LEE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1298675649778, 39.993153702483497 ] } }, +{ "type": "Feature", "properties": { "location": "628 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117960536120293, 40.000249138107002 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140867, 40.039402 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160172, 39.94217 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160318, 39.942068 ] } }, +{ "type": "Feature", "properties": { "location": "3500 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19297, 39.956983 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1576, 39.923365 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168153, 39.939703 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170475, 39.965673 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1464, 39.971622 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RANDOLPH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152825, 39.93618 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15386, 39.928992 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163437273571901, 39.939270976189697 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155835, 39.921405 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154957, 39.949007 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143443, 40.03491 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16554, 39.918747 ] } }, +{ "type": "Feature", "properties": { "location": "1500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172193, 39.923368 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S HICKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172257, 39.92333 ] } }, +{ "type": "Feature", "properties": { "location": "5000 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223497, 39.972623 ] } }, +{ "type": "Feature", "properties": { "location": "5000 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22352, 39.972557 ] } }, +{ "type": "Feature", "properties": { "location": "3300 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114862, 39.999327 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143352, 40.039693 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156346957061103, 40.023245894636801 ] } }, +{ "type": "Feature", "properties": { "location": "800 E ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114558, 39.999678 ] } }, +{ "type": "Feature", "properties": { "location": "3600 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195455, 39.963082 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181637, 39.96908 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 31ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187595, 39.963942 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14135, 39.965283 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E ESTAUGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.110028, 40.000013 ] } }, +{ "type": "Feature", "properties": { "location": "181 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "1214 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178707577151897, 39.9371542065687 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W VICTORIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150458, 40.008048 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179587780004894, 39.971431611038 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153587811662703, 39.998620757581598 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153627, 39.998835 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156892, 39.928175 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W SCHOOL HOUSE LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186793, 40.023752 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155, 39.92927 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172, 39.971715 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172058, 39.971708 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 9TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153926791081005, 39.957323015741402 ] } }, +{ "type": "Feature", "properties": { "location": "1717 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MIFFLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171123018494995, 39.927070397223801 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141072, 39.966357 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145687, 39.971498 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173803, 39.935902 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159202, 39.920543 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075797, 40.041658 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16272, 39.964235 ] } }, +{ "type": "Feature", "properties": { "location": "4700 VISTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.030852021310295, 40.0313241791889 ] } }, +{ "type": "Feature", "properties": { "location": "1900 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175972, 39.939482 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153166304473899, 39.934644664834202 ] } }, +{ "type": "Feature", "properties": { "location": "1599 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169472, 39.947222 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154507, 39.927068 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123065, 39.973767 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123045, 39.973767 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHRISTIAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171082, 39.940655 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151085, 40.00326 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16098, 39.920973 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N 25TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171268877796095, 40.001171407914399 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073737, 40.043348 ] } }, +{ "type": "Feature", "properties": { "location": "400 PASSMORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.095831753139194, 40.051314194179199 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166895, 39.965252 ] } }, +{ "type": "Feature", "properties": { "location": "2726 S 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161617, 39.914858 ] } }, +{ "type": "Feature", "properties": { "location": "1E PLEASANT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1857653235285, 40.054610314895598 ] } }, +{ "type": "Feature", "properties": { "location": "440 N 15TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163583, 39.961328 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077965, 40.022175 ] } }, +{ "type": "Feature", "properties": { "location": "500 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152707, 39.934377 ] } }, +{ "type": "Feature", "properties": { "location": "4755 HARTEL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.026850056355698, 40.033486185531203 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128148, 39.967187 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140270308877902, 40.014889376962302 ] } }, +{ "type": "Feature", "properties": { "location": "2125 S 4TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153571499832196, 39.921650113738103 ] } }, +{ "type": "Feature", "properties": { "location": "600 QUEEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153492, 39.93835 ] } }, +{ "type": "Feature", "properties": { "location": "899 PERKIOMEN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1674180991687, 39.970697531322998 ] } }, +{ "type": "Feature", "properties": { "location": "300 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142407, 39.969068 ] } }, +{ "type": "Feature", "properties": { "location": "300 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142447, 39.969068 ] } }, +{ "type": "Feature", "properties": { "location": "314 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142408, 39.969145 ] } }, +{ "type": "Feature", "properties": { "location": "1926 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175023427451706, 39.941915440154403 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16531, 39.934697 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086197, 40.013852 ] } }, +{ "type": "Feature", "properties": { "location": "300 S CAMAC ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161967, 39.9463 ] } }, +{ "type": "Feature", "properties": { "location": "123 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21351, 39.9562 ] } }, +{ "type": "Feature", "properties": { "location": "700 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148635, 39.97185 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15239, 39.942373 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2244, 40.026763 ] } }, +{ "type": "Feature", "properties": { "location": "924 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169782, 39.939492 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174003, 39.924358 ] } }, +{ "type": "Feature", "properties": { "location": "516 S 7TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153782, 39.942662 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228203, 40.028417 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086497, 40.013978 ] } }, +{ "type": "Feature", "properties": { "location": "500 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154258, 39.933163 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151462, 39.941723 ] } }, +{ "type": "Feature", "properties": { "location": "4400 MAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225728, 40.026428 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149212, 39.926683 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086453, 40.013935 ] } }, +{ "type": "Feature", "properties": { "location": "3917 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136017576104194, 40.0112313694313 ] } }, +{ "type": "Feature", "properties": { "location": "2299 S 22ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183160302618901, 39.924195316401899 ] } }, +{ "type": "Feature", "properties": { "location": "9900 LORRY PL", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.984209716788698, 40.063480687800002 ] } }, +{ "type": "Feature", "properties": { "location": "199 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176557, 39.951237 ] } }, +{ "type": "Feature", "properties": { "location": "700 AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142078, 39.962732 ] } }, +{ "type": "Feature", "properties": { "location": "210 ALNUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.039958864852395, 40.117152935769703 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156307, 39.959833 ] } }, +{ "type": "Feature", "properties": { "location": "5200 DARRAH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.076593, 40.022103 ] } }, +{ "type": "Feature", "properties": { "location": "6800 BUSTLETON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065053, 40.041152 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OLD YORK RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14704, 40.027552 ] } }, +{ "type": "Feature", "properties": { "location": "5629 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235638167947698, 39.955787696931601 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153725, 39.959612 ] } }, +{ "type": "Feature", "properties": { "location": "1100 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157572, 39.960347 ] } }, +{ "type": "Feature", "properties": { "location": "200 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961776704595, 40.0318986600317 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155238, 39.928795 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MORAVIAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165753, 39.950087 ] } }, +{ "type": "Feature", "properties": { "location": "1215 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161345, 39.949542 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128307, 39.96718 ] } }, +{ "type": "Feature", "properties": { "location": "1772 S AVONDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240181023861297, 39.929679972394403 ] } }, +{ "type": "Feature", "properties": { "location": "2200 SAINT ALBANS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1807, 39.943087 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17782, 39.940977 ] } }, +{ "type": "Feature", "properties": { "location": "5200 DARRAH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077082, 40.021723 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234788011345998, 39.9179860542299 ] } }, +{ "type": "Feature", "properties": { "location": "200 W ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132874310681302, 40.002174094843397 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16362, 39.98246 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168787931314597, 39.990055049283697 ] } }, +{ "type": "Feature", "properties": { "location": "2812 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171283656234905, 39.998498526828399 ] } }, +{ "type": "Feature", "properties": { "location": "2200 E FLETCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128220215800994, 39.979189544465697 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14132, 39.965408 ] } }, +{ "type": "Feature", "properties": { "location": "200 VAN KIRK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1076150877022, 40.046830119137397 ] } }, +{ "type": "Feature", "properties": { "location": "4822 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133089686270694, 40.024648997932402 ] } }, +{ "type": "Feature", "properties": { "location": "6158 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "3500 VAUX ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187586888168497, 40.0134642734739 ] } }, +{ "type": "Feature", "properties": { "location": "6124 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "1 N JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162519010237304, 39.952575863338403 ] } }, +{ "type": "Feature", "properties": { "location": "3000 MARKET ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183682, 39.955007 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173395, 39.925102 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157382, 39.919095 ] } }, +{ "type": "Feature", "properties": { "location": "2100 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177963, 39.945523 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 31ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187512, 39.963952 ] } }, +{ "type": "Feature", "properties": { "location": "2200 MONTROSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180292413966995, 39.941268571521597 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 24TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179995, 39.948888 ] } }, +{ "type": "Feature", "properties": { "location": "600 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161048, 39.964222 ] } }, +{ "type": "Feature", "properties": { "location": "3917 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136017576104194, 40.0112313694313 ] } }, +{ "type": "Feature", "properties": { "location": "1300 GILHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.078220703432194, 40.0430232889412 ] } }, +{ "type": "Feature", "properties": { "location": "300 MONROE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148093, 39.939763 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163665, 39.94674 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BELMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225294978211593, 39.940625097825198 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139097, 39.959198 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105772, 39.9965 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157749214168703, 39.979466528161403 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.222164463447598, 39.953571929136402 ] } }, +{ "type": "Feature", "properties": { "location": "2124 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064010298178701, 40.014484142812499 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 52ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225662, 39.956423 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232248012542499, 39.936745311179003 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232248012542499, 39.936745311179003 ] } }, +{ "type": "Feature", "properties": { "location": "2100 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179456229078497, 39.934411962166301 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158003, 39.958242 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159048, 39.923468 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S SYDENHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169592706719996, 39.936514597198901 ] } }, +{ "type": "Feature", "properties": { "location": "1000 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163, 39.929797 ] } }, +{ "type": "Feature", "properties": { "location": "100 RECTOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220093, 40.025125 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160365, 39.942075 ] } }, +{ "type": "Feature", "properties": { "location": "736 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158046924889305, 39.927133979559599 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159643, 39.975265 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159578, 39.975173 ] } }, +{ "type": "Feature", "properties": { "location": "1522 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159178, 39.976857 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160145, 39.976047 ] } }, +{ "type": "Feature", "properties": { "location": "800 E ALLEGHENY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114826246412093, 39.996677460294201 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161707, 39.933392 ] } }, +{ "type": "Feature", "properties": { "location": "500 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15029, 39.944243 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228080711070206, 39.925256005062799 ] } }, +{ "type": "Feature", "properties": { "location": "203 W LAVEER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124512083998198, 40.045678415904099 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168813, 39.952315 ] } }, +{ "type": "Feature", "properties": { "location": "3413 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125864698010005, 40.002036724401002 ] } }, +{ "type": "Feature", "properties": { "location": "842 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159352417900095, 39.928485804610602 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168788, 39.918398 ] } }, +{ "type": "Feature", "properties": { "location": "600 S FELTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.247675558759596, 39.952685387452902 ] } }, +{ "type": "Feature", "properties": { "location": "800 W BUTLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141670286803404, 40.009643343842299 ] } }, +{ "type": "Feature", "properties": { "location": "199 N 32ND ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18766, 39.95891 ] } }, +{ "type": "Feature", "properties": { "location": "7200 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041673, 40.036302 ] } }, +{ "type": "Feature", "properties": { "location": "2746 HUTCHINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164132, 39.914603 ] } }, +{ "type": "Feature", "properties": { "location": "3901 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200316548392394, 39.960534383626403 ] } }, +{ "type": "Feature", "properties": { "location": "600 BRILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101953081320005, 40.0391123899295 ] } }, +{ "type": "Feature", "properties": { "location": "500 DUDLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154757, 39.924163 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.08961, 40.009795 ] } }, +{ "type": "Feature", "properties": { "location": "3100 F ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117689798692595, 39.995614904743398 ] } }, +{ "type": "Feature", "properties": { "location": "100 W CAMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130516756687996, 39.994000916511503 ] } }, +{ "type": "Feature", "properties": { "location": "1701 S 21ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180138868665495, 39.930527861172699 ] } }, +{ "type": "Feature", "properties": { "location": "437 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19693, 39.960357 ] } }, +{ "type": "Feature", "properties": { "location": "1515 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152342, 40.007332 ] } }, +{ "type": "Feature", "properties": { "location": "3536 JASPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.104373263131393, 39.999272100037501 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155828, 39.921307 ] } }, +{ "type": "Feature", "properties": { "location": "4300 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197335, 40.010135 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15755, 39.954647 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196367372831503, 39.934716375698997 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133465, 39.975242 ] } }, +{ "type": "Feature", "properties": { "location": "2615 S HOWARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150391745831897, 39.914774967663803 ] } }, +{ "type": "Feature", "properties": { "location": "715 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159078, 39.920558 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117042, 39.97608 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11726, 39.976032 ] } }, +{ "type": "Feature", "properties": { "location": "163 W RAYMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127352609655006, 40.020081660766799 ] } }, +{ "type": "Feature", "properties": { "location": "830 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091025852555404, 40.034293984669098 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142637, 39.968497 ] } }, +{ "type": "Feature", "properties": { "location": "1528 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15919, 39.976993 ] } }, +{ "type": "Feature", "properties": { "location": "419 N SALFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238632812798201, 39.968770236385502 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214328751125194, 40.023652320031097 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114203, 39.99948 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11436, 39.999483 ] } }, +{ "type": "Feature", "properties": { "location": "1400 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134443, 39.97179 ] } }, +{ "type": "Feature", "properties": { "location": "4232 HAVERFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208423682251095, 39.962359543412099 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164318, 39.946743 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15443, 39.940485 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W NEDRO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139378, 40.042382 ] } }, +{ "type": "Feature", "properties": { "location": "4800 WALTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22105, 39.949032 ] } }, +{ "type": "Feature", "properties": { "location": "907 SNYDER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161586420520194, 39.923335447167801 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17425, 39.933793 ] } }, +{ "type": "Feature", "properties": { "location": "3600 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195733, 39.955612 ] } }, +{ "type": "Feature", "properties": { "location": "3600 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195972, 39.95565 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161262, 39.930795 ] } }, +{ "type": "Feature", "properties": { "location": "800 E TIOGA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114175955966701, 40.001334607535803 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16135, 39.950453 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19696, 39.960362 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15639, 39.96195 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "433 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "439 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "441 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1805509795647, 39.988020224573503 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187781775318996, 39.957836912063399 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SANSOM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164974512223594, 39.9502167422771 ] } }, +{ "type": "Feature", "properties": { "location": "86 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163273061502196, 40.031564804995497 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157905, 39.961112 ] } }, +{ "type": "Feature", "properties": { "location": "300 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142655, 39.965145 ] } }, +{ "type": "Feature", "properties": { "location": "200 WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161682, 39.957027 ] } }, +{ "type": "Feature", "properties": { "location": "700 S BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16559, 39.942208 ] } }, +{ "type": "Feature", "properties": { "location": "4300 PECHIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215743069008198, 40.028984195871502 ] } }, +{ "type": "Feature", "properties": { "location": "6400 HARBISON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.063420864398594, 40.032658169369498 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155702, 39.95962 ] } }, +{ "type": "Feature", "properties": { "location": "1727 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162017336649498, 39.927372144227903 ] } }, +{ "type": "Feature", "properties": { "location": "200 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "5304 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121335302301304, 40.031059210818697 ] } }, +{ "type": "Feature", "properties": { "location": "115 SHURS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217202, 40.023025 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PENNSYLVANIA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17621, 39.964408 ] } }, +{ "type": "Feature", "properties": { "location": "324 S 24TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180188, 39.948117 ] } }, +{ "type": "Feature", "properties": { "location": "5100 GRISCOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.080183, 40.021932 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N STANLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182056385631498, 39.993556799437599 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S FRONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145862, 39.932858 ] } }, +{ "type": "Feature", "properties": { "location": "5400 HADFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229364428055305, 39.944063194456803 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 21ST ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173279740163295, 39.9620842819822 ] } }, +{ "type": "Feature", "properties": { "location": "300 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148068, 39.944332 ] } }, +{ "type": "Feature", "properties": { "location": "519 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502227031296, 39.933105053217403 ] } }, +{ "type": "Feature", "properties": { "location": "500 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502227031296, 39.933105053217403 ] } }, +{ "type": "Feature", "properties": { "location": "1 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13913, 39.95929 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183702050635304, 39.973542504934699 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155248, 39.991252 ] } }, +{ "type": "Feature", "properties": { "location": "700 MAYFAIR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107495914984, 40.0317633747323 ] } }, +{ "type": "Feature", "properties": { "location": "800 W BRISTOL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139999735901, 40.017309957302999 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16106, 39.968323 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1553, 39.984477 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123773, 39.972885 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123008, 39.97382 ] } }, +{ "type": "Feature", "properties": { "location": "125 E LOUDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123052347619605, 40.022985928843703 ] } }, +{ "type": "Feature", "properties": { "location": "5825 AKRON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077762255074006, 40.028963820215701 ] } }, +{ "type": "Feature", "properties": { "location": "150 S 55TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231358811536296, 39.958069961860303 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159737, 39.966922 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BELMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225294978211593, 39.940625097825198 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1876, 39.958805 ] } }, +{ "type": "Feature", "properties": { "location": "700 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158334695615395, 39.925834606298999 ] } }, +{ "type": "Feature", "properties": { "location": "700 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158334695615395, 39.925834606298999 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "2025 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171061566977897, 39.967268514635897 ] } }, +{ "type": "Feature", "properties": { "location": "6543 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.049668549748404, 40.0234168409552 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177942293124204, 39.9370298333655 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156297, 39.959767 ] } }, +{ "type": "Feature", "properties": { "location": "100 RECTOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220537, 40.025115 ] } }, +{ "type": "Feature", "properties": { "location": "1 W RITTENHOUSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176457, 40.037752 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21517, 40.021877 ] } }, +{ "type": "Feature", "properties": { "location": "4000 CLARIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103990037983806, 40.008625827814598 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167903, 39.940597 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155832, 39.959818 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142412, 39.961188 ] } }, +{ "type": "Feature", "properties": { "location": "877 BRILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091863896007297, 40.033435698277401 ] } }, +{ "type": "Feature", "properties": { "location": "609 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164275, 39.943145 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235163, 39.925107 ] } }, +{ "type": "Feature", "properties": { "location": "4329 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217345841332801, 40.0282734007519 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164625, 39.941637 ] } }, +{ "type": "Feature", "properties": { "location": "3019 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185893122079094, 39.974878321914801 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1665, 39.921845 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 34TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191243, 39.962308 ] } }, +{ "type": "Feature", "properties": { "location": "1900 FONTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165449456424398, 39.985218442932798 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157432, 39.926015 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175745, 39.941997 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163282, 39.94678 ] } }, +{ "type": "Feature", "properties": { "location": "247 HARVEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181664058564607, 40.035302267256903 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.074651814421301, 40.019083480429003 ] } }, +{ "type": "Feature", "properties": { "location": "1500 PRATT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.081082, 40.0243 ] } }, +{ "type": "Feature", "properties": { "location": "1500 PRATT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08123, 40.02427 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "4300 MANAYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216873060384899, 40.027828330217403 ] } }, +{ "type": "Feature", "properties": { "location": "3700 MANAYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209124571647394, 40.017687462798698 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189635, 39.954845 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17224, 39.920887 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175015, 39.922492 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175057, 39.947237 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221836951648896, 40.0255767713804 ] } }, +{ "type": "Feature", "properties": { "location": "2110 W STELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165452727121107, 39.999627840315199 ] } }, +{ "type": "Feature", "properties": { "location": "166 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105775, 39.996478 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "5300 W BERKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229907182962506, 39.986292871351502 ] } }, +{ "type": "Feature", "properties": { "location": "400 CONARROE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217622166283405, 40.031931396680001 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213008195965898, 40.021422669282302 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CREASE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13265, 39.969537 ] } }, +{ "type": "Feature", "properties": { "location": "6100 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244720028116802, 39.957578304770301 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N TAYLOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171283656234905, 39.998498526828399 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153907, 39.959543 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153495, 39.946055 ] } }, +{ "type": "Feature", "properties": { "location": "900 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156623, 39.949308 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235182, 39.925137 ] } }, +{ "type": "Feature", "properties": { "location": "3300 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.098208, 39.985472 ] } }, +{ "type": "Feature", "properties": { "location": "4600 C ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118237, 40.020762 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BRIDGET ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079233, 40.024977 ] } }, +{ "type": "Feature", "properties": { "location": "5325 LESHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075091797978899, 40.0224853771699 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153352, 39.933883 ] } }, +{ "type": "Feature", "properties": { "location": "5951 DELANCEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240995970706706, 39.955998133149201 ] } }, +{ "type": "Feature", "properties": { "location": "800 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159525105567894, 39.927688267357603 ] } }, +{ "type": "Feature", "properties": { "location": "2100 W TORONTO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165609657432896, 40.000834781865102 ] } }, +{ "type": "Feature", "properties": { "location": "600 W BUTLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138897673507103, 40.009287774245301 ] } }, +{ "type": "Feature", "properties": { "location": "701 W BUTLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140456790540597, 40.009491413250203 ] } }, +{ "type": "Feature", "properties": { "location": "4300 SHELMIRE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.034088176936805, 40.035952357313199 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N FRONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.120055463594397, 40.041674106727797 ] } }, +{ "type": "Feature", "properties": { "location": "6547 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.049668549748404, 40.0234168409552 ] } }, +{ "type": "Feature", "properties": { "location": "6543 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.049668549748404, 40.0234168409552 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N UBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165922734193998, 39.983037117164002 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N UBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165922734193998, 39.983037117164002 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165214800896507, 39.978908408510499 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163444861632598, 39.988036435860501 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N NATRONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184778766978198, 39.993907846137198 ] } }, +{ "type": "Feature", "properties": { "location": "4700 C ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118188, 40.020913 ] } }, +{ "type": "Feature", "properties": { "location": "300 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14398, 39.961608 ] } }, +{ "type": "Feature", "properties": { "location": "700 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1536, 39.950345 ] } }, +{ "type": "Feature", "properties": { "location": "805 LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145372, 39.964147 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153675, 39.96025 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170203, 39.942343 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155102, 39.955757 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MCKINLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081839521770803, 40.0388122999003 ] } }, +{ "type": "Feature", "properties": { "location": "4700 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215665, 39.955755 ] } }, +{ "type": "Feature", "properties": { "location": "4600 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117729166988298, 40.019912280046697 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16069, 39.921143 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117192, 39.976037 ] } }, +{ "type": "Feature", "properties": { "location": "3900 PALMETTO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108156778141193, 40.007626027552 ] } }, +{ "type": "Feature", "properties": { "location": "3900 PALMETTO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108156778141193, 40.007626027552 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086252, 40.013703 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221836951648896, 40.0255767713804 ] } }, +{ "type": "Feature", "properties": { "location": "1 N ROBINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243866275519807, 39.9631531775564 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N 17TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156077, 40.009168 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090688, 40.007555 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "600 JAMESTOWN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205388584373793, 40.030329953811901 ] } }, +{ "type": "Feature", "properties": { "location": "6239 MERSHON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065584229748794, 40.0300327527519 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175262, 40.036858 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225393, 39.972402 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175947, 39.941685 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142257, 40.039648 ] } }, +{ "type": "Feature", "properties": { "location": "800 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159583, 39.924388 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191113, 39.960825 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191102, 39.960827 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1513, 40.003018 ] } }, +{ "type": "Feature", "properties": { "location": "900 MARCELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091810897633394, 40.0308573223286 ] } }, +{ "type": "Feature", "properties": { "location": "4100 MAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219173, 40.023138 ] } }, +{ "type": "Feature", "properties": { "location": "33 E WALNUT LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177749940883601, 40.041264956891801 ] } }, +{ "type": "Feature", "properties": { "location": "400 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154482, 39.924857 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151607, 39.930793 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10471, 39.996743 ] } }, +{ "type": "Feature", "properties": { "location": "2220 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182155250715695, 39.932698106418201 ] } }, +{ "type": "Feature", "properties": { "location": "499 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196907, 39.960825 ] } }, +{ "type": "Feature", "properties": { "location": "500 N PERCY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153563, 39.962548 ] } }, +{ "type": "Feature", "properties": { "location": "200 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142208, 39.962202 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141338, 39.965462 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "1300 OXFORD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157988, 39.977412 ] } }, +{ "type": "Feature", "properties": { "location": "4600 GREENE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161528784808596, 40.024566044882199 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137472, 39.968647 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147167, 39.934202 ] } }, +{ "type": "Feature", "properties": { "location": "59 N RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227810083005593, 39.961165788692199 ] } }, +{ "type": "Feature", "properties": { "location": "800 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160917, 39.91813 ] } }, +{ "type": "Feature", "properties": { "location": "240 E CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127347433600903, 39.993597146568 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127174976298505, 40.002203896316999 ] } }, +{ "type": "Feature", "properties": { "location": "4561 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079211527489406, 40.005890612097403 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138987682111505, 40.014720665919299 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161677, 39.95893 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.222164463447598, 39.953571929136402 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "3000 AGATE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.110804062510994, 39.987348451860797 ] } }, +{ "type": "Feature", "properties": { "location": "2424 E CLEARFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107723648740404, 39.986034105638304 ] } }, +{ "type": "Feature", "properties": { "location": "2533 E CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.106961860861205, 39.9851749608424 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WEYMOUTH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115922137075401, 40.000779003129097 ] } }, +{ "type": "Feature", "properties": { "location": "1400 FANSHAWE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.074562, 40.042675 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140827, 40.039448 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166623, 39.965202 ] } }, +{ "type": "Feature", "properties": { "location": "400 N SALFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238632812798201, 39.968770236385502 ] } }, +{ "type": "Feature", "properties": { "location": "600 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156988, 39.923513 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235943686351504, 39.975604926872499 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130688, 39.972715 ] } }, +{ "type": "Feature", "properties": { "location": "1400 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130003, 39.973878 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S JUNIPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169355, 39.922003 ] } }, +{ "type": "Feature", "properties": { "location": "399 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193997, 39.960932 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 9TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153926791081005, 39.957323015741402 ] } }, +{ "type": "Feature", "properties": { "location": "600 E ALLEGHENY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118900149565803, 39.9972008050445 ] } }, +{ "type": "Feature", "properties": { "location": "3300 H ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112876475067694, 39.998283943193002 ] } }, +{ "type": "Feature", "properties": { "location": "100 W CAMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130516756687996, 39.994000916511503 ] } }, +{ "type": "Feature", "properties": { "location": "100 W CAMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130516756687996, 39.994000916511503 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N REESE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136055476295695, 40.014344838483602 ] } }, +{ "type": "Feature", "properties": { "location": "3400 G ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114727701512393, 40.0001050493116 ] } }, +{ "type": "Feature", "properties": { "location": "3300 F ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117011306597504, 39.998810500751901 ] } }, +{ "type": "Feature", "properties": { "location": "600 W LYCOMING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137917115798203, 40.013767627018296 ] } }, +{ "type": "Feature", "properties": { "location": "200 E ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126353200371696, 40.001331879509799 ] } }, +{ "type": "Feature", "properties": { "location": "734 W BUTLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141102948737199, 40.009573978268101 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114117, 39.99923 ] } }, +{ "type": "Feature", "properties": { "location": "4201 N FRANKLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139287769446298, 40.016394567357203 ] } }, +{ "type": "Feature", "properties": { "location": "3401 I ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.110611563822403, 39.999567970731199 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155997, 39.921315 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 12TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162823632446305, 39.938397407884899 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070497, 40.04648 ] } }, +{ "type": "Feature", "properties": { "location": "634 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153362, 39.942525 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173778051459394, 39.928445129710298 ] } }, +{ "type": "Feature", "properties": { "location": "700 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115884688012599, 39.999523430550099 ] } }, +{ "type": "Feature", "properties": { "location": "4000 MARKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099294947135903, 40.008023178686798 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078015, 40.022282 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155122, 39.920813 ] } }, +{ "type": "Feature", "properties": { "location": "2400 W MONTGOMERY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174041999028901, 39.982351568200599 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N CAMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "2519 MEREDITH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179246934559202, 39.968403499901598 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "6301 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123273222700703, 40.046902978861702 ] } }, +{ "type": "Feature", "properties": { "location": "1900 NICHOLAS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166747457854498, 39.979300280407102 ] } }, +{ "type": "Feature", "properties": { "location": "4200 MAYWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099188672810698, 40.011204897964099 ] } }, +{ "type": "Feature", "properties": { "location": "3400 I ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.110611563822403, 39.999567970731199 ] } }, +{ "type": "Feature", "properties": { "location": "3928 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212407296474197, 40.022021329560602 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177335, 39.953868 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "100 E INDIANA AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129667604773601, 39.995429869391401 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173267, 39.94838 ] } }, +{ "type": "Feature", "properties": { "location": "5000 CHESTNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223235, 39.95819 ] } }, +{ "type": "Feature", "properties": { "location": "1500 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130817, 39.97461 ] } }, +{ "type": "Feature", "properties": { "location": "4100 MARKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.098965304571607, 40.009550878480702 ] } }, +{ "type": "Feature", "properties": { "location": "900 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160508, 39.92695 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16042, 39.926825 ] } }, +{ "type": "Feature", "properties": { "location": "7300 ALGON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.072424870271107, 40.056218235184701 ] } }, +{ "type": "Feature", "properties": { "location": "5200 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226862903027097, 39.955339304556396 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15118, 40.003027 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W CUMBERLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150197773120993, 39.990209422094502 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226413, 40.027715 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088547, 40.010853 ] } }, +{ "type": "Feature", "properties": { "location": "5822 BAYNTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172961104489403, 40.039831249863497 ] } }, +{ "type": "Feature", "properties": { "location": "200 IDELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191770931862195, 40.054095108936998 ] } }, +{ "type": "Feature", "properties": { "location": "1 W RITTENHOUSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176478, 40.037703 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 56TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223918488664197, 39.936289238612602 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROXBOROUGH AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214613238467905, 40.028512966070998 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219503, 40.028377 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101633, 40.008975 ] } }, +{ "type": "Feature", "properties": { "location": "5100 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224886612534803, 39.955095042371497 ] } }, +{ "type": "Feature", "properties": { "location": "5138 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224886612534803, 39.955095042371497 ] } }, +{ "type": "Feature", "properties": { "location": "5600 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228507048455796, 39.939002284704699 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155547, 39.929413 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142808, 39.961252 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21239, 40.0216 ] } }, +{ "type": "Feature", "properties": { "location": "300 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132433, 39.971283 ] } }, +{ "type": "Feature", "properties": { "location": "1607 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147121394115103, 40.047363773560903 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N 21ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167461201237103, 39.988551873944999 ] } }, +{ "type": "Feature", "properties": { "location": "906 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174423, 39.940588 ] } }, +{ "type": "Feature", "properties": { "location": "1246 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235120007146406, 39.971185535528598 ] } }, +{ "type": "Feature", "properties": { "location": "1342 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235378510760398, 39.9725949334318 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 62ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246208276428007, 39.985170263552 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 46TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214175, 39.953107 ] } }, +{ "type": "Feature", "properties": { "location": "3700 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196152, 39.963058 ] } }, +{ "type": "Feature", "properties": { "location": "3700 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196128, 39.962962 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154247095331399, 39.962919860020101 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168923, 39.917895 ] } }, +{ "type": "Feature", "properties": { "location": "500 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127777, 39.969848 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145513, 39.968223 ] } }, +{ "type": "Feature", "properties": { "location": "6250 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246369066741195, 39.959538635384099 ] } }, +{ "type": "Feature", "properties": { "location": "2000 DORRANCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176974883961293, 39.9259395060513 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151607280127607, 39.962970602728298 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WOLF ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180068184080895, 39.923154791797302 ] } }, +{ "type": "Feature", "properties": { "location": "1661 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "7345 MILNOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.028594813296095, 40.0245464666611 ] } }, +{ "type": "Feature", "properties": { "location": "6408 CHARLES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057087390571496, 40.028109347024703 ] } }, +{ "type": "Feature", "properties": { "location": "867 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181569428095003, 39.972309809873899 ] } }, +{ "type": "Feature", "properties": { "location": "865 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181569428095003, 39.972309809873899 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 67TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.253740843501205, 39.974773830525599 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159763, 39.974632 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213008195965898, 40.021422669282302 ] } }, +{ "type": "Feature", "properties": { "location": "7036 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.06884, 40.047295 ] } }, +{ "type": "Feature", "properties": { "location": "3600 FREELAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206277587557295, 40.018020776558899 ] } }, +{ "type": "Feature", "properties": { "location": "500 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127828, 39.969822 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "405 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "407 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W NEVADA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151468003776301, 39.986759350114099 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167865757162005, 39.994295013418302 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167865757162005, 39.994295013418302 ] } }, +{ "type": "Feature", "properties": { "location": "2900 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183119733335204, 39.977615239156101 ] } }, +{ "type": "Feature", "properties": { "location": "2900 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183119733335204, 39.977615239156101 ] } }, +{ "type": "Feature", "properties": { "location": "2900 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183119733335204, 39.977615239156101 ] } }, +{ "type": "Feature", "properties": { "location": "3000 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184716375879006, 39.977829388133202 ] } }, +{ "type": "Feature", "properties": { "location": "5100 EADOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069622702273904, 40.010021926374797 ] } }, +{ "type": "Feature", "properties": { "location": "4538 ROBBINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.054884883139906, 40.021837030807198 ] } }, +{ "type": "Feature", "properties": { "location": "4724 MERIDIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.027962010602593, 40.032894661117197 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183958677408299, 39.920456940745296 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155388485861593, 39.959648400917096 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155385, 39.958997 ] } }, +{ "type": "Feature", "properties": { "location": "2517 N CORLIES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181270326244501, 39.994985069137897 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140303330652998, 40.008662944211402 ] } }, +{ "type": "Feature", "properties": { "location": "3815 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18757, 39.95895 ] } }, +{ "type": "Feature", "properties": { "location": "5645 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234729604511102, 39.977733102029603 ] } }, +{ "type": "Feature", "properties": { "location": "2500 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234266811906295, 39.918353779573501 ] } }, +{ "type": "Feature", "properties": { "location": "1234 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162767, 39.943872 ] } }, +{ "type": "Feature", "properties": { "location": "899 E PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153612, 39.937913 ] } }, +{ "type": "Feature", "properties": { "location": "2900 S FELTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222310373834802, 39.9213775715967 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 67TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2378427961238, 39.924571000137803 ] } }, +{ "type": "Feature", "properties": { "location": "6400 CHELWYNDE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227404158794599, 39.920691487607897 ] } }, +{ "type": "Feature", "properties": { "location": "2447 S DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161686647037698, 39.918864244597899 ] } }, +{ "type": "Feature", "properties": { "location": "5300 WILLOWS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227495926547903, 39.944609727971098 ] } }, +{ "type": "Feature", "properties": { "location": "6100 ELMWOOD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225096179751901, 39.925877430573799 ] } }, +{ "type": "Feature", "properties": { "location": "6724 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168155, 39.92163 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161232, 39.982278 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161178, 39.98225 ] } }, +{ "type": "Feature", "properties": { "location": "514 W LYCOMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136538133522606, 40.013587276591998 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.23402, 39.926325 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234002, 39.9261 ] } }, +{ "type": "Feature", "properties": { "location": "1519 OGDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162330121276298, 39.969907045523101 ] } }, +{ "type": "Feature", "properties": { "location": "500 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152737, 39.934273 ] } }, +{ "type": "Feature", "properties": { "location": "1399 W DUNCANNON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145738, 40.032092 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BROWN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165436429543405, 39.968539401804399 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1912 S 4TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152989635564197, 39.924471035427104 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158458, 39.9384 ] } }, +{ "type": "Feature", "properties": { "location": "300 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1531965079717, 39.915849511168702 ] } }, +{ "type": "Feature", "properties": { "location": "2000 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175252833671607, 39.946187952757398 ] } }, +{ "type": "Feature", "properties": { "location": "1112 GERRITT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163532048922704, 39.931670234835401 ] } }, +{ "type": "Feature", "properties": { "location": "800 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158182, 39.929975 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S REESE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156542062683897, 39.918206491630201 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N BAMBREY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1722270629147, 40.001699634804098 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "36 HAMILTON CIR", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170331343014993, 39.962656248427798 ] } }, +{ "type": "Feature", "properties": { "location": "62 W CHELTENHAM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117812805399197, 40.050714694707104 ] } }, +{ "type": "Feature", "properties": { "location": "100 W GODFREY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.120461636993198, 40.044602770932599 ] } }, +{ "type": "Feature", "properties": { "location": "100 LINTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.121281541949102, 40.041020404649601 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.246076794037805, 39.946188072321803 ] } }, +{ "type": "Feature", "properties": { "location": "3799 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213684097447299, 40.019539110138702 ] } }, +{ "type": "Feature", "properties": { "location": "100 DAWSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212679859814898, 40.018800379132003 ] } }, +{ "type": "Feature", "properties": { "location": "174 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N FRANKLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138624302309196, 40.019426015622997 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166905, 39.965303 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157948, 39.960982 ] } }, +{ "type": "Feature", "properties": { "location": "200 BENNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.104444536098498, 40.048879143714601 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159655, 39.975918 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159548, 39.976005 ] } }, +{ "type": "Feature", "properties": { "location": "400 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148384345945999, 39.948937388993798 ] } }, +{ "type": "Feature", "properties": { "location": "1200 VINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159512529741704, 39.957289709592501 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 8TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1534733876654, 39.951647407314503 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "1127 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161886411962897, 39.939083824858699 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141372, 39.9654 ] } }, +{ "type": "Feature", "properties": { "location": "608 GREENWICH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155597, 39.929658 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "3300 F ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117011306597504, 39.998810500751901 ] } }, +{ "type": "Feature", "properties": { "location": "6800 PASCHALL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238028287658807, 39.9211161758017 ] } }, +{ "type": "Feature", "properties": { "location": "2246 S FELTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230552201313998, 39.9272865233917 ] } }, +{ "type": "Feature", "properties": { "location": "5500 BROOMALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232136986038796, 39.944274552826499 ] } }, +{ "type": "Feature", "properties": { "location": "6328 REGENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236871199504506, 39.928633872123797 ] } }, +{ "type": "Feature", "properties": { "location": "6300 REGENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236871199504506, 39.928633872123797 ] } }, +{ "type": "Feature", "properties": { "location": "6326 REGENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236871199504506, 39.928633872123797 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168132, 39.93968 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168148, 39.939808 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168168, 39.93969 ] } }, +{ "type": "Feature", "properties": { "location": "900 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15771, 39.945542 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 36TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193843, 39.957038 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "1928 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161928, 39.983292 ] } }, +{ "type": "Feature", "properties": { "location": "6600 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235898990721395, 39.9244707588648 ] } }, +{ "type": "Feature", "properties": { "location": "5927 ELSINORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099461666306198, 40.043151283959197 ] } }, +{ "type": "Feature", "properties": { "location": "900 GRANITE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091344380469593, 40.031211659254197 ] } }, +{ "type": "Feature", "properties": { "location": "6300 ALGON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085743302797397, 40.043150411282497 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140967, 40.039388 ] } }, +{ "type": "Feature", "properties": { "location": "900 S SARTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162288159317299, 39.939082887690603 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155642609784906, 39.919792322538598 ] } }, +{ "type": "Feature", "properties": { "location": "600 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1556906994537, 39.930530388409302 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175912, 39.926465 ] } }, +{ "type": "Feature", "properties": { "location": "7209 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.037265041886897, 40.031326052479699 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163785, 39.945065 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 56TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218920499655596, 39.932073943902701 ] } }, +{ "type": "Feature", "properties": { "location": "6000 NEWTOWN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105984777878703, 40.048691224521598 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164632, 39.930065 ] } }, +{ "type": "Feature", "properties": { "location": "6200 LARGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077502358495494, 40.036005798519497 ] } }, +{ "type": "Feature", "properties": { "location": "400 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149832, 39.94283 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16349, 39.935073 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155778, 39.954332 ] } }, +{ "type": "Feature", "properties": { "location": "2534 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234788011345998, 39.9179860542299 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227018414596103, 39.942084266968202 ] } }, +{ "type": "Feature", "properties": { "location": "2600 HOBSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317923606129, 39.917938822517002 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226343, 40.027707 ] } }, +{ "type": "Feature", "properties": { "location": "500 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154188, 39.933182 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165287, 39.917388 ] } }, +{ "type": "Feature", "properties": { "location": "3500 STOUTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.104852698238005, 39.9998344401371 ] } }, +{ "type": "Feature", "properties": { "location": "2500 W ARIZONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174236953725298, 39.991393859692799 ] } }, +{ "type": "Feature", "properties": { "location": "1528 S HICKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170490822571594, 39.931385154366701 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140450599299299, 40.0002362687421 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ARGYLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111819206454001, 39.998691024209499 ] } }, +{ "type": "Feature", "properties": { "location": "3300 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111371859365207, 39.998630400763197 ] } }, +{ "type": "Feature", "properties": { "location": "231 E CAMBRIA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127347433600903, 39.993597146568 ] } }, +{ "type": "Feature", "properties": { "location": "700 LATONA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157405, 39.933407 ] } }, +{ "type": "Feature", "properties": { "location": "2700 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131266217413199, 39.991752396303198 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 40TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15535, 39.954343 ] } }, +{ "type": "Feature", "properties": { "location": "7001 KINDRED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.067107545156304, 40.046026757132601 ] } }, +{ "type": "Feature", "properties": { "location": "6600 HORROCKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070625358152896, 40.040422295600102 ] } }, +{ "type": "Feature", "properties": { "location": "2900 JANNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114805389329604, 39.986857444082197 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "3200 MILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104084161849499, 39.987003222366297 ] } }, +{ "type": "Feature", "properties": { "location": "200 VAN KIRK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1076150877022, 40.046830119137397 ] } }, +{ "type": "Feature", "properties": { "location": "600 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099698519485102, 40.0410411268061 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1561188514181, 40.021686855650898 ] } }, +{ "type": "Feature", "properties": { "location": "7018 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "3300 A ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126842910810396, 40.0006281605122 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163768909327601, 39.943880565987399 ] } }, +{ "type": "Feature", "properties": { "location": "3100 POTTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114924971536098, 39.996205261446804 ] } }, +{ "type": "Feature", "properties": { "location": "4000 CLARIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103990037983806, 40.008625827814598 ] } }, +{ "type": "Feature", "properties": { "location": "3900 HOWLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103703751231507, 40.007054597392496 ] } }, +{ "type": "Feature", "properties": { "location": "2353 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158952902902001, 39.919380776094499 ] } }, +{ "type": "Feature", "properties": { "location": "3723 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225206037045297, 39.9640698005012 ] } }, +{ "type": "Feature", "properties": { "location": "5124 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224608, 39.972492 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159132, 39.920573 ] } }, +{ "type": "Feature", "properties": { "location": "2800 WATERLOO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131923344691202, 39.993414172869102 ] } }, +{ "type": "Feature", "properties": { "location": "1733 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176878, 39.929175 ] } }, +{ "type": "Feature", "properties": { "location": "5411 HAWTHORNE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071345115801705, 40.022139196347901 ] } }, +{ "type": "Feature", "properties": { "location": "1703 KENNEDY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071689761920595, 40.0215939945626 ] } }, +{ "type": "Feature", "properties": { "location": "5420 MULBERRY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070804757076502, 40.021720881286903 ] } }, +{ "type": "Feature", "properties": { "location": "413 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ORTHODOX ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090815421765797, 40.017621192057902 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173242, 39.92575 ] } }, +{ "type": "Feature", "properties": { "location": "5410 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231141416693006, 39.978447410406197 ] } }, +{ "type": "Feature", "properties": { "location": "5440 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231141416693006, 39.978447410406197 ] } }, +{ "type": "Feature", "properties": { "location": "400 N WANAMAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236172751200201, 39.968168702418403 ] } }, +{ "type": "Feature", "properties": { "location": "600 N PEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227897833938997, 39.970715112489202 ] } }, +{ "type": "Feature", "properties": { "location": "600 N PEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227897833938997, 39.970715112489202 ] } }, +{ "type": "Feature", "properties": { "location": "600 N PEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227897833938997, 39.970715112489202 ] } }, +{ "type": "Feature", "properties": { "location": "5701 HUNTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "500 TREE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156995, 39.920728 ] } }, +{ "type": "Feature", "properties": { "location": "514 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155718650518097, 39.920870874552598 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196367372831503, 39.934716375698997 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S COLORADO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173345696621595, 39.933007048200601 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 57TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234499758225496, 39.963004847341701 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101805, 40.008108 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168133, 39.943547 ] } }, +{ "type": "Feature", "properties": { "location": "801 N 50TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220326816767496, 39.966082529994203 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155408, 39.921333 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155317, 39.921188 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CHURCHVIEW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216712, 40.024865 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153235, 39.94251 ] } }, +{ "type": "Feature", "properties": { "location": "400 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154786755766395, 39.9199065267794 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078083, 40.022268 ] } }, +{ "type": "Feature", "properties": { "location": "300 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153017474320606, 39.919676186059803 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N HOBART ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240151722368395, 39.987455537574903 ] } }, +{ "type": "Feature", "properties": { "location": "4100 HOUGHTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207948, 40.028815 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 56TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.223918488664197, 39.936289238612602 ] } }, +{ "type": "Feature", "properties": { "location": "1600 GRIFFITH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064206131282603, 40.063465592327503 ] } }, +{ "type": "Feature", "properties": { "location": "1600 GRIFFITH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064206131282603, 40.063465592327503 ] } }, +{ "type": "Feature", "properties": { "location": "400 VOLLMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155474293425698, 39.916665681953397 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134355, 39.972323 ] } }, +{ "type": "Feature", "properties": { "location": "600 AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142297, 39.961525 ] } }, +{ "type": "Feature", "properties": { "location": "2218 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182155250715695, 39.932698106418201 ] } }, +{ "type": "Feature", "properties": { "location": "400 GEORGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14512, 39.968158 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "2507 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15517, 39.99093 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16656, 39.965185 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16677, 39.965173 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228078, 40.02825 ] } }, +{ "type": "Feature", "properties": { "location": "2229 S DARIEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1611554005421, 39.921367054069499 ] } }, +{ "type": "Feature", "properties": { "location": "5721 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237167968744203, 39.977461788746801 ] } }, +{ "type": "Feature", "properties": { "location": "912 S YEWDALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230563383396003, 39.945322639923198 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171018, 39.94105 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 26TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179610415649293, 39.970483746178701 ] } }, +{ "type": "Feature", "properties": { "location": "1633 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155505078731494, 39.9277545765733 ] } }, +{ "type": "Feature", "properties": { "location": "931 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159619137927507, 39.938276477637899 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147158, 40.041625 ] } }, +{ "type": "Feature", "properties": { "location": "5700 HUNTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16107, 39.924542 ] } }, +{ "type": "Feature", "properties": { "location": "6800 PASCHALL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238028287658807, 39.9211161758017 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224188, 40.026818 ] } }, +{ "type": "Feature", "properties": { "location": "1602 W JUNIATA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153440425218506, 40.018627083541602 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153177, 39.938147 ] } }, +{ "type": "Feature", "properties": { "location": "700 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154220787904094, 39.942655499180901 ] } }, +{ "type": "Feature", "properties": { "location": "4469 FOUNDERS PL", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.200172991916205, 40.013198817535198 ] } }, +{ "type": "Feature", "properties": { "location": "2952 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155835, 39.928925 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155588, 39.929475 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 64TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234601819483899, 39.927747876805803 ] } }, +{ "type": "Feature", "properties": { "location": "175 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122676584184106, 40.043817504728999 ] } }, +{ "type": "Feature", "properties": { "location": "200 VAN KIRK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1076150877022, 40.046830119137397 ] } }, +{ "type": "Feature", "properties": { "location": "6100 RIDGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2167, 40.034768 ] } }, +{ "type": "Feature", "properties": { "location": "7400 ERDRICK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.036728329870698, 40.036825436170098 ] } }, +{ "type": "Feature", "properties": { "location": "6700 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238278047178198, 39.923771572903703 ] } }, +{ "type": "Feature", "properties": { "location": "6700 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238278047178198, 39.923771572903703 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.074651814421301, 40.019083480429003 ] } }, +{ "type": "Feature", "properties": { "location": "500 W COULTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179315092126501, 40.024603013720998 ] } }, +{ "type": "Feature", "properties": { "location": "212 HARVEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181664058564607, 40.035302267256903 ] } }, +{ "type": "Feature", "properties": { "location": "281 HARVEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181664058564607, 40.035302267256903 ] } }, +{ "type": "Feature", "properties": { "location": "245 HARVEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181664058564607, 40.035302267256903 ] } }, +{ "type": "Feature", "properties": { "location": "300 W DUVAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187271683136004, 40.039269170013199 ] } }, +{ "type": "Feature", "properties": { "location": "5900 LENA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175626792864094, 40.0385294111992 ] } }, +{ "type": "Feature", "properties": { "location": "2600 SWAIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180528, 39.969888 ] } }, +{ "type": "Feature", "properties": { "location": "5910 MORTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172540707565304, 40.0431274996767 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122998, 39.973765 ] } }, +{ "type": "Feature", "properties": { "location": "200 E CLAPIER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160179630187699, 40.031490963607602 ] } }, +{ "type": "Feature", "properties": { "location": "6015 BAYNTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176053103603195, 40.041528223058499 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077833, 40.021983 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18764, 39.958843 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155812, 39.921238 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167345, 39.930367 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 51ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223688, 39.956132 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160307, 39.92038 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159857, 39.920497 ] } }, +{ "type": "Feature", "properties": { "location": "229 S 45TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211798109472994, 39.954669285421097 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155892, 39.92629 ] } }, +{ "type": "Feature", "properties": { "location": "700 S JESSUP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161021210395504, 39.9417047506318 ] } }, +{ "type": "Feature", "properties": { "location": "200 WATKINS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151193, 39.926552 ] } }, +{ "type": "Feature", "properties": { "location": "710 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180539223462006, 39.9440396484286 ] } }, +{ "type": "Feature", "properties": { "location": "623 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156153336714894, 39.9284454627538 ] } }, +{ "type": "Feature", "properties": { "location": "5900 TRINITY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231314050389599, 39.934707658451003 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173317, 39.925493 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173377, 39.937752 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175582, 39.927572 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "1501 GREGG ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.045438219992306, 40.082284253909798 ] } }, +{ "type": "Feature", "properties": { "location": "400 AVON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.029540093361405, 40.1145171571616 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N TAYLOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171283656234905, 39.998498526828399 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154815, 39.923713 ] } }, +{ "type": "Feature", "properties": { "location": "3400 TILDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.190323, 40.012863 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151592, 39.920825 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151898, 39.929528 ] } }, +{ "type": "Feature", "properties": { "location": "6047 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081273, 40.035257 ] } }, +{ "type": "Feature", "properties": { "location": "6300 LARGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.076234347400899, 40.0373545466134 ] } }, +{ "type": "Feature", "properties": { "location": "600 E ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118433893288696, 40.000305814905801 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22641, 40.027793 ] } }, +{ "type": "Feature", "properties": { "location": "2300 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174001483446901, 39.977484118615401 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 4TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148577, 39.944493 ] } }, +{ "type": "Feature", "properties": { "location": "800 S ROSEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16714, 39.940423 ] } }, +{ "type": "Feature", "properties": { "location": "800 S ROSEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167113, 39.940547 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224657809221597, 40.026676130210802 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221836951648896, 40.0255767713804 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221893, 40.025822 ] } }, +{ "type": "Feature", "properties": { "location": "299 W GEORGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140732, 39.967585 ] } }, +{ "type": "Feature", "properties": { "location": "2100 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109914915790995, 39.991402701771698 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182952, 39.942243 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163437273571901, 39.939270976189697 ] } }, +{ "type": "Feature", "properties": { "location": "1100 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127825, 39.969823 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159478989300695, 39.973261321926302 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176787, 39.945602 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170388, 39.949528 ] } }, +{ "type": "Feature", "properties": { "location": "919 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15646, 39.93784 ] } }, +{ "type": "Feature", "properties": { "location": "197 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "5400 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.230600051737994, 39.956413205373998 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15582, 39.92909 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128207, 39.967117 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10446, 39.996523 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105838, 39.996452 ] } }, +{ "type": "Feature", "properties": { "location": "260 SEVILLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212995381035896, 40.022501017011301 ] } }, +{ "type": "Feature", "properties": { "location": "800 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "600 VAN KIRK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099281813445302, 40.042100223624701 ] } }, +{ "type": "Feature", "properties": { "location": "300 ELWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1583865268273, 40.031405993470599 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MAGEE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075802094238696, 40.042347208234297 ] } }, +{ "type": "Feature", "properties": { "location": "1366 FANSHAWE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.076794836773104, 40.044170146786797 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138987682111505, 40.014720665919299 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161970851488803, 39.9807846433824 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17451, 39.971188 ] } }, +{ "type": "Feature", "properties": { "location": "320 N GROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246690718217707, 39.968209775515099 ] } }, +{ "type": "Feature", "properties": { "location": "1433 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076210565799897, 40.041907669535199 ] } }, +{ "type": "Feature", "properties": { "location": "2645 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140371227161793, 39.991293711284499 ] } }, +{ "type": "Feature", "properties": { "location": "1200 LOCUST ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161181935201498, 39.947792290912901 ] } }, +{ "type": "Feature", "properties": { "location": "3100 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126569227241703, 39.997447435823403 ] } }, +{ "type": "Feature", "properties": { "location": "619 N 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155795145609602, 39.963245730194203 ] } }, +{ "type": "Feature", "properties": { "location": "1100 ARCH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158649964556702, 39.953852097650703 ] } }, +{ "type": "Feature", "properties": { "location": "4600 D ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1163815876413, 40.019187282331302 ] } }, +{ "type": "Feature", "properties": { "location": "3300 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111371859365207, 39.998630400763197 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157877, 39.931573 ] } }, +{ "type": "Feature", "properties": { "location": "2500 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176808, 39.977823 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156677, 39.937162 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155223, 39.95968 ] } }, +{ "type": "Feature", "properties": { "location": "900 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15387, 39.959573 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091042, 40.007108 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S FRONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148944397467304, 39.918925593805 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214198, 40.02363 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154088, 39.927825 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173537, 39.948482 ] } }, +{ "type": "Feature", "properties": { "location": "4700 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216307, 39.954808 ] } }, +{ "type": "Feature", "properties": { "location": "4700 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217015, 39.95473 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142458, 39.969308 ] } }, +{ "type": "Feature", "properties": { "location": "3422 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192582, 39.963353 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086173, 40.013887 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159277, 39.920503 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159163, 39.920573 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206615, 39.953225 ] } }, +{ "type": "Feature", "properties": { "location": "6250 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246369066741195, 39.959538635384099 ] } }, +{ "type": "Feature", "properties": { "location": "5000 GRISCOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080297, 40.021935 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153413, 39.928848 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S PATTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196892085886901, 39.934779294599998 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.106187, 39.996132 ] } }, +{ "type": "Feature", "properties": { "location": "6000 ARCH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.240751196190402, 39.963576187658397 ] } }, +{ "type": "Feature", "properties": { "location": "2120 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064010298178701, 40.014484142812499 ] } }, +{ "type": "Feature", "properties": { "location": "5900 JANNETTE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209557005813593, 40.032158797065101 ] } }, +{ "type": "Feature", "properties": { "location": "191 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224978854150393, 40.029976752046998 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137572, 39.96814 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 82ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.251635571296106, 39.900783222745197 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137518, 39.968103 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137575, 39.968135 ] } }, +{ "type": "Feature", "properties": { "location": "3500 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1927, 39.961283 ] } }, +{ "type": "Feature", "properties": { "location": "1229 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159348, 39.958523 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160875, 39.958752 ] } }, +{ "type": "Feature", "properties": { "location": "600 N WATTS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160188, 39.964582 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W PASSYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174984097362298, 39.924483409012197 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166362, 39.93551 ] } }, +{ "type": "Feature", "properties": { "location": "6337 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142381857600796, 40.049802985872503 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090961135573806, 40.007382074634499 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090977, 40.007127 ] } }, +{ "type": "Feature", "properties": { "location": "400 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153412, 39.92975 ] } }, +{ "type": "Feature", "properties": { "location": "5958 TRINITY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231314050389599, 39.934707658451003 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156442, 39.95815 ] } }, +{ "type": "Feature", "properties": { "location": "200 WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161872, 39.957085 ] } }, +{ "type": "Feature", "properties": { "location": "600 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155535, 39.93257 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133442, 39.975237 ] } }, +{ "type": "Feature", "properties": { "location": "3500 ENGLEWOOD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.043198, 40.037155 ] } }, +{ "type": "Feature", "properties": { "location": "6100 NASSAU RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.244352770854405, 39.979189469431297 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155398, 39.921228 ] } }, +{ "type": "Feature", "properties": { "location": "900 ATWOOD RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.250572604527505, 39.976790646996498 ] } }, +{ "type": "Feature", "properties": { "location": "4844 E ROOSEVELT BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.095641596500201, 40.026619828528503 ] } }, +{ "type": "Feature", "properties": { "location": "1723 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15989, 39.974725 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156928, 39.921492 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134337, 39.97247 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137527, 39.968152 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137592, 39.96818 ] } }, +{ "type": "Feature", "properties": { "location": "4400 GARDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071332187460499, 39.996807026488298 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13933, 39.959065 ] } }, +{ "type": "Feature", "properties": { "location": "200 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1264943359743, 39.9992864705073 ] } }, +{ "type": "Feature", "properties": { "location": "3200 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125991912432795, 39.998672429988602 ] } }, +{ "type": "Feature", "properties": { "location": "1509 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1686, 39.94488 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170355, 39.949685 ] } }, +{ "type": "Feature", "properties": { "location": "3200 KNORR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.052890905012205, 40.033387584448199 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159328, 39.977098 ] } }, +{ "type": "Feature", "properties": { "location": "1916 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178462, 39.924255 ] } }, +{ "type": "Feature", "properties": { "location": "208 E CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127982921392999, 39.993679328318599 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166105, 39.965157 ] } }, +{ "type": "Feature", "properties": { "location": "1379 S 46TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208576257920498, 39.9434273943573 ] } }, +{ "type": "Feature", "properties": { "location": "6700 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231751826874103, 39.919045028464197 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180492, 39.9716 ] } }, +{ "type": "Feature", "properties": { "location": "4100 APPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21871, 40.02427 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 38TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197227, 39.962327 ] } }, +{ "type": "Feature", "properties": { "location": "2100 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109914915790995, 39.991402701771698 ] } }, +{ "type": "Feature", "properties": { "location": "2100 W OLNEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157095, 40.04078 ] } }, +{ "type": "Feature", "properties": { "location": "800 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157353, 39.934068 ] } }, +{ "type": "Feature", "properties": { "location": "3600 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195743, 39.962982 ] } }, +{ "type": "Feature", "properties": { "location": "500 JUDSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176635, 39.965042 ] } }, +{ "type": "Feature", "properties": { "location": "500 JUDSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176692, 39.964888 ] } }, +{ "type": "Feature", "properties": { "location": "500 JUDSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176688, 39.964872 ] } }, +{ "type": "Feature", "properties": { "location": "500 JUDSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17672, 39.964883 ] } }, +{ "type": "Feature", "properties": { "location": "500 JUDSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176832, 39.964795 ] } }, +{ "type": "Feature", "properties": { "location": "723 S 3RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148052, 39.939915 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156346957061103, 40.023245894636801 ] } }, +{ "type": "Feature", "properties": { "location": "4118 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214926086018494, 40.025349528324298 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177183, 39.953758 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175952, 39.941713 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225432, 39.972427 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15981, 39.974778 ] } }, +{ "type": "Feature", "properties": { "location": "7100 CRISPIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.045827, 40.036975 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 39TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199433, 39.961518 ] } }, +{ "type": "Feature", "properties": { "location": "2026 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "5657 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158381862660406, 40.041112812155497 ] } }, +{ "type": "Feature", "properties": { "location": "600 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156128, 39.926877 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1606349386674, 39.981382342078 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1561135737889, 39.9580729630908 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134282, 39.972413 ] } }, +{ "type": "Feature", "properties": { "location": "7300 GARMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240952190343293, 39.911827512040297 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212872, 39.955482 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188498, 39.958957 ] } }, +{ "type": "Feature", "properties": { "location": "5300 W STILES ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228132669713105, 39.9719854004992 ] } }, +{ "type": "Feature", "properties": { "location": "600 E TIOGA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118095923580299, 40.001848406580002 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149797, 39.946888 ] } }, +{ "type": "Feature", "properties": { "location": "1599 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086282, 40.015087 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090913, 40.007482 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090958, 40.007133 ] } }, +{ "type": "Feature", "properties": { "location": "1928 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161895, 39.983295 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171035, 39.933315 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181913, 39.974432 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224207494490301, 39.935725680592299 ] } }, +{ "type": "Feature", "properties": { "location": "4900 OSAGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221444819505606, 39.952159493530402 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 15TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167242, 39.943348 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N DELAWARE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130122, 39.966363 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145302, 39.972578 ] } }, +{ "type": "Feature", "properties": { "location": "2000 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175742, 39.948353 ] } }, +{ "type": "Feature", "properties": { "location": "900 BUTTONWOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153643, 39.96077 ] } }, +{ "type": "Feature", "properties": { "location": "200 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141168907459402, 39.964356723690102 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218533670274198, 40.0267494724595 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073588, 40.043605 ] } }, +{ "type": "Feature", "properties": { "location": "11870 BASILE RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.982408969866199, 40.0936256640314 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158211866833994, 40.010971387071102 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S COLORADO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173345696621595, 39.933007048200601 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176158, 39.941675 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11684, 39.976258 ] } }, +{ "type": "Feature", "properties": { "location": "4024 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101202194041093, 40.008260715641597 ] } }, +{ "type": "Feature", "properties": { "location": "4026 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101202194041093, 40.008260715641597 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149237, 39.93952 ] } }, +{ "type": "Feature", "properties": { "location": "3900 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200316548392394, 39.960534383626403 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159167, 39.920577 ] } }, +{ "type": "Feature", "properties": { "location": "1914 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17594, 39.93671 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155488, 39.927063 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155443, 39.927235 ] } }, +{ "type": "Feature", "properties": { "location": "48 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W ALLEGHENY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150657, 40.001377 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W WESTMORELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151242, 40.002957 ] } }, +{ "type": "Feature", "properties": { "location": "100 BEECHWOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175615, 39.956357 ] } }, +{ "type": "Feature", "properties": { "location": "1307 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163572, 39.943837 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160325, 39.951002 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160302, 39.951335 ] } }, +{ "type": "Feature", "properties": { "location": "3600 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195442, 39.954937 ] } }, +{ "type": "Feature", "properties": { "location": "5600 WINDSOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228507048455796, 39.939002284704699 ] } }, +{ "type": "Feature", "properties": { "location": "5600 WINDSOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228507048455796, 39.939002284704699 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196947, 39.960792 ] } }, +{ "type": "Feature", "properties": { "location": "1626 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170005, 39.943343 ] } }, +{ "type": "Feature", "properties": { "location": "330 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188056889150701, 40.0402060406388 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151411966648396, 39.949845293803897 ] } }, +{ "type": "Feature", "properties": { "location": "4936 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221303984573197, 39.955260035227298 ] } }, +{ "type": "Feature", "properties": { "location": "7200 SACKETT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.048749376164096, 40.039092870173299 ] } }, +{ "type": "Feature", "properties": { "location": "305 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214083, 40.024627 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144397, 39.96864 ] } }, +{ "type": "Feature", "properties": { "location": "100 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139623, 39.96364 ] } }, +{ "type": "Feature", "properties": { "location": "199 N 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18931, 39.958467 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183585, 39.9746 ] } }, +{ "type": "Feature", "properties": { "location": "427 N 64TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.247360879059798, 39.969852440477503 ] } }, +{ "type": "Feature", "properties": { "location": "3800 TERRACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212154243088094, 40.019848105326901 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149512, 40.005262 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.08978, 40.009612 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155325, 39.959722 ] } }, +{ "type": "Feature", "properties": { "location": "7000 LORETTO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.071592340437803, 40.0480526593268 ] } }, +{ "type": "Feature", "properties": { "location": "900 DUDLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162405, 39.925112 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133949690684602, 39.9744969130737 ] } }, +{ "type": "Feature", "properties": { "location": "2100 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109914915790995, 39.991402701771698 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N HOWARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129493467285101, 40.0025100033737 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149528, 40.005203 ] } }, +{ "type": "Feature", "properties": { "location": "2700 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147752, 39.993908 ] } }, +{ "type": "Feature", "properties": { "location": "5800 KNOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179737888536593, 40.033878591953901 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127813, 39.967493 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12768, 39.967455 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161008, 39.920817 ] } }, +{ "type": "Feature", "properties": { "location": "145 E STERNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129830078458298, 39.991274775372297 ] } }, +{ "type": "Feature", "properties": { "location": "2700 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140691065757395, 39.992966457352601 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086193, 40.013745 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WYOMING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117928213579603, 40.020758246232099 ] } }, +{ "type": "Feature", "properties": { "location": "400 S VAN PELT ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177527, 39.94618 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161578, 39.921982 ] } }, +{ "type": "Feature", "properties": { "location": "5400 NORFOLK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232239623768095, 39.948581513477997 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 41ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205708, 39.948193 ] } }, +{ "type": "Feature", "properties": { "location": "3400 CONRAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18931, 40.011942 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152933, 39.950153 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168133, 39.93971 ] } }, +{ "type": "Feature", "properties": { "location": "4000 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202511165225403, 39.960368986495403 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123132, 39.973847 ] } }, +{ "type": "Feature", "properties": { "location": "45 E PENN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168388414661706, 40.033124014656202 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1594, 39.975172 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141542, 40.03938 ] } }, +{ "type": "Feature", "properties": { "location": "550 E ASHMEAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160316973341295, 40.037770118497498 ] } }, +{ "type": "Feature", "properties": { "location": "600 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156138059500293, 39.929722298083398 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101797, 40.008747 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 42ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207007, 39.947228 ] } }, +{ "type": "Feature", "properties": { "location": "800 BLEIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0843240015936, 40.064189122344203 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169269724172295, 39.928085368665201 ] } }, +{ "type": "Feature", "properties": { "location": "2301 DELANCEY PL", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179192, 39.94807 ] } }, +{ "type": "Feature", "properties": { "location": "7300 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241543650148898, 39.912637767486501 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 7TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154043, 39.941703 ] } }, +{ "type": "Feature", "properties": { "location": "100 GREEN LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226911392133303, 40.027134129049301 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153545, 39.929278 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W STILES ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185757601967694, 39.975488012413798 ] } }, +{ "type": "Feature", "properties": { "location": "715 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175343, 39.94351 ] } }, +{ "type": "Feature", "properties": { "location": "6100 MCCALLUM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180982963768102, 40.039728472431896 ] } }, +{ "type": "Feature", "properties": { "location": "573 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102288944325693, 40.041170137360503 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218533670274198, 40.0267494724595 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214613238467905, 40.028512966070998 ] } }, +{ "type": "Feature", "properties": { "location": "361 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221032342641394, 40.0328599036282 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "500 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150872, 39.944305 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BINGHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109943597772798, 40.034865433003198 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S MOLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171202680219693, 39.9302186466291 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 33RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189257, 39.95894 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S MOLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171327, 39.929788 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134422, 39.972498 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143455, 39.95508 ] } }, +{ "type": "Feature", "properties": { "location": "800 E ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1148, 39.999923 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166797, 39.954232 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167012, 39.95457 ] } }, +{ "type": "Feature", "properties": { "location": "6800 HORROCKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.068271907243599, 40.0429109415103 ] } }, +{ "type": "Feature", "properties": { "location": "1300 GREEBY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078771692602999, 40.042732994922403 ] } }, +{ "type": "Feature", "properties": { "location": "6510 CRANFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.078569358745696, 40.042305046048497 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "600 AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141982, 39.962747 ] } }, +{ "type": "Feature", "properties": { "location": "2800 MASTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181477797733294, 39.977409498387303 ] } }, +{ "type": "Feature", "properties": { "location": "825 N 16TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163270584374501, 39.969275123910798 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N SYDENHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160500305150094, 39.978300283642703 ] } }, +{ "type": "Feature", "properties": { "location": "1100 E CAYUGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105116380529395, 40.014338847087501 ] } }, +{ "type": "Feature", "properties": { "location": "1100 E CAYUGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105116380529395, 40.014338847087501 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174493, 39.963695 ] } }, +{ "type": "Feature", "properties": { "location": "100 W ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1295319823043, 39.9985775601588 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SEDGLEY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152652, 39.999012 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PIKE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.095952, 40.004818 ] } }, +{ "type": "Feature", "properties": { "location": "299 JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16341, 39.947643 ] } }, +{ "type": "Feature", "properties": { "location": "299 JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163297, 39.947792 ] } }, +{ "type": "Feature", "properties": { "location": "602 N 57TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233909450217695, 39.968918421067201 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156339860281406, 39.954506737577802 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15963, 39.976017 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159687, 39.97455 ] } }, +{ "type": "Feature", "properties": { "location": "700 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158334695615395, 39.925834606298999 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N ORIANNA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142772, 39.967765 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171873, 39.922132 ] } }, +{ "type": "Feature", "properties": { "location": "199 GRAPE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222927, 40.026145 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128272, 39.967198 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218533670274198, 40.0267494724595 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17667, 39.92282 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S CARLISLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169035, 39.931782 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161268, 39.92331 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154957, 39.949095 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174112, 39.919637 ] } }, +{ "type": "Feature", "properties": { "location": "1205 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161117, 39.94654 ] } }, +{ "type": "Feature", "properties": { "location": "400 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130292, 39.972052 ] } }, +{ "type": "Feature", "properties": { "location": "2500 BLEIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.054182614543507, 40.047697569671698 ] } }, +{ "type": "Feature", "properties": { "location": "3200 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125991912432795, 39.998672429988602 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160382, 39.942118 ] } }, +{ "type": "Feature", "properties": { "location": "3100 WEYMOUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117046422205306, 39.996149419942 ] } }, +{ "type": "Feature", "properties": { "location": "3200 E ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.119248613271793, 39.997623921665699 ] } }, +{ "type": "Feature", "properties": { "location": "1 N REDFIELD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239210668241796, 39.962997115516302 ] } }, +{ "type": "Feature", "properties": { "location": "OPP710 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152742, 39.949435 ] } }, +{ "type": "Feature", "properties": { "location": "6100 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "500 SAINT JAMES ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14993, 39.946652 ] } }, +{ "type": "Feature", "properties": { "location": "6000 DELANCEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242990759656806, 39.956139112432098 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 64TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227456565264006, 39.921694296237099 ] } }, +{ "type": "Feature", "properties": { "location": "1200 BENNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.084413, 40.037618 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187989848690293, 39.9588431484175 ] } }, +{ "type": "Feature", "properties": { "location": "5100 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072334371451106, 40.0152390703959 ] } }, +{ "type": "Feature", "properties": { "location": "5200 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070571837352503, 40.015432619831302 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157977, 39.924995 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155383, 39.984553 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "4200 SILVERWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220278, 40.025193 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155818, 39.921378 ] } }, +{ "type": "Feature", "properties": { "location": "200 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "200 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "1200 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160444598686794, 39.953032377347803 ] } }, +{ "type": "Feature", "properties": { "location": "800 ALMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124372, 39.974987 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134253, 39.972452 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073698, 40.043347 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161987, 39.956613 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WALNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168928, 39.949975 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186317, 39.941543 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186372, 39.941543 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186322, 39.941905 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185737751476196, 39.941934123871498 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126316707691501, 39.970390943341698 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "6715 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071889001903699, 40.043025600234699 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161340914791893, 39.9855363164096 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 23RD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179697, 39.945503 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142453, 39.969148 ] } }, +{ "type": "Feature", "properties": { "location": "5200 KERSHAW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226945551075701, 39.9735424992597 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S ALDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227013821463203, 39.9358202863434 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CONLYN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154299971591499, 40.042762315088297 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173634883259098, 39.936509633234998 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226073102746895, 39.934412452547697 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15577, 39.933335 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MASCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137663, 39.969422 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128122, 39.967225 ] } }, +{ "type": "Feature", "properties": { "location": "2036 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161452548418893, 39.985024019739797 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192662, 39.956825 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "58 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164298523013301, 40.030578741590404 ] } }, +{ "type": "Feature", "properties": { "location": "900 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15341, 39.959647 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163765, 39.9465 ] } }, +{ "type": "Feature", "properties": { "location": "1600 FRENCH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1603648318994, 39.986322712978101 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153348, 39.933962 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22582, 40.029613 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179822287681404, 39.991347883822399 ] } }, +{ "type": "Feature", "properties": { "location": "2400 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174041999028901, 39.982351568200599 ] } }, +{ "type": "Feature", "properties": { "location": "2000 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178957850700897, 39.9314059874349 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170908, 39.927102 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147378, 39.933655 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150761423599505, 39.921304865152301 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157952, 39.923373 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157942, 39.92336 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168542, 39.929238 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "1500 FONTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159171103156694, 39.984406357063001 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "6824 GUYER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231966479437006, 39.916001945501797 ] } }, +{ "type": "Feature", "properties": { "location": "2540 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237293441597501, 39.916219986919103 ] } }, +{ "type": "Feature", "properties": { "location": "5500 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221483757451395, 39.935572419389999 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 68TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237802339224004, 39.922199727610199 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 66TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231115361025104, 39.920951834904102 ] } }, +{ "type": "Feature", "properties": { "location": "6800 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.045301366233403, 40.027169980939803 ] } }, +{ "type": "Feature", "properties": { "location": "700 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106671999753601, 40.032899597601499 ] } }, +{ "type": "Feature", "properties": { "location": "100 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142462, 39.953982 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153388, 39.928922 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15569, 39.929617 ] } }, +{ "type": "Feature", "properties": { "location": "100 E INDIANA AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129667604773601, 39.995429869391401 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "1600 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1603648318994, 39.986322712978101 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 68TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242021062579795, 39.925763387439503 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "315 AVON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.032155189403994, 40.116151912634002 ] } }, +{ "type": "Feature", "properties": { "location": "800 TASKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159092, 39.929272 ] } }, +{ "type": "Feature", "properties": { "location": "1500 STONEY LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044882459920998, 40.083737844062497 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARCY PL", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.044586865484106, 40.082570170285202 ] } }, +{ "type": "Feature", "properties": { "location": "1515 STONEY LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044882459920998, 40.083737844062497 ] } }, +{ "type": "Feature", "properties": { "location": "1566 STONEY LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043436759401402, 40.083352107965503 ] } }, +{ "type": "Feature", "properties": { "location": "1508 STONEY LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044882459920998, 40.083737844062497 ] } }, +{ "type": "Feature", "properties": { "location": "5900 ELSINORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099461666306198, 40.043151283959197 ] } }, +{ "type": "Feature", "properties": { "location": "2400 AMBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128266262922295, 39.982633893674297 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166977, 39.965213 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155486735485198, 39.921282863897098 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHANCELLOR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225512, 39.956293 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157863, 39.923342 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N SHERIDAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141743172365494, 39.999336058697899 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162537, 39.948682 ] } }, +{ "type": "Feature", "properties": { "location": "200 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147115, 39.937985 ] } }, +{ "type": "Feature", "properties": { "location": "100 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128417422767001, 39.997894559251897 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175025, 39.947068 ] } }, +{ "type": "Feature", "properties": { "location": "2100 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177378, 39.945355 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1928 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161881057414107, 39.983079775282803 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183619473665203, 39.975309191876697 ] } }, +{ "type": "Feature", "properties": { "location": "4601 STENTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159336638225597, 40.026048333756698 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.923325 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "700 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156638527609402, 39.931456647965298 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163743, 39.945088 ] } }, +{ "type": "Feature", "properties": { "location": "800 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099266372023294, 40.041400272881503 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091435115645695, 40.033862090234599 ] } }, +{ "type": "Feature", "properties": { "location": "700 E ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1164025539248, 40.000051055523699 ] } }, +{ "type": "Feature", "properties": { "location": "800 E ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113690751749303, 39.9996948970849 ] } }, +{ "type": "Feature", "properties": { "location": "1719 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "900 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153803, 39.959545 ] } }, +{ "type": "Feature", "properties": { "location": "5140 WARREN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225970393795293, 39.975791069560699 ] } }, +{ "type": "Feature", "properties": { "location": "200 S FRAZIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234890303804207, 39.957529120091102 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104487, 39.996527 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1018, 40.008395 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15531, 39.928802 ] } }, +{ "type": "Feature", "properties": { "location": "1600 E LYCOMING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.096342, 40.008415 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "726 CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17017, 39.942797 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17869, 39.949602 ] } }, +{ "type": "Feature", "properties": { "location": "1317 MARLBOROUGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132895, 39.97168 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139742, 40.040255 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MARLYN RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.249363917453493, 39.978187458876697 ] } }, +{ "type": "Feature", "properties": { "location": "1928 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161917, 39.983338 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FARRAGUT TER", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209915, 39.946528 ] } }, +{ "type": "Feature", "properties": { "location": "1524 OGDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162330121276298, 39.969907045523101 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2259150677246, 39.971827555072601 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PARRISH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163420978563394, 39.969413204425699 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 27TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181552501378206, 39.969233847579702 ] } }, +{ "type": "Feature", "properties": { "location": "1718 WALLACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166437539250694, 39.965853254328799 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165887, 39.964387 ] } }, +{ "type": "Feature", "properties": { "location": "4000 MARKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099294947135903, 40.008023178686798 ] } }, +{ "type": "Feature", "properties": { "location": "200 E WYOMING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.121982498721096, 40.021263229558599 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MELON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165662, 39.966885 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147807, 39.93157 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132737693909903, 40.001389984071899 ] } }, +{ "type": "Feature", "properties": { "location": "1914 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175923, 39.936703 ] } }, +{ "type": "Feature", "properties": { "location": "3300 POWELTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190742, 39.960187 ] } }, +{ "type": "Feature", "properties": { "location": "1900 CECIL B MOORE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165888, 39.979803 ] } }, +{ "type": "Feature", "properties": { "location": "900 WALLACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153718, 39.964 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SPRING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15705, 39.956015 ] } }, +{ "type": "Feature", "properties": { "location": "1599 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132117, 39.97513 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 2ND ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148338, 39.929107 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16735, 39.91765 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128282, 39.967157 ] } }, +{ "type": "Feature", "properties": { "location": "700 GAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126805, 39.975863 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226408, 40.027775 ] } }, +{ "type": "Feature", "properties": { "location": "1600 KNORR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.070332858508294, 40.043100026231997 ] } }, +{ "type": "Feature", "properties": { "location": "6029 N PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124704836469206, 40.042769380143397 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155128, 39.929165 ] } }, +{ "type": "Feature", "properties": { "location": "762 WARNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160057, 39.940327 ] } }, +{ "type": "Feature", "properties": { "location": "3900 PALMETTO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108156778141193, 40.007626027552 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224497, 40.028097 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090943, 40.00759 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175075, 39.922488 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175167, 39.922452 ] } }, +{ "type": "Feature", "properties": { "location": "100 ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13215, 39.99897 ] } }, +{ "type": "Feature", "properties": { "location": "700 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169365, 39.942287 ] } }, +{ "type": "Feature", "properties": { "location": "800 S SWANSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143285, 39.936973 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163977, 39.945142 ] } }, +{ "type": "Feature", "properties": { "location": "100 RECTOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220515, 40.025107 ] } }, +{ "type": "Feature", "properties": { "location": "2027 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161525, 39.984688 ] } }, +{ "type": "Feature", "properties": { "location": "1600 FOULKROD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08243, 40.017877 ] } }, +{ "type": "Feature", "properties": { "location": "550 E ASHMEAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160316973341295, 40.037770118497498 ] } }, +{ "type": "Feature", "properties": { "location": "4500 OAKLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090896084138095, 40.0167526948579 ] } }, +{ "type": "Feature", "properties": { "location": "500 OREGON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157097360423407, 39.914915449824697 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163775748443996, 39.9369371381934 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182848487988693, 39.995189741029698 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168465, 39.943543 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16407, 39.94498 ] } }, +{ "type": "Feature", "properties": { "location": "505 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W CLARKSON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139868, 40.036018 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225427, 40.027113 ] } }, +{ "type": "Feature", "properties": { "location": "4700 VISTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.030852021310295, 40.0313241791889 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214157, 40.022353 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17613, 39.95287 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17612, 39.952842 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WELLS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077170394985401, 40.043764521458897 ] } }, +{ "type": "Feature", "properties": { "location": "923 MONTROSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158586236202098, 39.9384364580173 ] } }, +{ "type": "Feature", "properties": { "location": "137 W WASHINGTON SQ", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1532391851391, 39.947681546720503 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191967, 39.9556 ] } }, +{ "type": "Feature", "properties": { "location": "2599 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168815, 39.91846 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086368, 40.01396 ] } }, +{ "type": "Feature", "properties": { "location": "1900 PAGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165542254958893, 39.984786465992499 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15135, 40.00304 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219316926361003, 39.942212560662902 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113933, 39.999238 ] } }, +{ "type": "Feature", "properties": { "location": "300 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124299488179204, 40.000669345173598 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158211866833994, 40.010971387071102 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "799 PENNOCK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18205, 39.9706 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N PENN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077847, 40.02621 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16679, 39.937192 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162815, 39.948467 ] } }, +{ "type": "Feature", "properties": { "location": "3401 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192942, 39.956888 ] } }, +{ "type": "Feature", "properties": { "location": "917 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168245, 39.93959 ] } }, +{ "type": "Feature", "properties": { "location": "4153 TERRACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21673, 40.025005 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155722, 39.928967 ] } }, +{ "type": "Feature", "properties": { "location": "3200 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188553917826894, 39.953931604063598 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224243, 40.028322 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224245, 40.028242 ] } }, +{ "type": "Feature", "properties": { "location": "224 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236937373765201, 39.9577861034048 ] } }, +{ "type": "Feature", "properties": { "location": "2000 W PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179658, 39.923678 ] } }, +{ "type": "Feature", "properties": { "location": "701 E WILLARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "235 N SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.249132547219006, 39.966953620790399 ] } }, +{ "type": "Feature", "properties": { "location": "1101 GERRITT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163532048922704, 39.931670234835401 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163638, 39.950098 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15628, 39.959807 ] } }, +{ "type": "Feature", "properties": { "location": "300 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14824, 39.940672 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 62ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246208276428007, 39.985170263552 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153785, 39.929128 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161970851488803, 39.9807846433824 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150168, 40.003655 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153667, 39.959653 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153702, 39.959748 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153713, 39.959805 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153693, 39.96003 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153685, 39.959918 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153663, 39.95981 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153697, 39.959668 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162480026446204, 39.9204094696167 ] } }, +{ "type": "Feature", "properties": { "location": "7300 COTTAGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.037358193699504, 40.0335146341762 ] } }, +{ "type": "Feature", "properties": { "location": "100 HERMIT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214402484778205, 40.020797772387503 ] } }, +{ "type": "Feature", "properties": { "location": "509 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152928, 39.934363 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S SHERIDAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155415, 39.93315 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174235957484697, 39.995116588785898 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219316926361003, 39.942212560662902 ] } }, +{ "type": "Feature", "properties": { "location": "551 N 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235561457517605, 39.969614564026699 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162457752653694, 39.949902437251701 ] } }, +{ "type": "Feature", "properties": { "location": "715 JACKSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159232252560201, 39.921759379184003 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173104532833904, 39.9267017457435 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N LEE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128130843304106, 40.000796716246199 ] } }, +{ "type": "Feature", "properties": { "location": "100 SUMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209642923763994, 40.017097455092497 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CECIL B MOORE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164423, 39.979432 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168117, 39.943585 ] } }, +{ "type": "Feature", "properties": { "location": "2209 S 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161623092343902, 39.921848361835302 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 12TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15835, 39.959073 ] } }, +{ "type": "Feature", "properties": { "location": "3740 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143160572971993, 40.0090212659629 ] } }, +{ "type": "Feature", "properties": { "location": "3742 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143160572971993, 40.0090212659629 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151170124027004, 39.921757854740598 ] } }, +{ "type": "Feature", "properties": { "location": "600 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157238748507396, 39.923578413522897 ] } }, +{ "type": "Feature", "properties": { "location": "2834 WATERLOO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131923344691202, 39.993414172869102 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191451248812896, 39.956607279042103 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167998, 39.936357 ] } }, +{ "type": "Feature", "properties": { "location": "5411 THOMAS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232064764053405, 39.9456400239037 ] } }, +{ "type": "Feature", "properties": { "location": "2400 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183442, 39.938292 ] } }, +{ "type": "Feature", "properties": { "location": "2940 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185257351498905, 39.972762984547202 ] } }, +{ "type": "Feature", "properties": { "location": "5500 WEBSTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234300453970903, 39.949066584072398 ] } }, +{ "type": "Feature", "properties": { "location": "900 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161098096955499, 39.927889434593801 ] } }, +{ "type": "Feature", "properties": { "location": "900 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161098096955499, 39.927889434593801 ] } }, +{ "type": "Feature", "properties": { "location": "445 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226688907892395, 39.977331806754997 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159407, 39.917912 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159287, 39.917688 ] } }, +{ "type": "Feature", "properties": { "location": "11870 BASILE RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.982408969866199, 40.0936256640314 ] } }, +{ "type": "Feature", "properties": { "location": "6900 ERDRICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.046878603252793, 40.031581223515303 ] } }, +{ "type": "Feature", "properties": { "location": "684 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099266372023294, 40.041400272881503 ] } }, +{ "type": "Feature", "properties": { "location": "586 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101011898529606, 40.042378908994799 ] } }, +{ "type": "Feature", "properties": { "location": "900 E CHELTEN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162416891660996, 40.047818914289003 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168777, 39.91834 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151185, 39.98405 ] } }, +{ "type": "Feature", "properties": { "location": "4623 SANSOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214547, 39.956372 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163882, 39.944815 ] } }, +{ "type": "Feature", "properties": { "location": "100 WENDOVER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217655, 40.02353 ] } }, +{ "type": "Feature", "properties": { "location": "6050 BAYNTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176595859058907, 40.041858594432597 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16682, 39.956178 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160345, 39.942007 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161003, 39.924898 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175512618884696, 39.989253234825298 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171897, 39.939755 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170263, 39.942337 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S AVONDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241367251961904, 39.929912890529103 ] } }, +{ "type": "Feature", "properties": { "location": "2400 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171793385482303, 39.9950758319969 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150667, 39.923205 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15674, 39.960862 ] } }, +{ "type": "Feature", "properties": { "location": "3300 F ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117023, 39.998678 ] } }, +{ "type": "Feature", "properties": { "location": "5800 COLGATE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102533230407104, 40.042298384526497 ] } }, +{ "type": "Feature", "properties": { "location": "231 S 51ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2238, 39.955577 ] } }, +{ "type": "Feature", "properties": { "location": "800 SEARS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157788, 39.93237 ] } }, +{ "type": "Feature", "properties": { "location": "2500 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177092, 39.977897 ] } }, +{ "type": "Feature", "properties": { "location": "1813 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.110965286994997, 39.996809345031103 ] } }, +{ "type": "Feature", "properties": { "location": "1600 E EYRE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130907, 39.975603 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177003797855605, 39.974918382511603 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192557, 39.956748 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192467, 39.956833 ] } }, +{ "type": "Feature", "properties": { "location": "5100 GRISCOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.080203, 40.02194 ] } }, +{ "type": "Feature", "properties": { "location": "5100 GRISCOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.080113, 40.022025 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174608, 39.955217 ] } }, +{ "type": "Feature", "properties": { "location": "5546 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232117, 39.960107 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181688, 39.969145 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153507, 39.928955 ] } }, +{ "type": "Feature", "properties": { "location": "3817 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197777, 39.960032 ] } }, +{ "type": "Feature", "properties": { "location": "200 N FRANKLIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151579301168297, 39.955305382792197 ] } }, +{ "type": "Feature", "properties": { "location": "200 N FRANKLIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151623, 39.956175 ] } }, +{ "type": "Feature", "properties": { "location": "1916 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178403, 39.924182 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.07344, 40.043812 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192158, 39.955445 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158577, 39.920637 ] } }, +{ "type": "Feature", "properties": { "location": "6243 MERSHON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065584229748794, 40.0300327527519 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223262, 40.028752 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224367, 40.028158 ] } }, +{ "type": "Feature", "properties": { "location": "813 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165068, 39.968917 ] } }, +{ "type": "Feature", "properties": { "location": "5500 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143723, 40.038527 ] } }, +{ "type": "Feature", "properties": { "location": "1100 LINN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163897, 39.930137 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156767, 39.960918 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180605039295799, 39.920663133572198 ] } }, +{ "type": "Feature", "properties": { "location": "6500 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230045163023405, 39.921006059095497 ] } }, +{ "type": "Feature", "properties": { "location": "1200 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168182, 39.921685 ] } }, +{ "type": "Feature", "properties": { "location": "2551 S DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224655460147702, 39.925107035872202 ] } }, +{ "type": "Feature", "properties": { "location": "6500 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232792966578799, 39.923318525425003 ] } }, +{ "type": "Feature", "properties": { "location": "2600 MASSEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233394290358703, 39.916809360825901 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108779703617003, 39.996269105585199 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224398, 40.026757 ] } }, +{ "type": "Feature", "properties": { "location": "1500 E BERKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128503, 39.976402 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N 12TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150408835876405, 39.995306240013399 ] } }, +{ "type": "Feature", "properties": { "location": "5400 GREENWAY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220470871434898, 39.937273825363597 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17345, 39.937745 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141277, 39.965322 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154923, 39.9492 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154887, 39.94911 ] } }, +{ "type": "Feature", "properties": { "location": "3300 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09818, 39.985523 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104545, 39.996537 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126645, 39.973247 ] } }, +{ "type": "Feature", "properties": { "location": "2515 S PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151691485046399, 39.916292858007097 ] } }, +{ "type": "Feature", "properties": { "location": "1600 UNITY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086792, 40.012108 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.073225, 40.043922 ] } }, +{ "type": "Feature", "properties": { "location": "6333 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229337034842004, 39.924330545924001 ] } }, +{ "type": "Feature", "properties": { "location": "2832 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126977588820495, 39.993104615507796 ] } }, +{ "type": "Feature", "properties": { "location": "3700 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212784684631004, 40.018356957214301 ] } }, +{ "type": "Feature", "properties": { "location": "704 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115884688012599, 39.999523430550099 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149405, 40.005178 ] } }, +{ "type": "Feature", "properties": { "location": "2527 WEBB ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118718964919196, 39.976107690950499 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 4TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147422, 39.949628 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175367, 39.943522 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185737751476196, 39.941934123871498 ] } }, +{ "type": "Feature", "properties": { "location": "2500 EDGEMONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116773, 39.976683 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155247, 39.95424 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.190907, 39.95816 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140270308877902, 40.014889376962302 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155722, 39.934295 ] } }, +{ "type": "Feature", "properties": { "location": "4856 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147077, 40.027433 ] } }, +{ "type": "Feature", "properties": { "location": "199 GAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223732, 40.027132 ] } }, +{ "type": "Feature", "properties": { "location": "4231 GRISCOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091903611425096, 40.009621523468098 ] } }, +{ "type": "Feature", "properties": { "location": "2329 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182118420610394, 39.9415916850133 ] } }, +{ "type": "Feature", "properties": { "location": "5607 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143489287083, 40.039252964318997 ] } }, +{ "type": "Feature", "properties": { "location": "3800 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196985, 39.960845 ] } }, +{ "type": "Feature", "properties": { "location": "3500 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192698, 39.957915 ] } }, +{ "type": "Feature", "properties": { "location": "2630 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188540603945796, 39.934765990357903 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W CHAMPLOST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139685, 40.043875 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170608603382604, 39.929515963689603 ] } }, +{ "type": "Feature", "properties": { "location": "7501 BRIAR RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155024934619803, 40.069842199138897 ] } }, +{ "type": "Feature", "properties": { "location": "400 SLOAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201201258407295, 39.959856115820202 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 61ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241036943089, 39.971658241436998 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170511155214996, 39.936005638948302 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N 21ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167461201237103, 39.988551873944999 ] } }, +{ "type": "Feature", "properties": { "location": "1500 OGDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162330121276298, 39.969907045523101 ] } }, +{ "type": "Feature", "properties": { "location": "3440 ORMES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123963183298102, 40.001817288000602 ] } }, +{ "type": "Feature", "properties": { "location": "3440 ORMES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123963183298102, 40.001817288000602 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N FRANKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138624302309196, 40.019426015622997 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N FRANKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138624302309196, 40.019426015622997 ] } }, +{ "type": "Feature", "properties": { "location": "4753 RORER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114508531250493, 40.021126554392197 ] } }, +{ "type": "Feature", "properties": { "location": "10 W COURTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125169753015797, 40.020015708967598 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "800 CARPENTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156708, 39.937177 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159397, 39.975235 ] } }, +{ "type": "Feature", "properties": { "location": "834 N BEECHWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173057955362594, 39.9700203024586 ] } }, +{ "type": "Feature", "properties": { "location": "3401 A ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126517764366795, 40.002120857752097 ] } }, +{ "type": "Feature", "properties": { "location": "200 E ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126353200371696, 40.001331879509799 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WHARTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175662, 39.935228 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185737751476196, 39.941934123871498 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165904169643795, 39.967160512503497 ] } }, +{ "type": "Feature", "properties": { "location": "4600 LEVICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.052477488018994, 40.022338104531002 ] } }, +{ "type": "Feature", "properties": { "location": "1670 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076555689475398, 40.021152943418201 ] } }, +{ "type": "Feature", "properties": { "location": "4700 VISTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.030852021310295, 40.0313241791889 ] } }, +{ "type": "Feature", "properties": { "location": "4400 HAVERFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210632, 39.962663 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161055, 39.947472 ] } }, +{ "type": "Feature", "properties": { "location": "1300 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078220703432194, 40.0430232889412 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 28TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177260740523096, 39.995445227353798 ] } }, +{ "type": "Feature", "properties": { "location": "3977 TERRACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215078, 40.023662 ] } }, +{ "type": "Feature", "properties": { "location": "100 WIDENER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121441781882893, 40.040545052844003 ] } }, +{ "type": "Feature", "properties": { "location": "800 ORIANNA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143778, 39.963603 ] } }, +{ "type": "Feature", "properties": { "location": "1234 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162935, 39.943962 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128167, 39.967255 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123117, 39.97376 ] } }, +{ "type": "Feature", "properties": { "location": "800 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159653, 39.930547 ] } }, +{ "type": "Feature", "properties": { "location": "1725 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15577, 39.92681 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155825, 39.926838 ] } }, +{ "type": "Feature", "properties": { "location": "5519 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231142311591697, 39.970843096645602 ] } }, +{ "type": "Feature", "properties": { "location": "2200 SHIELDS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235631033326896, 39.923731297543199 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22798, 40.028295 ] } }, +{ "type": "Feature", "properties": { "location": "5700 DELANCEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237083589872995, 39.955404522096302 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N MARSHALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138153012654897, 40.014611768483697 ] } }, +{ "type": "Feature", "properties": { "location": "614 AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142177, 39.961812 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176245, 39.965787 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155543, 39.954565 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070398, 40.046552 ] } }, +{ "type": "Feature", "properties": { "location": "1525 SWAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "200 W SPENCER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124151287526601, 40.043486914662999 ] } }, +{ "type": "Feature", "properties": { "location": "4000 K ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104649339936898, 40.008709972495197 ] } }, +{ "type": "Feature", "properties": { "location": "1453 N VOGDES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231855899987394, 39.974449988033001 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163768909327601, 39.943880565987399 ] } }, +{ "type": "Feature", "properties": { "location": "900 WYNNEWOOD RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.247615401777495, 39.979071800635303 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S ROBINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225137286334601, 39.924776283714202 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N PATTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183309296178095, 39.995253935154302 ] } }, +{ "type": "Feature", "properties": { "location": "1149 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163275, 39.936242 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1606349386674, 39.981382342078 ] } }, +{ "type": "Feature", "properties": { "location": "3019 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186192429216604, 39.973517042384401 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W STILES ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185757601967694, 39.975488012413798 ] } }, +{ "type": "Feature", "properties": { "location": "3100 W ARIZONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183663631036893, 39.992603701799901 ] } }, +{ "type": "Feature", "properties": { "location": "3100 W ARIZONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183663631036893, 39.992603701799901 ] } }, +{ "type": "Feature", "properties": { "location": "127 N SALFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239601391036004, 39.964212624702 ] } }, +{ "type": "Feature", "properties": { "location": "1200 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161255, 39.948893 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153023, 39.950248 ] } }, +{ "type": "Feature", "properties": { "location": "2108 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179314904181297, 39.938103416483202 ] } }, +{ "type": "Feature", "properties": { "location": "3100 FERNON DR", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.196439207427105, 39.933765385606002 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CLIFFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174763629596001, 39.981462942310799 ] } }, +{ "type": "Feature", "properties": { "location": "623 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153322, 39.941698 ] } }, +{ "type": "Feature", "properties": { "location": "617 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153105, 39.941713 ] } }, +{ "type": "Feature", "properties": { "location": "600 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152925, 39.94163 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134308, 39.972517 ] } }, +{ "type": "Feature", "properties": { "location": "1400 E HUNTING PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09989, 40.010538 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185737751476196, 39.941934123871498 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154357, 39.940412 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N WILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226962405049093, 39.979542585942703 ] } }, +{ "type": "Feature", "properties": { "location": "199 N 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154675, 39.954948 ] } }, +{ "type": "Feature", "properties": { "location": "1 N RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227810083005593, 39.961165788692199 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S PAXON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220194116448795, 39.942521628760502 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SPRING GARDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199787070162799, 39.962003713507201 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155185, 39.958917 ] } }, +{ "type": "Feature", "properties": { "location": "5128 HARLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225439196084395, 39.9749508517287 ] } }, +{ "type": "Feature", "properties": { "location": "700 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158862, 39.926718 ] } }, +{ "type": "Feature", "properties": { "location": "5600 HUNTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234621481525494, 39.9771803225334 ] } }, +{ "type": "Feature", "properties": { "location": "1900 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17318, 39.947082 ] } }, +{ "type": "Feature", "properties": { "location": "1100 OXFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131032, 39.969763 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "924 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169707912462101, 39.939706586927102 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176032, 39.941722 ] } }, +{ "type": "Feature", "properties": { "location": "1727 MCKEAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175047605996099, 39.9263155240656 ] } }, +{ "type": "Feature", "properties": { "location": "400 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151930129375302, 39.932893846230201 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132607, 39.969342 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158211866833994, 40.010971387071102 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143080727049295, 40.006643016473802 ] } }, +{ "type": "Feature", "properties": { "location": "100 W CAMBRIA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130516756687996, 39.994000916511503 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "2963 N REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140028400849403, 39.995998404724403 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143080727049295, 40.006643016473802 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086362, 40.013757 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ELLSWORTH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17338, 39.937658 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CRESTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075514008245904, 40.031718278336697 ] } }, +{ "type": "Feature", "properties": { "location": "100 W ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128871815107402, 40.001659310920502 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179249308647201, 39.9670232703834 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15607, 39.954317 ] } }, +{ "type": "Feature", "properties": { "location": "5153 RANSTEAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224718, 39.958968 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157705, 39.949298 ] } }, +{ "type": "Feature", "properties": { "location": "3400 ORMES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123963183298102, 40.001817288000602 ] } }, +{ "type": "Feature", "properties": { "location": "3700 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.195317, 39.959737 ] } }, +{ "type": "Feature", "properties": { "location": "300 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152905, 39.92467 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155855, 39.9264 ] } }, +{ "type": "Feature", "properties": { "location": "900 E RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111521978752705, 39.999956871853399 ] } }, +{ "type": "Feature", "properties": { "location": "6737 DOREL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229944109033795, 39.916753760948701 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177955594773493, 39.924062043339497 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168277, 39.934253 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHESTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219316926361003, 39.942212560662902 ] } }, +{ "type": "Feature", "properties": { "location": "5300 TURNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229829444696406, 39.98227899127 ] } }, +{ "type": "Feature", "properties": { "location": "6700 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238278047178198, 39.923771572903703 ] } }, +{ "type": "Feature", "properties": { "location": "437 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202987447586494, 39.960949236462199 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150295, 39.929342 ] } }, +{ "type": "Feature", "properties": { "location": "400 N GROSS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2463738286786, 39.969729182011299 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211407994077206, 39.956538793198 ] } }, +{ "type": "Feature", "properties": { "location": "3300 F ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117011306597504, 39.998810500751901 ] } }, +{ "type": "Feature", "properties": { "location": "1600 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169122, 39.948365 ] } }, +{ "type": "Feature", "properties": { "location": "5830 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2371184314419, 39.970180179904801 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171125, 39.925787 ] } }, +{ "type": "Feature", "properties": { "location": "200 HOWELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106416551154197, 40.047784474725802 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193677455377994, 39.959225583603398 ] } }, +{ "type": "Feature", "properties": { "location": "2525 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161498653227994, 39.917556712142598 ] } }, +{ "type": "Feature", "properties": { "location": "200 W ALBANUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128847189448294, 40.026279760722602 ] } }, +{ "type": "Feature", "properties": { "location": "3200 F ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117334122018903, 39.9972517044068 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 30TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185045949345707, 39.975013534715302 ] } }, +{ "type": "Feature", "properties": { "location": "1011 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162670468784597, 39.928091205791802 ] } }, +{ "type": "Feature", "properties": { "location": "2400 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177772968472098, 39.965645049350996 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180946166820704, 39.968480251838898 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180946166820704, 39.968480251838898 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180946166820704, 39.968480251838898 ] } }, +{ "type": "Feature", "properties": { "location": "100 GREEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141282, 39.960892 ] } }, +{ "type": "Feature", "properties": { "location": "423 LEVERING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221539288783603, 40.027408822235103 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156619164807594, 39.952048698167097 ] } }, +{ "type": "Feature", "properties": { "location": "3600 POWELTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193907, 39.959952 ] } }, +{ "type": "Feature", "properties": { "location": "205 W LAUREL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.096674081583799, 40.068627063120204 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170498, 39.9657 ] } }, +{ "type": "Feature", "properties": { "location": "3600 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19564, 39.962902 ] } }, +{ "type": "Feature", "properties": { "location": "527 N 37TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195922, 39.963265 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W DAUPHIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123857, 39.975625 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141565, 40.039485 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163603, 39.956425 ] } }, +{ "type": "Feature", "properties": { "location": "5216 KERSHAW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226945551075701, 39.9735424992597 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155782, 39.921317 ] } }, +{ "type": "Feature", "properties": { "location": "600 WILLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149398, 39.958595 ] } }, +{ "type": "Feature", "properties": { "location": "500 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177852, 39.941522 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "700 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180737, 39.969273 ] } }, +{ "type": "Feature", "properties": { "location": "6725 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071889001903699, 40.043025600234699 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152936829495303, 39.935681033067901 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152936829495303, 39.935681033067901 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S BONSALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185653272253106, 39.923236076740501 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154269654455902, 40.004947422725003 ] } }, +{ "type": "Feature", "properties": { "location": "7100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.04449, 40.035008 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.089715, 40.00958 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152532, 39.942405 ] } }, +{ "type": "Feature", "properties": { "location": "3800 TERRACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211717, 40.019282 ] } }, +{ "type": "Feature", "properties": { "location": "3311 E ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118951350200106, 39.999064794878599 ] } }, +{ "type": "Feature", "properties": { "location": "2900 AMBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116519663609395, 39.988774829276998 ] } }, +{ "type": "Feature", "properties": { "location": "1600 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171609332642305, 39.932161042844498 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158062677739096, 39.993156686597501 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158073556451001, 39.985714102366501 ] } }, +{ "type": "Feature", "properties": { "location": "6300 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142381857600796, 40.049802985872503 ] } }, +{ "type": "Feature", "properties": { "location": "219 W ALBANUS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128847189448294, 40.026279760722602 ] } }, +{ "type": "Feature", "properties": { "location": "1 CHRISTIAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144312, 39.935225 ] } }, +{ "type": "Feature", "properties": { "location": "800 JUDSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175299801081394, 39.970333700195901 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173282, 39.925603 ] } }, +{ "type": "Feature", "properties": { "location": "3500 ENGLEWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043182, 40.037137 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151063, 39.977678 ] } }, +{ "type": "Feature", "properties": { "location": "5600 BELMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228102282642894, 39.938660181167599 ] } }, +{ "type": "Feature", "properties": { "location": "4600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211166128814298, 39.945192055643801 ] } }, +{ "type": "Feature", "properties": { "location": "4600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211166128814298, 39.945192055643801 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1542, 40.00338 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088545, 40.01083 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090995, 40.007047 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105322, 39.996788 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187485, 39.958697 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BUTTONWOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154793, 39.960802 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W CHEW AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146898063945997, 40.0401435047457 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123943002634107, 40.042163244840197 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123943002634107, 40.042163244840197 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172217, 39.946798 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144255706174107, 40.046602409397003 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166842, 39.956652 ] } }, +{ "type": "Feature", "properties": { "location": "899 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125531288898898, 39.975396116286802 ] } }, +{ "type": "Feature", "properties": { "location": "1800 TULIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130390548518903, 39.976513152937898 ] } }, +{ "type": "Feature", "properties": { "location": "1321 N FRONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135541888703102, 39.971100183172702 ] } }, +{ "type": "Feature", "properties": { "location": "601 GAUL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128812877847494, 39.9751572507014 ] } }, +{ "type": "Feature", "properties": { "location": "4300 I ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107592914223005, 40.013892665683997 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S FRAZIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227230171103002, 39.9375768853888 ] } }, +{ "type": "Feature", "properties": { "location": "259 W THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134455147388806, 40.001968784047499 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158586236202098, 39.9384364580173 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177732, 39.948135 ] } }, +{ "type": "Feature", "properties": { "location": "1840 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235072, 39.925007 ] } }, +{ "type": "Feature", "properties": { "location": "2900 A ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128156246065501, 39.994476132626097 ] } }, +{ "type": "Feature", "properties": { "location": "3475 COLLINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103453676503804, 39.994987597474001 ] } }, +{ "type": "Feature", "properties": { "location": "200 W ALBANUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128847189448294, 40.026279760722602 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157817, 39.9233 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144255706174107, 40.046602409397003 ] } }, +{ "type": "Feature", "properties": { "location": "4600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211166128814298, 39.945192055643801 ] } }, +{ "type": "Feature", "properties": { "location": "1 S ROBINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244102357559498, 39.961977842896999 ] } }, +{ "type": "Feature", "properties": { "location": "1 S ROBINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244102357559498, 39.961977842896999 ] } }, +{ "type": "Feature", "properties": { "location": "1379 S 46TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208576257920498, 39.9434273943573 ] } }, +{ "type": "Feature", "properties": { "location": "4600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211166128814298, 39.945192055643801 ] } }, +{ "type": "Feature", "properties": { "location": "3813 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197735, 39.960057 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160858, 39.96905 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N NEWKIRK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175516428937001, 40.005323661629902 ] } }, +{ "type": "Feature", "properties": { "location": "134 DURFOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149776944048597, 39.918809227849799 ] } }, +{ "type": "Feature", "properties": { "location": "6800 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233286425901596, 39.917966129545299 ] } }, +{ "type": "Feature", "properties": { "location": "1900 HAWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073852762369995, 40.015945107758903 ] } }, +{ "type": "Feature", "properties": { "location": "512 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15582, 39.921305 ] } }, +{ "type": "Feature", "properties": { "location": "512 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155752, 39.921292 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156002, 39.92131 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174068611706701, 39.934545410962897 ] } }, +{ "type": "Feature", "properties": { "location": "5200 W CLARKSON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160118332345405, 40.038293657671403 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163236774265201, 39.984253901258199 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162908217809701, 39.985739782220399 ] } }, +{ "type": "Feature", "properties": { "location": "900 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089113493495404, 40.033841531766797 ] } }, +{ "type": "Feature", "properties": { "location": "2500 KIMBALL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185496519750998, 39.941028206072602 ] } }, +{ "type": "Feature", "properties": { "location": "2500 KIMBALL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185496519750998, 39.941028206072602 ] } }, +{ "type": "Feature", "properties": { "location": "500 KIMBALL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1544606815999, 39.936096221986404 ] } }, +{ "type": "Feature", "properties": { "location": "100 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14026, 39.962768 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127788, 39.969733 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W ROCKLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140696732559604, 40.026799545562803 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105865, 39.996423 ] } }, +{ "type": "Feature", "properties": { "location": "4600 D ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1163815876413, 40.019187282331302 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180101008471098, 39.926165919914098 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WYLIE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166664363836702, 39.969400114038102 ] } }, +{ "type": "Feature", "properties": { "location": "1313 S REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153625042229507, 39.931686964491902 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211407994077206, 39.956538793198 ] } }, +{ "type": "Feature", "properties": { "location": "635 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241036808676597, 39.950945688731402 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "5400 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231141416693006, 39.978447410406197 ] } }, +{ "type": "Feature", "properties": { "location": "6600 LEBANON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.252656964798504, 39.976557805130703 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159842, 39.974603 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1826912513027, 39.9418637544034 ] } }, +{ "type": "Feature", "properties": { "location": "2500 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179298, 39.967377 ] } }, +{ "type": "Feature", "properties": { "location": "3500 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192945, 39.957125 ] } }, +{ "type": "Feature", "properties": { "location": "2725 W EYRE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179006843115403, 39.982519737824198 ] } }, +{ "type": "Feature", "properties": { "location": "1755 OREGON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177446320517404, 39.917668482703199 ] } }, +{ "type": "Feature", "properties": { "location": "1533 S PATTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196892085886901, 39.934779294599998 ] } }, +{ "type": "Feature", "properties": { "location": "1299 E FLETCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124457, 39.97338 ] } }, +{ "type": "Feature", "properties": { "location": "800 S CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142275, 39.93678 ] } }, +{ "type": "Feature", "properties": { "location": "3900 HOWLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103703751231507, 40.007054597392496 ] } }, +{ "type": "Feature", "properties": { "location": "2531 MEREDITH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179246934559202, 39.968403499901598 ] } }, +{ "type": "Feature", "properties": { "location": "2529 MEREDITH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179246934559202, 39.968403499901598 ] } }, +{ "type": "Feature", "properties": { "location": "900 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159728, 39.930628 ] } }, +{ "type": "Feature", "properties": { "location": "1528 STONEY LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044882459920998, 40.083737844062497 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163775748443996, 39.9369371381934 ] } }, +{ "type": "Feature", "properties": { "location": "3500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152407, 40.007597 ] } }, +{ "type": "Feature", "properties": { "location": "800 PERKIOMEN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165726939386602, 39.968874308498499 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N PENN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.078118, 40.025925 ] } }, +{ "type": "Feature", "properties": { "location": "103 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120668293754704, 40.0435594258335 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174468659911597, 39.998915883237302 ] } }, +{ "type": "Feature", "properties": { "location": "2231 REED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181718029627902, 39.934715687554998 ] } }, +{ "type": "Feature", "properties": { "location": "400 RUSCOMB ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132672, 40.027322 ] } }, +{ "type": "Feature", "properties": { "location": "114 E STERNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129830078458298, 39.991274775372297 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "314 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130608, 39.968782 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "300 S CAMAC ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16198, 39.946242 ] } }, +{ "type": "Feature", "properties": { "location": "500 E RUSCOMB ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115482629452003, 40.024989613328501 ] } }, +{ "type": "Feature", "properties": { "location": "2736 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171621811166702, 39.996962426509697 ] } }, +{ "type": "Feature", "properties": { "location": "112 FARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221420774466196, 39.9619588223958 ] } }, +{ "type": "Feature", "properties": { "location": "700 AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141933, 39.96322 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128673082415006, 40.040165061529898 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158018, 39.92495 ] } }, +{ "type": "Feature", "properties": { "location": "4000 FILBERT ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203338, 39.958028 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.086493, 40.013897 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08648, 40.014017 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MOORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165812, 39.927672 ] } }, +{ "type": "Feature", "properties": { "location": "3900 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102275392732693, 40.0066248818476 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MOUNTAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177297612093, 39.930818854214998 ] } }, +{ "type": "Feature", "properties": { "location": "1140 S SYDENHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169592706719996, 39.936514597198901 ] } }, +{ "type": "Feature", "properties": { "location": "200 E STELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126541988791701, 39.9957922514157 ] } }, +{ "type": "Feature", "properties": { "location": "200 E ALLEGHENY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126875005149302, 39.998231117318902 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163236774265201, 39.984253901258199 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137603, 39.9681 ] } }, +{ "type": "Feature", "properties": { "location": "471 MECHANIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172155527266099, 40.044029791692999 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155662, 39.925852 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155447, 39.925752 ] } }, +{ "type": "Feature", "properties": { "location": "3469 TAMPA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1175767096166, 40.000987289979797 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W CUMBERLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148619552645897, 39.990004668245398 ] } }, +{ "type": "Feature", "properties": { "location": "500 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151645, 39.942315 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174141587478502, 40.000400853667699 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174141587478502, 40.000400853667699 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183702050635304, 39.973542504934699 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "500 E WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127529782160295, 39.9699148527218 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161273, 39.944705 ] } }, +{ "type": "Feature", "properties": { "location": "499 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212743, 39.950337 ] } }, +{ "type": "Feature", "properties": { "location": "1 LAUREL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134592739363001, 39.964662096486002 ] } }, +{ "type": "Feature", "properties": { "location": "2532 BELLFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244534397682997, 39.910995841502299 ] } }, +{ "type": "Feature", "properties": { "location": "500 ROSALIE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103038964594006, 40.042908121223199 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136618439084998, 40.025504211425499 ] } }, +{ "type": "Feature", "properties": { "location": "4500 MARKET ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211132, 39.9584 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191573, 39.963562 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0708486779086, 40.0213430257621 ] } }, +{ "type": "Feature", "properties": { "location": "1900 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175482, 39.939473 ] } }, +{ "type": "Feature", "properties": { "location": "1900 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175848, 39.93946 ] } }, +{ "type": "Feature", "properties": { "location": "7200 LEON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044193255770793, 40.036522298933903 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077660288847596, 40.021977457426999 ] } }, +{ "type": "Feature", "properties": { "location": "5800 KNOX ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179737888536593, 40.033878591953901 ] } }, +{ "type": "Feature", "properties": { "location": "10006 JEANES ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.033539967124398, 40.106743685046801 ] } }, +{ "type": "Feature", "properties": { "location": "10862 PARLIN TER", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.030967979041307, 40.113643556838902 ] } }, +{ "type": "Feature", "properties": { "location": "10656 LOCKART RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.040864848994701, 40.117402599243498 ] } }, +{ "type": "Feature", "properties": { "location": "10008 JEANES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.033539967124398, 40.106743685046801 ] } }, +{ "type": "Feature", "properties": { "location": "10760 HEATHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.029315648378798, 40.113039384847497 ] } }, +{ "type": "Feature", "properties": { "location": "10770 HEATHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.029315648378798, 40.113039384847497 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214613238467905, 40.028512966070998 ] } }, +{ "type": "Feature", "properties": { "location": "7517 WHITAKER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073650484598105, 40.060631709406998 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192372, 39.958865 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174337, 39.964815 ] } }, +{ "type": "Feature", "properties": { "location": "200 GRAPE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219927137791004, 40.027418020654501 ] } }, +{ "type": "Feature", "properties": { "location": "2300 COLORADO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175878, 39.921315 ] } }, +{ "type": "Feature", "properties": { "location": "3928 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212407296474197, 40.022021329560602 ] } }, +{ "type": "Feature", "properties": { "location": "163 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "300 BURNSIDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214049194712203, 40.024916876614697 ] } }, +{ "type": "Feature", "properties": { "location": "411 LEVERING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221539288783603, 40.027408822235103 ] } }, +{ "type": "Feature", "properties": { "location": "900 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089113493495404, 40.033841531766797 ] } }, +{ "type": "Feature", "properties": { "location": "300 SHURS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214197519509298, 40.024607249323999 ] } }, +{ "type": "Feature", "properties": { "location": "181 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "900 BRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091110372165204, 40.031755364597203 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W PASSYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174863, 39.924568 ] } }, +{ "type": "Feature", "properties": { "location": "4260 TERRACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218632057921894, 40.026437190233601 ] } }, +{ "type": "Feature", "properties": { "location": "4300 FREELAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214887747403793, 40.029358521720901 ] } }, +{ "type": "Feature", "properties": { "location": "200 N LAWRENCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147008, 39.955827 ] } }, +{ "type": "Feature", "properties": { "location": "1800 FRANCIS ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167164649758206, 39.967834757942903 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155743, 39.92139 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15913, 39.920588 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153275, 39.93811 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153152, 39.938165 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153285, 39.93817 ] } }, +{ "type": "Feature", "properties": { "location": "4100 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205616608918803, 39.960086172200199 ] } }, +{ "type": "Feature", "properties": { "location": "5131 ASPEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222645109016398, 39.964602179194301 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144022, 39.955257 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143705, 39.955257 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17395, 39.948603 ] } }, +{ "type": "Feature", "properties": { "location": "130 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173938611328893, 40.038159691523902 ] } }, +{ "type": "Feature", "properties": { "location": "5700 SUMMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234421873769605, 39.965132256308202 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "5700 COLGATE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.104294284946803, 40.040449126440798 ] } }, +{ "type": "Feature", "properties": { "location": "6200 SOUDER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.075598583674804, 40.035930384176901 ] } }, +{ "type": "Feature", "properties": { "location": "4614 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145090308194, 40.023382578036099 ] } }, +{ "type": "Feature", "properties": { "location": "4603 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145090308194, 40.023382578036099 ] } }, +{ "type": "Feature", "properties": { "location": "5900 BELMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232404639496195, 39.935625107893401 ] } }, +{ "type": "Feature", "properties": { "location": "3221 RHAWN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.033584074941601, 40.049497728993202 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142194650322196, 40.040329282023102 ] } }, +{ "type": "Feature", "properties": { "location": "2631 W ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173229115590999, 40.004220318925299 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "4400 N COLORADO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153937220334996, 40.021787234766499 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245057755271105, 39.962495105725097 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15437, 39.940665 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S AVONDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241367251961904, 39.929912890529103 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181905, 39.974263 ] } }, +{ "type": "Feature", "properties": { "location": "700 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115884688012599, 39.999523430550099 ] } }, +{ "type": "Feature", "properties": { "location": "3328 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186025932933802, 39.996878531955502 ] } }, +{ "type": "Feature", "properties": { "location": "2100 W ESTAUGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164257704554203, 40.006996592245699 ] } }, +{ "type": "Feature", "properties": { "location": "2100 W ESTAUGH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164257704554203, 40.006996592245699 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 34TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191302, 39.962132 ] } }, +{ "type": "Feature", "properties": { "location": "407 S 21ST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176627, 39.946683 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154977, 39.929522 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156302, 39.95985 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 22ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173662, 39.970747 ] } }, +{ "type": "Feature", "properties": { "location": "4300 LOCUST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210243, 39.953907 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155948, 39.962202 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MIFFLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171123018494995, 39.927070397223801 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W HAGERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156664418889804, 39.990312752772503 ] } }, +{ "type": "Feature", "properties": { "location": "100 E DURHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187911275761607, 40.0608439585829 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W MONTGOMERY AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160895, 39.980603 ] } }, +{ "type": "Feature", "properties": { "location": "4600 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114141994905594, 40.018787858830002 ] } }, +{ "type": "Feature", "properties": { "location": "500 HART LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121875453987897, 39.992478100567197 ] } }, +{ "type": "Feature", "properties": { "location": "425 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "4200 RICHMOND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077860881860602, 39.995079976355903 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 4TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149226083395305, 39.941415599389899 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MANNING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2408149971195, 39.956841680237297 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12819, 39.967213 ] } }, +{ "type": "Feature", "properties": { "location": "200 W HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180836065828899, 40.034808067970097 ] } }, +{ "type": "Feature", "properties": { "location": "5900 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.098948921833497, 40.042863457687503 ] } }, +{ "type": "Feature", "properties": { "location": "7100 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146078805460107, 40.062794610627897 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16049, 39.951122 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173353, 39.925508 ] } }, +{ "type": "Feature", "properties": { "location": "108 N 56TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2324861380025, 39.962755018830499 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17561, 39.9276 ] } }, +{ "type": "Feature", "properties": { "location": "1830 N BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162989996575504, 39.9816848912971 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162989996575504, 39.9816848912971 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156896148818305, 39.977810537982798 ] } }, +{ "type": "Feature", "properties": { "location": "300 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220223, 40.029022 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MARTHA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131527114342404, 39.980309789335699 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158211866833994, 40.010971387071102 ] } }, +{ "type": "Feature", "properties": { "location": "1800 DELANCEY PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172968, 39.947208 ] } }, +{ "type": "Feature", "properties": { "location": "2012 OGDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170053449747698, 39.970814732914597 ] } }, +{ "type": "Feature", "properties": { "location": "2200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180292413966995, 39.941268571521597 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17242, 39.946975 ] } }, +{ "type": "Feature", "properties": { "location": "2541 CLEARFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10678, 39.984863 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 57TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229504372945499, 39.938675130994902 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146818, 39.9331 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168082, 39.939742 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 39.939697 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168125, 39.93972 ] } }, +{ "type": "Feature", "properties": { "location": "1300 LOCUST ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162872277543499, 39.947999965756402 ] } }, +{ "type": "Feature", "properties": { "location": "300 N WATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139863857269702, 39.956170716803904 ] } }, +{ "type": "Feature", "properties": { "location": "1709 RIPLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.061160023316006, 40.063802439074898 ] } }, +{ "type": "Feature", "properties": { "location": "3400 JASPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107352, 39.997713 ] } }, +{ "type": "Feature", "properties": { "location": "1100 KATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160777, 39.942688 ] } }, +{ "type": "Feature", "properties": { "location": "1515 STONEY LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044882459920998, 40.083737844062497 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162915621781593, 39.9709178350722 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "700 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159785, 39.92312 ] } }, +{ "type": "Feature", "properties": { "location": "1600 UNITY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087387, 40.012438 ] } }, +{ "type": "Feature", "properties": { "location": "1600 UNITY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08759, 40.012422 ] } }, +{ "type": "Feature", "properties": { "location": "900 SANGER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.089901685639305, 40.033014671300798 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15629, 39.959778 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176917336998798, 39.928852042414398 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143743, 40.042432 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 22ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1826119366944, 39.926665328266701 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160941366333802, 39.968544012042102 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158222, 39.92333 ] } }, +{ "type": "Feature", "properties": { "location": "500 OREGON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157097360423407, 39.914915449824697 ] } }, +{ "type": "Feature", "properties": { "location": "189 W THELMA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127209198689698, 40.0204988630881 ] } }, +{ "type": "Feature", "properties": { "location": "1626 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169972, 39.943337 ] } }, +{ "type": "Feature", "properties": { "location": "100 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128417422767001, 39.997894559251897 ] } }, +{ "type": "Feature", "properties": { "location": "3500 F ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116359496554594, 40.001850470204701 ] } }, +{ "type": "Feature", "properties": { "location": "5800 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.100718274320698, 40.041296691824499 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N DELAWARE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128221496413502, 39.968225011916502 ] } }, +{ "type": "Feature", "properties": { "location": "2200 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129316811190094, 39.980398371654601 ] } }, +{ "type": "Feature", "properties": { "location": "400 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150128, 39.938597 ] } }, +{ "type": "Feature", "properties": { "location": "1 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137828, 39.961133 ] } }, +{ "type": "Feature", "properties": { "location": "2622 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1200287731765, 39.982040701312599 ] } }, +{ "type": "Feature", "properties": { "location": "1801 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165148, 39.927605 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17806, 39.94513 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155875, 39.926372 ] } }, +{ "type": "Feature", "properties": { "location": "2100 GOULD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235764520071896, 39.92554626706 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12844, 39.967205 ] } }, +{ "type": "Feature", "properties": { "location": "3800 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211807, 40.021168 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16344, 39.931123 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172980830105701, 39.993374783722103 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154798, 39.929497 ] } }, +{ "type": "Feature", "properties": { "location": "2 N EDGEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241239615418706, 39.962827249863999 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154233, 40.003363 ] } }, +{ "type": "Feature", "properties": { "location": "300 FLORIST ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14491, 39.954572 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159055, 39.93358 ] } }, +{ "type": "Feature", "properties": { "location": "6600 LEEDS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.252923928820707, 39.9752150457075 ] } }, +{ "type": "Feature", "properties": { "location": "2403 NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127278, 39.976652 ] } }, +{ "type": "Feature", "properties": { "location": "3800 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101631006526006, 40.006601779626102 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162025, 39.956627 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15152, 39.925802 ] } }, +{ "type": "Feature", "properties": { "location": "168 W TABOR RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125665316626794, 40.033015454893302 ] } }, +{ "type": "Feature", "properties": { "location": "1623 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155505078731494, 39.9277545765733 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "2220 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182155250715695, 39.932698106418201 ] } }, +{ "type": "Feature", "properties": { "location": "426 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121975, 39.997538 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155486735485198, 39.921282863897098 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155632, 39.921317 ] } }, +{ "type": "Feature", "properties": { "location": "521 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "200 SUMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205113441272601, 40.0190521319849 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E FLETCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124745, 39.973843 ] } }, +{ "type": "Feature", "properties": { "location": "2621 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120357855248201, 39.981865678489001 ] } }, +{ "type": "Feature", "properties": { "location": "3251 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118190733742594, 39.998517594606 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146328, 39.938585 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235193, 39.925027 ] } }, +{ "type": "Feature", "properties": { "location": "5400 N PENN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077877, 40.026267 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16279, 39.9439 ] } }, +{ "type": "Feature", "properties": { "location": "449 N 10TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154743, 39.960275 ] } }, +{ "type": "Feature", "properties": { "location": "3286 WILLITS RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.013808465981199, 40.057009536019201 ] } }, +{ "type": "Feature", "properties": { "location": "600 S ALDER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159163, 39.942633 ] } }, +{ "type": "Feature", "properties": { "location": "5300 SAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079983, 40.025598 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S FRAZIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219468999378293, 39.930920996414699 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16006, 39.975997 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176340025879398, 40.0035320270309 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156373, 39.923895 ] } }, +{ "type": "Feature", "properties": { "location": "3706 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209124571647394, 40.017687462798698 ] } }, +{ "type": "Feature", "properties": { "location": "4808 TIBBEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227166402873394, 40.036163147100801 ] } }, +{ "type": "Feature", "properties": { "location": "4200 TERRACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2182081934466, 40.026102644809903 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222915, 40.029215 ] } }, +{ "type": "Feature", "properties": { "location": "3021 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185893122079094, 39.974878321914801 ] } }, +{ "type": "Feature", "properties": { "location": "300 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133, 39.972768 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "699 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159113, 39.965625 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16814, 39.939727 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171932, 39.939803 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "800 PERKIOMEN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165726939386602, 39.968874308498499 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PEROT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176583, 39.968195 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238531464519596, 39.953222984175603 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16705, 39.926592 ] } }, +{ "type": "Feature", "properties": { "location": "4933 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116665744294906, 40.024392716328002 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1826912513027, 39.9418637544034 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S SARTAIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16474, 39.927428 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164767, 39.917172 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205505, 39.952692 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171248, 39.940222 ] } }, +{ "type": "Feature", "properties": { "location": "1300 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167448, 39.930353 ] } }, +{ "type": "Feature", "properties": { "location": "526 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175213, 39.928855 ] } }, +{ "type": "Feature", "properties": { "location": "125 N 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156126869426402, 39.954306408055203 ] } }, +{ "type": "Feature", "properties": { "location": "6100 MCCALLUM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180982963768102, 40.039728472431896 ] } }, +{ "type": "Feature", "properties": { "location": "1900 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177825348410494, 39.928375029531303 ] } }, +{ "type": "Feature", "properties": { "location": "1900 ASHLEY RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147948829992998, 40.066012650425399 ] } }, +{ "type": "Feature", "properties": { "location": "1700 PORTER STT", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175745, 39.920143 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175878, 39.918808 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15026, 39.92938 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134322, 39.972433 ] } }, +{ "type": "Feature", "properties": { "location": "1 MASTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134502, 39.97185 ] } }, +{ "type": "Feature", "properties": { "location": "1300 OXFORD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158217, 39.97723 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "1610 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164612, 39.965023 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234788011345998, 39.9179860542299 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MASSEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234788011345998, 39.9179860542299 ] } }, +{ "type": "Feature", "properties": { "location": "1702 TRACEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041095328432405, 40.084050982335903 ] } }, +{ "type": "Feature", "properties": { "location": "1800 DIAMOND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163283183472998, 39.985589977640601 ] } }, +{ "type": "Feature", "properties": { "location": "3500 ENGLEWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043163, 40.037217 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10541, 39.9966 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BERKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161978, 39.982332 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159068, 39.965898 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226395, 40.027773 ] } }, +{ "type": "Feature", "properties": { "location": "400 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153793, 39.92093 ] } }, +{ "type": "Feature", "properties": { "location": "513 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155863267995102, 39.9200468406273 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157575, 39.923283 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156337, 39.92386 ] } }, +{ "type": "Feature", "properties": { "location": "2700 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16058, 39.914887 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179230493965306, 39.930185948313799 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20535, 39.955232 ] } }, +{ "type": "Feature", "properties": { "location": "2300 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1751383544606, 39.969745383431302 ] } }, +{ "type": "Feature", "properties": { "location": "1199 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165132, 39.935313 ] } }, +{ "type": "Feature", "properties": { "location": "921 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15654, 39.937792 ] } }, +{ "type": "Feature", "properties": { "location": "5426 HAWTHORNE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071345115801705, 40.022139196347901 ] } }, +{ "type": "Feature", "properties": { "location": "400 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154529043453806, 39.918582992812397 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.089612, 40.009543 ] } }, +{ "type": "Feature", "properties": { "location": "4200 BBLK KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.08976, 40.009573 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168133, 39.943555 ] } }, +{ "type": "Feature", "properties": { "location": "5500 MATTHEWS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158928290325406, 40.048120490842201 ] } }, +{ "type": "Feature", "properties": { "location": "1200 DAY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13322, 39.969392 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N DELAWARE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130367, 39.966265 ] } }, +{ "type": "Feature", "properties": { "location": "232 ERICA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.040944920656699, 40.116487384832503 ] } }, +{ "type": "Feature", "properties": { "location": "200 DAWSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211176410931401, 40.019481727864601 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "200 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224978854150393, 40.029976752046998 ] } }, +{ "type": "Feature", "properties": { "location": "2119 DELANCEY PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177573, 39.947627 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163438538237003, 39.964785737531798 ] } }, +{ "type": "Feature", "properties": { "location": "600 W CHEW AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132550796609294, 40.038296810706001 ] } }, +{ "type": "Feature", "properties": { "location": "6822 GUYER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231966479437006, 39.916001945501797 ] } }, +{ "type": "Feature", "properties": { "location": "510 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156016397590093, 39.921785225452197 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155737, 39.921407 ] } }, +{ "type": "Feature", "properties": { "location": "1309 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078220703432194, 40.0430232889412 ] } }, +{ "type": "Feature", "properties": { "location": "2500 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183447, 39.94497 ] } }, +{ "type": "Feature", "properties": { "location": "100 ROSEMAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.120668293754704, 40.0435594258335 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155715, 39.962285 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175958, 39.940232 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S AVONDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241367251961904, 39.929912890529103 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W OLNEY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138330869010701, 40.0376240863921 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149543, 40.005223 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N 46TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213626037491395, 39.971667503919797 ] } }, +{ "type": "Feature", "properties": { "location": "828 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181781036282402, 39.971356849451297 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N 50TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2193, 39.979842 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14118, 39.96194 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160623, 39.936198 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "1312 E EYRE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1289636395461, 39.973316444922702 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MELON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162043, 39.966592 ] } }, +{ "type": "Feature", "properties": { "location": "3021 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185893122079094, 39.974878321914801 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180101008471098, 39.926165919914098 ] } }, +{ "type": "Feature", "properties": { "location": "1951 DURFOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179077081879697, 39.922584914096603 ] } }, +{ "type": "Feature", "properties": { "location": "900 BROWN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152145335022695, 39.965835263462502 ] } }, +{ "type": "Feature", "properties": { "location": "6100 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243061756618701, 39.962244220818 ] } }, +{ "type": "Feature", "properties": { "location": "400 N GROSS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2463738286786, 39.969729182011299 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127893, 39.967447 ] } }, +{ "type": "Feature", "properties": { "location": "5919 MASCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122440533286493, 40.040919257469298 ] } }, +{ "type": "Feature", "properties": { "location": "5500 BEAUMONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228389767404707, 39.941121856213996 ] } }, +{ "type": "Feature", "properties": { "location": "1199 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175, 39.937827 ] } }, +{ "type": "Feature", "properties": { "location": "6025 MORTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173910427971293, 40.043954053882601 ] } }, +{ "type": "Feature", "properties": { "location": "670 N 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1905410751761, 39.966225538360497 ] } }, +{ "type": "Feature", "properties": { "location": "100 W WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138677, 39.966723 ] } }, +{ "type": "Feature", "properties": { "location": "6700 KINDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070618571432803, 40.042316066716197 ] } }, +{ "type": "Feature", "properties": { "location": "1928 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1619, 39.98337 ] } }, +{ "type": "Feature", "properties": { "location": "1200 COMLY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.085300640434198, 40.036219602646398 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WELLS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077170394985401, 40.043764521458897 ] } }, +{ "type": "Feature", "properties": { "location": "2099 N GRATZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163713, 39.984962 ] } }, +{ "type": "Feature", "properties": { "location": "700 SMYLIE RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1087983045973, 40.029403113361198 ] } }, +{ "type": "Feature", "properties": { "location": "5900 ELSINORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099461666306198, 40.043151283959197 ] } }, +{ "type": "Feature", "properties": { "location": "5900 CRYSTAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106641383623199, 40.047085701380901 ] } }, +{ "type": "Feature", "properties": { "location": "900 ATWOOD RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.250572604527505, 39.976790646996498 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176765749099005, 39.933262690051798 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173198, 39.948305 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N SYDENHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149228901587307, 40.029901917773003 ] } }, +{ "type": "Feature", "properties": { "location": "700 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106671999753601, 40.032899597601499 ] } }, +{ "type": "Feature", "properties": { "location": "200 COMLY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105314197937403, 40.047872539256602 ] } }, +{ "type": "Feature", "properties": { "location": "6315 ARGYLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.097011413982003, 40.049409945487497 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "2029 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163143, 39.985008 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166105, 39.951623 ] } }, +{ "type": "Feature", "properties": { "location": "6200 OAKLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.098978981448695, 40.048598901983397 ] } }, +{ "type": "Feature", "properties": { "location": "6300 REGENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236871199504506, 39.928633872123797 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153685, 39.95984 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171393, 39.924548 ] } }, +{ "type": "Feature", "properties": { "location": "4300 TOWER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220053, 40.026423 ] } }, +{ "type": "Feature", "properties": { "location": "4300 TOWER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220128, 40.026452 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220458, 40.024927 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N GARNET ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162581302363506, 39.997377906645497 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151292, 40.003043 ] } }, +{ "type": "Feature", "properties": { "location": "834 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157932, 39.936757 ] } }, +{ "type": "Feature", "properties": { "location": "800 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15784, 39.93673 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187497, 39.958708 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064010298178701, 40.014484142812499 ] } }, +{ "type": "Feature", "properties": { "location": "2118 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064010298178701, 40.014484142812499 ] } }, +{ "type": "Feature", "properties": { "location": "700 E ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1164025539248, 40.000051055523699 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158335, 39.92372 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173617879929296, 39.921684907975497 ] } }, +{ "type": "Feature", "properties": { "location": "400 VOLLMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155474293425698, 39.916665681953397 ] } }, +{ "type": "Feature", "properties": { "location": "414 VOLLMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154887, 39.916795 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161383, 39.923207 ] } }, +{ "type": "Feature", "properties": { "location": "5800 MEDIA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236830182514893, 39.974713418797002 ] } }, +{ "type": "Feature", "properties": { "location": "600 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157238748507396, 39.923578413522897 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17845, 39.945052 ] } }, +{ "type": "Feature", "properties": { "location": "6400 BELMAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.240861516627106, 39.929411730607399 ] } }, +{ "type": "Feature", "properties": { "location": "2600 DAPHNE RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208650470071106, 39.999848351961099 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 47TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21535, 39.957147 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1900 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178731893034495, 39.921696007393003 ] } }, +{ "type": "Feature", "properties": { "location": "900 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.111623, 39.999388 ] } }, +{ "type": "Feature", "properties": { "location": "200 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142483, 39.96497 ] } }, +{ "type": "Feature", "properties": { "location": "200 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141168907459402, 39.964356723690102 ] } }, +{ "type": "Feature", "properties": { "location": "200 SLOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183649257446305, 40.055733617380099 ] } }, +{ "type": "Feature", "properties": { "location": "550 E ASHMEAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160316973341295, 40.037770118497498 ] } }, +{ "type": "Feature", "properties": { "location": "5800 AKRON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077762255074006, 40.028963820215701 ] } }, +{ "type": "Feature", "properties": { "location": "300 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152917232308994, 39.917092675955402 ] } }, +{ "type": "Feature", "properties": { "location": "5700 SUMMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234421873769605, 39.965132256308202 ] } }, +{ "type": "Feature", "properties": { "location": "4153 TERRACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216757, 40.025002 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220443, 40.024848 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "1650 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076555689475398, 40.021152943418201 ] } }, +{ "type": "Feature", "properties": { "location": "100 RECTOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220307, 40.025048 ] } }, +{ "type": "Feature", "properties": { "location": "1608 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169347, 39.94325 ] } }, +{ "type": "Feature", "properties": { "location": "805 LEITHGOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150385, 39.937942 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S ROSEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169488, 39.928183 ] } }, +{ "type": "Feature", "properties": { "location": "3821 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197813, 39.96008 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "700 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158867, 39.924702 ] } }, +{ "type": "Feature", "properties": { "location": "3917 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136017576104194, 40.0112313694313 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138522, 39.965235 ] } }, +{ "type": "Feature", "properties": { "location": "300 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222436389011804, 40.032189448434401 ] } }, +{ "type": "Feature", "properties": { "location": "300 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222436389011804, 40.032189448434401 ] } }, +{ "type": "Feature", "properties": { "location": "6342 SHERMAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188124207862103, 40.037903908702397 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168127, 39.943532 ] } }, +{ "type": "Feature", "properties": { "location": "1400 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168195, 39.94372 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22813, 40.02846 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16454, 39.9417 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157512, 39.923323 ] } }, +{ "type": "Feature", "properties": { "location": "800 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091025852555404, 40.034293984669098 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164875, 39.949653 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 40TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FERNON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174795, 39.930842 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ROSEBERRY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177038, 39.920595 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175092, 39.922532 ] } }, +{ "type": "Feature", "properties": { "location": "823 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160872, 39.939353 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167428, 39.917828 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163598, 39.946563 ] } }, +{ "type": "Feature", "properties": { "location": "7212 N 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147413543908101, 40.064101277140303 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141513, 40.039538 ] } }, +{ "type": "Feature", "properties": { "location": "2433 PINE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181455, 39.947605 ] } }, +{ "type": "Feature", "properties": { "location": "920 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147142, 39.934175 ] } }, +{ "type": "Feature", "properties": { "location": "700 S SCHELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156868, 39.941155 ] } }, +{ "type": "Feature", "properties": { "location": "4222 MARPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.033833432434804, 40.037573623918497 ] } }, +{ "type": "Feature", "properties": { "location": "4222 MARPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.033833432434804, 40.037573623918497 ] } }, +{ "type": "Feature", "properties": { "location": "7114 VANDIKE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.037886190222196, 40.027968669118799 ] } }, +{ "type": "Feature", "properties": { "location": "5800 COLGATE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102533230407104, 40.042298384526497 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17137, 39.921983 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155877, 39.921562 ] } }, +{ "type": "Feature", "properties": { "location": "5418 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231141416693006, 39.978447410406197 ] } }, +{ "type": "Feature", "properties": { "location": "5700 MORRIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182035, 40.029523 ] } }, +{ "type": "Feature", "properties": { "location": "6600 LARGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.072405060776404, 40.041419798092697 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151213, 40.003337 ] } }, +{ "type": "Feature", "properties": { "location": "3100 WEYMOUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117046422205306, 39.996149419942 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175147, 39.947797 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228080711070206, 39.925256005062799 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156655, 39.958058 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S COLORADO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172092, 39.938887 ] } }, +{ "type": "Feature", "properties": { "location": "5255 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127545697092899, 40.031092664033402 ] } }, +{ "type": "Feature", "properties": { "location": "907 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153755, 39.960158 ] } }, +{ "type": "Feature", "properties": { "location": "1954 ASHLEY RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149797194628903, 40.066250525643902 ] } }, +{ "type": "Feature", "properties": { "location": "4300 TOWER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220055, 40.026435 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233997, 39.926165 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.23408, 39.92632 ] } }, +{ "type": "Feature", "properties": { "location": "5746 OSAGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237301922702002, 39.954358392377401 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157428, 39.92658 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N HUTCHINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135757, 40.043462 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224335, 40.026858 ] } }, +{ "type": "Feature", "properties": { "location": "4369 CRESSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22423, 40.026682 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22439, 40.026852 ] } }, +{ "type": "Feature", "properties": { "location": "5519 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231142311591697, 39.970843096645602 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238855868277199, 39.951671396435302 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155372, 39.92136 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164499561083502, 39.917301170713998 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180695158728795, 39.973002256086303 ] } }, +{ "type": "Feature", "properties": { "location": "3400 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125864698010005, 40.002036724401002 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175137, 39.947107 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166337, 39.935513 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155212, 39.959653 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152936829495303, 39.935681033067901 ] } }, +{ "type": "Feature", "properties": { "location": "5200 W CLARKSON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160118332345405, 40.038293657671403 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130632, 39.972677 ] } }, +{ "type": "Feature", "properties": { "location": "314 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188152, 39.961125 ] } }, +{ "type": "Feature", "properties": { "location": "1600 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171901928049493, 39.930935173137897 ] } }, +{ "type": "Feature", "properties": { "location": "2309 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181300552878696, 39.941489058303702 ] } }, +{ "type": "Feature", "properties": { "location": "2300 MONTROSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181300552878696, 39.941489058303702 ] } }, +{ "type": "Feature", "properties": { "location": "100 RICHMOND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1343, 39.966085 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 28TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191602042293795, 39.931811227138503 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107642497030497, 39.996867406139998 ] } }, +{ "type": "Feature", "properties": { "location": "550 E ASHMEAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160316973341295, 40.037770118497498 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190216129987604, 39.964516064254497 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179358, 39.941897 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 7TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15406, 39.94188 ] } }, +{ "type": "Feature", "properties": { "location": "3600 ELDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149595, 40.008127 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E ALBERT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120470891246001, 39.982293381009498 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16759, 39.929152 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 61ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241036943089, 39.971658241436998 ] } }, +{ "type": "Feature", "properties": { "location": "2500 E NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124312, 39.975068 ] } }, +{ "type": "Feature", "properties": { "location": "300 MANTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150350538387002, 39.932698520020601 ] } }, +{ "type": "Feature", "properties": { "location": "2412 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154286372780902, 39.918332882349603 ] } }, +{ "type": "Feature", "properties": { "location": "1713 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175334570768399, 39.9225465550875 ] } }, +{ "type": "Feature", "properties": { "location": "21 S ROBINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244102357559498, 39.961977842896999 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2382199431093, 39.954746095388501 ] } }, +{ "type": "Feature", "properties": { "location": "5900 OSAGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241236778042193, 39.954848551959202 ] } }, +{ "type": "Feature", "properties": { "location": "5901 COBBS CREEK PKWY", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243037861771796, 39.946196579400798 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170587, 39.951882 ] } }, +{ "type": "Feature", "properties": { "location": "419 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145617, 39.961905 ] } }, +{ "type": "Feature", "properties": { "location": "41 S SALFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240260010211699, 39.960724770297197 ] } }, +{ "type": "Feature", "properties": { "location": "2922 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170942073631593, 39.9999976042687 ] } }, +{ "type": "Feature", "properties": { "location": "3239 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133066926182394, 39.999851607906699 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156872, 39.92821 ] } }, +{ "type": "Feature", "properties": { "location": "2300 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176427, 39.969908 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176465, 39.969958 ] } }, +{ "type": "Feature", "properties": { "location": "2600 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317923606129, 39.917938822517002 ] } }, +{ "type": "Feature", "properties": { "location": "201 E GRAVERS LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203326739079102, 40.076713525179997 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157863, 39.958822 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1686, 39.934002 ] } }, +{ "type": "Feature", "properties": { "location": "1301 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165632, 39.935402 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197258, 39.957485 ] } }, +{ "type": "Feature", "properties": { "location": "2240 SHIELDS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235631033326896, 39.923731297543199 ] } }, +{ "type": "Feature", "properties": { "location": "500 RITNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156133019332003, 39.9187939060904 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "3800 POWELTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197860953443097, 39.959499177410898 ] } }, +{ "type": "Feature", "properties": { "location": "5314 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2275935732861, 39.959537252432099 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088492, 40.010898 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128145, 39.967332 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PENNSYLVANIA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176193, 39.964435 ] } }, +{ "type": "Feature", "properties": { "location": "461 E HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171184458258296, 40.043901331064298 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104338, 39.996475 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104783, 39.996827 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "4800 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217697438752694, 39.9575463587191 ] } }, +{ "type": "Feature", "properties": { "location": "3536 JASPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104373263131393, 39.999272100037501 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 2ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145752, 39.940737 ] } }, +{ "type": "Feature", "properties": { "location": "1703 KENNEDY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071689761920595, 40.0215939945626 ] } }, +{ "type": "Feature", "properties": { "location": "614 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153013, 39.94173 ] } }, +{ "type": "Feature", "properties": { "location": "789 N BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160310678513099, 39.967460481221302 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168975, 39.940712 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157252, 39.954543 ] } }, +{ "type": "Feature", "properties": { "location": "4300 PECHIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215743069008198, 40.028984195871502 ] } }, +{ "type": "Feature", "properties": { "location": "3226 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188665, 39.960452 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "634 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153385, 39.942517 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N STILLMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177695204402198, 39.975833856799703 ] } }, +{ "type": "Feature", "properties": { "location": "2824 N BAILEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173993049904297, 39.998850896576698 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163328, 39.92604 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163337, 39.926043 ] } }, +{ "type": "Feature", "properties": { "location": "300 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143508, 39.96138 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171283656234905, 39.998498526828399 ] } }, +{ "type": "Feature", "properties": { "location": "2832 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174468659911597, 39.998915883237302 ] } }, +{ "type": "Feature", "properties": { "location": "5900 TRINITY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231314050389599, 39.934707658451003 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154018246213298, 39.919580634062001 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148307, 39.92917 ] } }, +{ "type": "Feature", "properties": { "location": "3200 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125991912432795, 39.998672429988602 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127546363347193, 40.000721437153203 ] } }, +{ "type": "Feature", "properties": { "location": "1699 S 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184926588434195, 39.931579987108101 ] } }, +{ "type": "Feature", "properties": { "location": "300 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148317, 39.940633 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154562, 39.924878 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22386, 40.028498 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CHURCHVIEW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216832, 40.02498 ] } }, +{ "type": "Feature", "properties": { "location": "400 E MENTOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117137416837593, 40.021592070998203 ] } }, +{ "type": "Feature", "properties": { "location": "2540 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237293441597501, 39.916219986919103 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W GRANGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142167, 40.041195 ] } }, +{ "type": "Feature", "properties": { "location": "1608 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169357, 39.94322 ] } }, +{ "type": "Feature", "properties": { "location": "200 COTTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218935134477704, 40.027228510513197 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137668, 39.968242 ] } }, +{ "type": "Feature", "properties": { "location": "6500 EVERETT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075027, 40.041713 ] } }, +{ "type": "Feature", "properties": { "location": "800 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157078, 39.940688 ] } }, +{ "type": "Feature", "properties": { "location": "811 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145356721681694, 39.992750711726401 ] } }, +{ "type": "Feature", "properties": { "location": "5500 BELMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226665671444493, 39.939662556292902 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159082, 39.920635 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 54TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231014085081398, 39.949174753672899 ] } }, +{ "type": "Feature", "properties": { "location": "900 SPRING ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154969114214296, 39.9559258550942 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154233, 40.003402 ] } }, +{ "type": "Feature", "properties": { "location": "900 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14735, 39.935393 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W ESTAUGH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.109768, 40.000062 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15685, 39.928208 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175334570768399, 39.9225465550875 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141513, 40.039333 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106025, 39.996298 ] } }, +{ "type": "Feature", "properties": { "location": "643 N 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155526530713601, 39.9644692122748 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 65TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238090203166195, 39.9287344751435 ] } }, +{ "type": "Feature", "properties": { "location": "2200 E FLETCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128220215800994, 39.979189544465697 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13349, 39.975235 ] } }, +{ "type": "Feature", "properties": { "location": "136 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137268, 39.96916 ] } }, +{ "type": "Feature", "properties": { "location": "100 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13736, 39.969068 ] } }, +{ "type": "Feature", "properties": { "location": "414 VOLLMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15507, 39.91662 ] } }, +{ "type": "Feature", "properties": { "location": "215 S ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234315520075796, 39.957459300003997 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212403, 40.021738 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213008195965898, 40.021422669282302 ] } }, +{ "type": "Feature", "properties": { "location": "6714 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072454617014998, 40.043343221884101 ] } }, +{ "type": "Feature", "properties": { "location": "1514 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15042, 39.928887 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127257383799503, 40.042588213561103 ] } }, +{ "type": "Feature", "properties": { "location": "7200 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145723738813004, 40.0644134258728 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172368, 39.946138 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150761423599505, 39.921304865152301 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224328, 40.0266 ] } }, +{ "type": "Feature", "properties": { "location": "6600 LEEDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.252923928820707, 39.9752150457075 ] } }, +{ "type": "Feature", "properties": { "location": "1629 STAUB ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153479403531705, 40.0177061871373 ] } }, +{ "type": "Feature", "properties": { "location": "6027 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228784180985599, 39.930629750573097 ] } }, +{ "type": "Feature", "properties": { "location": "633 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170292, 39.96681 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163525, 39.982478 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N CARLISLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160118, 39.972538 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162192, 39.974337 ] } }, +{ "type": "Feature", "properties": { "location": "1927 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173603, 39.94845 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173315, 39.925505 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SEYBERT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160745, 39.973857 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "9338 NEIL RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043093581883198, 40.085036880182798 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221836951648896, 40.0255767713804 ] } }, +{ "type": "Feature", "properties": { "location": "200 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218533670274198, 40.0267494724595 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155417, 39.984485 ] } }, +{ "type": "Feature", "properties": { "location": "6200 JACKSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057154820516701, 40.021780567335703 ] } }, +{ "type": "Feature", "properties": { "location": "3400 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1175767096166, 40.000987289979797 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N NAPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182848487988693, 39.995189741029698 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "5200 SAYBROOK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216127391859501, 39.937834875387097 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "100 E GURNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129833109209699, 39.994127969657796 ] } }, +{ "type": "Feature", "properties": { "location": "1900 NICHOLAS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166747457854498, 39.979300280407102 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155658, 39.959633 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155655, 39.959743 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155388485861593, 39.959648400917096 ] } }, +{ "type": "Feature", "properties": { "location": "500 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152137, 39.936752 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 9TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153147, 39.96054 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W CHAMPLOST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137473, 40.043738 ] } }, +{ "type": "Feature", "properties": { "location": "102 N 58TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236397474778002, 39.963426788595299 ] } }, +{ "type": "Feature", "properties": { "location": "100 E HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175741579359794, 40.039513621584902 ] } }, +{ "type": "Feature", "properties": { "location": "700 S LEITHGOW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149962, 39.93995 ] } }, +{ "type": "Feature", "properties": { "location": "1701 S 21ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180138868665495, 39.930527861172699 ] } }, +{ "type": "Feature", "properties": { "location": "100 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163273061502196, 40.031564804995497 ] } }, +{ "type": "Feature", "properties": { "location": "1100 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157333, 39.960392 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128378, 39.967138 ] } }, +{ "type": "Feature", "properties": { "location": "1500 PRINCETON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069068, 40.047975 ] } }, +{ "type": "Feature", "properties": { "location": "300 BAINBRIDGE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148517, 39.940527 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128285, 39.967142 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128445, 39.967163 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174062, 39.966217 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128193, 39.967243 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15481, 39.929583 ] } }, +{ "type": "Feature", "properties": { "location": "5131 ASPEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222645109016398, 39.964602179194301 ] } }, +{ "type": "Feature", "properties": { "location": "300 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152372, 39.927138 ] } }, +{ "type": "Feature", "properties": { "location": "6532 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178479254417397, 40.053861255510697 ] } }, +{ "type": "Feature", "properties": { "location": "3600 POWELTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193918, 39.95997 ] } }, +{ "type": "Feature", "properties": { "location": "7115 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.037018236589901, 40.026974975720798 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MCCLELLAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17857, 39.928835 ] } }, +{ "type": "Feature", "properties": { "location": "2325 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171440224329501, 39.9872823564721 ] } }, +{ "type": "Feature", "properties": { "location": "1637 STAUB ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153479403531705, 40.0177061871373 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158211866833994, 40.010971387071102 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198939605917303, 39.935049687578797 ] } }, +{ "type": "Feature", "properties": { "location": "1900 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165579398929395, 39.982791744325603 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N LAMBERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164378912934396, 40.000299862238698 ] } }, +{ "type": "Feature", "properties": { "location": "400 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154897, 39.922482 ] } }, +{ "type": "Feature", "properties": { "location": "200 WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141788, 39.966598 ] } }, +{ "type": "Feature", "properties": { "location": "4500 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21198, 39.954202 ] } }, +{ "type": "Feature", "properties": { "location": "6500 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.047876995918401, 40.021360554403003 ] } }, +{ "type": "Feature", "properties": { "location": "3906 K ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104974356104293, 40.007215783831199 ] } }, +{ "type": "Feature", "properties": { "location": "4100 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19267, 40.008202 ] } }, +{ "type": "Feature", "properties": { "location": "318 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152865, 39.924663 ] } }, +{ "type": "Feature", "properties": { "location": "300 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152895, 39.924633 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196933, 39.96035 ] } }, +{ "type": "Feature", "properties": { "location": "420 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "962 E TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.110796439715898, 40.000900896107296 ] } }, +{ "type": "Feature", "properties": { "location": "3300 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09817, 39.985533 ] } }, +{ "type": "Feature", "properties": { "location": "1913 MCKEAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177675572415396, 39.926661451651597 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "120 N EDGEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240914249903, 39.964375209885098 ] } }, +{ "type": "Feature", "properties": { "location": "37 S MILLICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242235627847805, 39.9609672345183 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16922291537, 39.998229290531498 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154269654455902, 40.004947422725003 ] } }, +{ "type": "Feature", "properties": { "location": "800 UNION ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202010012930302, 39.967789556141 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159312, 39.949505 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130560029142899, 40.027411392113301 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N CROSKEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167869942702296, 39.998062219790299 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245057755271105, 39.962495105725097 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153156870336105, 40.008197847554698 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077660288847596, 40.021977457426999 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133824076508802, 39.972515261856699 ] } }, +{ "type": "Feature", "properties": { "location": "6600 MEDIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.252153051781093, 39.9735521162957 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173188, 39.925865 ] } }, +{ "type": "Feature", "properties": { "location": "6600 HORROCKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070625358152896, 40.040422295600102 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162593, 39.948557 ] } }, +{ "type": "Feature", "properties": { "location": "500 SLOAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201122, 39.961917 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "5100 MARLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075306825457105, 40.019448578117199 ] } }, +{ "type": "Feature", "properties": { "location": "2800 ORTHODOX ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.073181603833305, 39.996959540604699 ] } }, +{ "type": "Feature", "properties": { "location": "5761 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131959090660999, 40.039017794207901 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170958, 39.963737 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155353, 39.921163 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127257383799503, 40.042588213561103 ] } }, +{ "type": "Feature", "properties": { "location": "2622 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1200287731765, 39.982040701312599 ] } }, +{ "type": "Feature", "properties": { "location": "5100 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1465480490792, 40.030752612128602 ] } }, +{ "type": "Feature", "properties": { "location": "10200 JEANES ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.030126260408395, 40.110422777483201 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.069926599667994, 40.0466266245245 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245057755271105, 39.962495105725097 ] } }, +{ "type": "Feature", "properties": { "location": "1028 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128353717844206, 39.969326904356599 ] } }, +{ "type": "Feature", "properties": { "location": "4218 CHESTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208138, 39.948338 ] } }, +{ "type": "Feature", "properties": { "location": "257 HARVEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181664058564607, 40.035302267256903 ] } }, +{ "type": "Feature", "properties": { "location": "625 W ERIE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140067226837402, 40.007806233138801 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 67TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.253740843501205, 39.974773830525599 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167133, 39.940445 ] } }, +{ "type": "Feature", "properties": { "location": "100 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221648, 40.025122 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165438, 39.964925 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N STILLMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177695204402198, 39.975833856799703 ] } }, +{ "type": "Feature", "properties": { "location": "6000 LUDLOW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241540167869601, 39.961263417181897 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139223, 39.95921 ] } }, +{ "type": "Feature", "properties": { "location": "500 N FRONT ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139113, 39.959247 ] } }, +{ "type": "Feature", "properties": { "location": "1299 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182237916969001, 39.936228170045098 ] } }, +{ "type": "Feature", "properties": { "location": "1 N DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243192297524203, 39.963073641085103 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N 17TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155887287248703, 40.010498899529097 ] } }, +{ "type": "Feature", "properties": { "location": "2555 CARPENTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186252, 39.941388 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "230 E HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173498509546704, 40.041670009076 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164875, 39.92235 ] } }, +{ "type": "Feature", "properties": { "location": "216 W CLAPIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167738455206802, 40.024263692138398 ] } }, +{ "type": "Feature", "properties": { "location": "3110 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1700685563127, 40.002994439038702 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MANTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178728, 39.937123 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160353, 39.951225 ] } }, +{ "type": "Feature", "properties": { "location": "3400 W PENN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189483, 40.014997 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173408, 39.925117 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158208, 39.95289 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 69TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234423229857896, 39.916792894052001 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191107, 39.960832 ] } }, +{ "type": "Feature", "properties": { "location": "1900 NORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168775, 39.9668 ] } }, +{ "type": "Feature", "properties": { "location": "7600 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.060587, 40.05723 ] } }, +{ "type": "Feature", "properties": { "location": "4621 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148070681553605, 40.023757753170997 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226073102746895, 39.934412452547697 ] } }, +{ "type": "Feature", "properties": { "location": "1 CHRISTIAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144325, 39.935145 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155533, 39.925905 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15925, 39.920565 ] } }, +{ "type": "Feature", "properties": { "location": "100 WIDENER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121441781882893, 40.040545052844003 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168237, 39.938943 ] } }, +{ "type": "Feature", "properties": { "location": "4600 PINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214383, 39.952112 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070512, 40.046435 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158638, 39.923813 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158677, 39.923832 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166185, 39.967823 ] } }, +{ "type": "Feature", "properties": { "location": "900 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149690177731998, 39.979202424909502 ] } }, +{ "type": "Feature", "properties": { "location": "1799 TULIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130885, 39.975753 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N GRATZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165214800896507, 39.978908408510499 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116982, 39.998488 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117062, 39.998648 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167883, 39.940617 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137333909951593, 40.014506153767599 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.08968, 40.009498 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CARDINAL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240834380966604, 39.993072778136202 ] } }, +{ "type": "Feature", "properties": { "location": "4636 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148070681553605, 40.023757753170997 ] } }, +{ "type": "Feature", "properties": { "location": "2600 W FLETCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176233909677194, 39.9896878221912 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W YORK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181481424997699, 39.992721546341301 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N 31ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183400372611402, 39.990055195662499 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183379537104102, 39.985096310031899 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176115672548605, 39.993999707249202 ] } }, +{ "type": "Feature", "properties": { "location": "812 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181900742187693, 39.970805606270901 ] } }, +{ "type": "Feature", "properties": { "location": "800 PENNOCK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181900742187693, 39.970805606270901 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164658498483007, 39.981444208252597 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "5700 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220414762413398, 39.9299518664644 ] } }, +{ "type": "Feature", "properties": { "location": "3809 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235943686351504, 39.975604926872499 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "6100 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229939173832506, 39.928666177768797 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 61ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230320605928597, 39.9298422992117 ] } }, +{ "type": "Feature", "properties": { "location": "4012 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214328751125194, 40.023652320031097 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132945, 39.96894 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215218, 40.021825 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215277, 40.021862 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "4500 FLEMING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222114140580004, 40.030918585895598 ] } }, +{ "type": "Feature", "properties": { "location": "189 KALOS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208596647705903, 40.018274694957398 ] } }, +{ "type": "Feature", "properties": { "location": "400 HERMITAGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221188541954504, 40.035566977433 ] } }, +{ "type": "Feature", "properties": { "location": "3009 N LAMBERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164378912934396, 40.000299862238698 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226688907892395, 39.977331806754997 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226688907892395, 39.977331806754997 ] } }, +{ "type": "Feature", "properties": { "location": "1575 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225907424880603, 39.978578447106401 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226688907892395, 39.977331806754997 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198939605917303, 39.935049687578797 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CHURCHVIEW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216817, 40.024972 ] } }, +{ "type": "Feature", "properties": { "location": "300 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153283064191001, 39.918423775502802 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159874451288303, 39.946374851901098 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161450371269893, 39.946570992451903 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S MOLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171323, 39.929722 ] } }, +{ "type": "Feature", "properties": { "location": "1628 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165159007657095, 39.964294343688998 ] } }, +{ "type": "Feature", "properties": { "location": "1600 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165159007657095, 39.964294343688998 ] } }, +{ "type": "Feature", "properties": { "location": "1934 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174253, 39.946295 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "1599 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132013, 39.975142 ] } }, +{ "type": "Feature", "properties": { "location": "149 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215077, 40.021965 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "300 KINGSLEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213539683556306, 40.0241844038095 ] } }, +{ "type": "Feature", "properties": { "location": "2867 CHATHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113926716818696, 39.983151373647203 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086232, 40.013785 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRUCE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193956053929497, 39.950620726522203 ] } }, +{ "type": "Feature", "properties": { "location": "1700 TULIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131126079558996, 39.975234589916298 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130160727576794, 39.974878946214901 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117217, 39.97595 ] } }, +{ "type": "Feature", "properties": { "location": "525 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502227031296, 39.933105053217403 ] } }, +{ "type": "Feature", "properties": { "location": "500 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154137, 39.933203 ] } }, +{ "type": "Feature", "properties": { "location": "500 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154195, 39.933185 ] } }, +{ "type": "Feature", "properties": { "location": "1 STRAWBERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144518, 39.94902 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160918, 39.921028 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085718, 40.014813 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09101, 40.00711 ] } }, +{ "type": "Feature", "properties": { "location": "200 SHEDAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159977339164001, 40.0309722258718 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113982, 39.999367 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173898, 39.935075 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154822, 39.954398 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CREASE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132685, 39.969612 ] } }, +{ "type": "Feature", "properties": { "location": "1 E WALNUT LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177749940883601, 40.041264956891801 ] } }, +{ "type": "Feature", "properties": { "location": "1400 E PALMER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13032, 39.974452 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225567, 40.026835 ] } }, +{ "type": "Feature", "properties": { "location": "4100 MARKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.098965304571607, 40.009550878480702 ] } }, +{ "type": "Feature", "properties": { "location": "3256 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128347471214397, 39.999789211777198 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 54TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229941871156996, 39.977541146422098 ] } }, +{ "type": "Feature", "properties": { "location": "2401 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185506696280996, 39.930177463193303 ] } }, +{ "type": "Feature", "properties": { "location": "100 WIDENER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121441781882893, 40.040545052844003 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 24TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179262, 39.952195 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WEBSTER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161972, 39.939923 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142257, 40.039663 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065792835191004, 40.016496713809801 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137607, 39.968147 ] } }, +{ "type": "Feature", "properties": { "location": "300 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222436389011804, 40.032189448434401 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154717, 39.931225 ] } }, +{ "type": "Feature", "properties": { "location": "369 AVON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.031218763396893, 40.115286437128702 ] } }, +{ "type": "Feature", "properties": { "location": "2030 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177018, 39.940923 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168227, 39.96834 ] } }, +{ "type": "Feature", "properties": { "location": "800 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1579, 39.931642 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154158, 39.93365 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 51ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224646875742096, 39.951385665757599 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187781775318996, 39.957836912063399 ] } }, +{ "type": "Feature", "properties": { "location": "4525 GERMANTOWN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159293483639203, 40.023364400155899 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169626359659304, 39.962364296509698 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128552, 39.967075 ] } }, +{ "type": "Feature", "properties": { "location": "1347 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078220703432194, 40.0430232889412 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176297, 39.97107 ] } }, +{ "type": "Feature", "properties": { "location": "2400 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176267, 39.97102 ] } }, +{ "type": "Feature", "properties": { "location": "500 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151337, 39.944377 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104917, 39.996883 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164499561083502, 39.917301170713998 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163547905525505, 39.984070968508497 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166327, 39.935432 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175318, 39.943422 ] } }, +{ "type": "Feature", "properties": { "location": "2700 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162951163848305, 39.915019451165101 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143080727049295, 40.006643016473802 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "2600 E ALBERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1170452644037, 39.978278481096901 ] } }, +{ "type": "Feature", "properties": { "location": "900 WALLACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153803, 39.96394 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.190707, 39.96012 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19079, 39.96016 ] } }, +{ "type": "Feature", "properties": { "location": "3144 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1700685563127, 40.002994439038702 ] } }, +{ "type": "Feature", "properties": { "location": "5100 LUDLOW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22495, 39.959303 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172813, 39.918338 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "4000 N FRANKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139968000497007, 40.013277329891999 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169018329613905, 39.929306198693098 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MONTGOMERY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128625, 39.974288 ] } }, +{ "type": "Feature", "properties": { "location": "5800 RODMAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239668321967301, 39.952622505364701 ] } }, +{ "type": "Feature", "properties": { "location": "700 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1164025539248, 40.000051055523699 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CLINTON ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158113, 39.94527 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154005, 40.043173 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143673, 39.95527 ] } }, +{ "type": "Feature", "properties": { "location": "4300 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075715355306798, 39.9972515254955 ] } }, +{ "type": "Feature", "properties": { "location": "2600 SYLMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235314625449803, 39.916152325275 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 53RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227793, 39.955422 ] } }, +{ "type": "Feature", "properties": { "location": "1937 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175418, 39.94156 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N STILLMAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172073736294806, 40.0001384627693 ] } }, +{ "type": "Feature", "properties": { "location": "1200 GREEBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080249206869198, 40.043556619249998 ] } }, +{ "type": "Feature", "properties": { "location": "1200 GREEBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080249206869198, 40.043556619249998 ] } }, +{ "type": "Feature", "properties": { "location": "1200 GREEBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080249206869198, 40.043556619249998 ] } }, +{ "type": "Feature", "properties": { "location": "5800 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231318782024701, 39.937021854286101 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19688, 39.96084 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154752, 39.960477 ] } }, +{ "type": "Feature", "properties": { "location": "1927 ASHLEY RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147948829992998, 40.066012650425399 ] } }, +{ "type": "Feature", "properties": { "location": "1100 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088307602204097, 40.034684730937002 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MELON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165795, 39.966803 ] } }, +{ "type": "Feature", "properties": { "location": "500 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151423, 39.941115 ] } }, +{ "type": "Feature", "properties": { "location": "1616 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168587, 39.950008 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W NEDRO AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142623, 40.042805 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160813, 39.958885 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226263, 40.027712 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143343, 40.039633 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N HUTCHINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135828, 40.04355 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22807, 40.028358 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189012, 39.959035 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177245, 39.953482 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 21ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177568, 39.942035 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160166865287906, 39.924822582971203 ] } }, +{ "type": "Feature", "properties": { "location": "299 S DELHI ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157205, 39.947063 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154145, 39.963268 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1712, 39.940138 ] } }, +{ "type": "Feature", "properties": { "location": "2813 WELSH RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.028300189045098, 40.063932087522502 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1562, 39.959875 ] } }, +{ "type": "Feature", "properties": { "location": "3200 G ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11509, 39.998233 ] } }, +{ "type": "Feature", "properties": { "location": "5532 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232145324628306, 39.959337449758003 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CREASE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132943, 39.969913 ] } }, +{ "type": "Feature", "properties": { "location": "4601 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214150681328903, 39.955546089996098 ] } }, +{ "type": "Feature", "properties": { "location": "5600 WALTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236061265115396, 39.950577644883197 ] } }, +{ "type": "Feature", "properties": { "location": "1900 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173598, 39.944982 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163563, 39.949895 ] } }, +{ "type": "Feature", "properties": { "location": "800 S ROSEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167165, 39.940458 ] } }, +{ "type": "Feature", "properties": { "location": "2999 EDGEMONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107266799361696, 39.981684914079601 ] } }, +{ "type": "Feature", "properties": { "location": "1518 WOMRATH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091846428009106, 40.010130013184998 ] } }, +{ "type": "Feature", "properties": { "location": "2020 RIDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152077568973993, 40.054168681365198 ] } }, +{ "type": "Feature", "properties": { "location": "800 E ATLANTIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114028365336196, 40.002030459345001 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONROE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148012, 39.939627 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155298, 39.959708 ] } }, +{ "type": "Feature", "properties": { "location": "500 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15481, 39.925367 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155866964385496, 39.926108690002401 ] } }, +{ "type": "Feature", "properties": { "location": "500 SIGEL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15587, 39.925548 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MOYAMENSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168768, 39.918345 ] } }, +{ "type": "Feature", "properties": { "location": "1663 CONKLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076933080526203, 40.020801410255601 ] } }, +{ "type": "Feature", "properties": { "location": "1500 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173957, 39.91975 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 38TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197747, 39.95746 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168442, 39.9437 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168438, 39.943632 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161103, 39.920697 ] } }, +{ "type": "Feature", "properties": { "location": "2742 N 12TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150525225698701, 39.994782909514001 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143046514553305, 39.955143513987899 ] } }, +{ "type": "Feature", "properties": { "location": "322 W GEORGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143117099821694, 39.967882756732998 ] } }, +{ "type": "Feature", "properties": { "location": "1 FARRAGUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214542, 39.956348 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARLBOROUGH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132535, 39.971058 ] } }, +{ "type": "Feature", "properties": { "location": "1199 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134426223493605, 39.968194459860896 ] } }, +{ "type": "Feature", "properties": { "location": "699 N BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160617, 39.966407 ] } }, +{ "type": "Feature", "properties": { "location": "2200 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17641, 39.957062 ] } }, +{ "type": "Feature", "properties": { "location": "600 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157238748507396, 39.923578413522897 ] } }, +{ "type": "Feature", "properties": { "location": "8000 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.055777, 40.061925 ] } }, +{ "type": "Feature", "properties": { "location": "8000 STATE RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.019698, 40.03252 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "200 ELBRIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099432732431893, 40.052455978256297 ] } }, +{ "type": "Feature", "properties": { "location": "2201 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183306956078198, 39.924848732607401 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158793, 39.923822 ] } }, +{ "type": "Feature", "properties": { "location": "100 WIDENER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121441781882893, 40.040545052844003 ] } }, +{ "type": "Feature", "properties": { "location": "101 WIDENER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121441781882893, 40.040545052844003 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086493, 40.014017 ] } }, +{ "type": "Feature", "properties": { "location": "899 PERKIOMEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167675, 39.970855 ] } }, +{ "type": "Feature", "properties": { "location": "500 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154062, 39.932437 ] } }, +{ "type": "Feature", "properties": { "location": "1314 W TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150408905246195, 40.005976291636898 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.110372, 39.998008 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.075752, 40.04169 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 59TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237863046152995, 39.972319213451598 ] } }, +{ "type": "Feature", "properties": { "location": "3200 W YORK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1846600827744, 39.9931254551122 ] } }, +{ "type": "Feature", "properties": { "location": "300 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148415, 39.94444 ] } }, +{ "type": "Feature", "properties": { "location": "7100 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190135, 40.060945 ] } }, +{ "type": "Feature", "properties": { "location": "4157 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.054016364190701, 40.028794328487301 ] } }, +{ "type": "Feature", "properties": { "location": "24 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211253, 39.95752 ] } }, +{ "type": "Feature", "properties": { "location": "1100 HALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161970577316396, 39.938892154075901 ] } }, +{ "type": "Feature", "properties": { "location": "5931 SUMMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238622031502899, 39.965880385871998 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20721, 39.948323 ] } }, +{ "type": "Feature", "properties": { "location": "5518 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231441845140793, 39.969836335690601 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142265, 39.970425 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1398325087372, 39.957321124916703 ] } }, +{ "type": "Feature", "properties": { "location": "5300 WISSAHICKON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178587765722995, 40.022963296834803 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159137, 39.920577 ] } }, +{ "type": "Feature", "properties": { "location": "4700 N 8TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138340389430098, 40.023703439254703 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073705, 40.043362 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 67TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.236284088782995, 39.923261374586502 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142393, 40.03966 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134387, 39.972283 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S HICKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173414186500395, 39.9177970122659 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171277, 39.920785 ] } }, +{ "type": "Feature", "properties": { "location": "5300 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217841443550498, 39.937169053182799 ] } }, +{ "type": "Feature", "properties": { "location": "423 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133582, 39.975233 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N HOBART ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.240151722368395, 39.987455537574903 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090938, 40.007592 ] } }, +{ "type": "Feature", "properties": { "location": "200 E WELLENS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.119835718458802, 40.029602589423 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "589 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102288944325693, 40.041170137360503 ] } }, +{ "type": "Feature", "properties": { "location": "899 S SWANSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143297, 39.93623 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149317, 39.939437 ] } }, +{ "type": "Feature", "properties": { "location": "242 S 17TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16932, 39.948557 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155959695530896, 40.002809216226801 ] } }, +{ "type": "Feature", "properties": { "location": "200 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150592, 39.923142 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172287, 39.946762 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14545, 39.968247 ] } }, +{ "type": "Feature", "properties": { "location": "436 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131112148426098, 39.974473839710697 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18279, 39.941647 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1826912513027, 39.9418637544034 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SCHUBERT ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170103, 39.948383 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128122, 39.96718 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22442, 40.026623 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16789, 39.94098 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167832, 39.941125 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167868, 39.941055 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156082, 39.977025 ] } }, +{ "type": "Feature", "properties": { "location": "3600 ELDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149772, 40.008753 ] } }, +{ "type": "Feature", "properties": { "location": "799 N 26TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179673, 39.969437 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 42ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207135, 39.948335 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078082, 40.022282 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160825, 39.921047 ] } }, +{ "type": "Feature", "properties": { "location": "4600 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209959044643895, 39.9442423635642 ] } }, +{ "type": "Feature", "properties": { "location": "1 W WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135077, 39.967055 ] } }, +{ "type": "Feature", "properties": { "location": "3300 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111371859365207, 39.998630400763197 ] } }, +{ "type": "Feature", "properties": { "location": "6600 LEEDS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.252923928820707, 39.9752150457075 ] } }, +{ "type": "Feature", "properties": { "location": "300 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151325, 39.932018 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15538, 39.984585 ] } }, +{ "type": "Feature", "properties": { "location": "3800 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21394, 40.019887 ] } }, +{ "type": "Feature", "properties": { "location": "1 E COULTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169779097302097, 40.033949939361101 ] } }, +{ "type": "Feature", "properties": { "location": "2400 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177772968472098, 39.965645049350996 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S ALDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225680866972496, 39.934691098639298 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S ALDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225680866972496, 39.934691098639298 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "5532 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232145324628306, 39.959337449758003 ] } }, +{ "type": "Feature", "properties": { "location": "5532 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232145324628306, 39.959337449758003 ] } }, +{ "type": "Feature", "properties": { "location": "335 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171890717722405, 40.040135307892399 ] } }, +{ "type": "Feature", "properties": { "location": "799 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18273, 39.97069 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128995, 39.972003 ] } }, +{ "type": "Feature", "properties": { "location": "1300 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078220703432194, 40.0430232889412 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149863, 39.945807 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "500 E CABOT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128367910649303, 39.972229435109497 ] } }, +{ "type": "Feature", "properties": { "location": "1301 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147812, 39.931513 ] } }, +{ "type": "Feature", "properties": { "location": "4600 DISSTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.04252, 40.027127 ] } }, +{ "type": "Feature", "properties": { "location": "5632 HUNTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234621481525494, 39.9771803225334 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 34TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190785, 39.960103 ] } }, +{ "type": "Feature", "properties": { "location": "3900 PALMETTO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108156778141193, 40.007626027552 ] } }, +{ "type": "Feature", "properties": { "location": "3300 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111371859365207, 39.998630400763197 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ARGYLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111819206454001, 39.998691024209499 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169893, 39.926892 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128038, 39.967302 ] } }, +{ "type": "Feature", "properties": { "location": "1300 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078220703432194, 40.0430232889412 ] } }, +{ "type": "Feature", "properties": { "location": "200 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14605, 39.932535 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227018414596103, 39.942084266968202 ] } }, +{ "type": "Feature", "properties": { "location": "2100 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17393, 39.962642 ] } }, +{ "type": "Feature", "properties": { "location": "2123 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173203, 39.966065 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178472, 39.921798 ] } }, +{ "type": "Feature", "properties": { "location": "624 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.240907714640898, 39.951554024472401 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140703, 40.039292 ] } }, +{ "type": "Feature", "properties": { "location": "900 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.112347983604806, 39.9995160672891 ] } }, +{ "type": "Feature", "properties": { "location": "7236 GERMANTOWN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191584751459104, 40.060858080108297 ] } }, +{ "type": "Feature", "properties": { "location": "400 N REDFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238050918327005, 39.968609104568799 ] } }, +{ "type": "Feature", "properties": { "location": "445 VOLLMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155474293425698, 39.916665681953397 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123737, 39.972912 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S TAYLOR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185663034796605, 39.933332462947099 ] } }, +{ "type": "Feature", "properties": { "location": "2700 E SERGEANT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117778154384794, 39.9759587737571 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155363, 39.984595 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "3100 CHATHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107817, 39.986548 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090302, 40.007028 ] } }, +{ "type": "Feature", "properties": { "location": "4200 MAYWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099188672810698, 40.011204897964099 ] } }, +{ "type": "Feature", "properties": { "location": "5630 OSAGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235326030036305, 39.954114231492703 ] } }, +{ "type": "Feature", "properties": { "location": "3100 G ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1158, 39.99532 ] } }, +{ "type": "Feature", "properties": { "location": "6100 LUDLOW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243243866227303, 39.961476011197398 ] } }, +{ "type": "Feature", "properties": { "location": "300 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142622, 39.965073 ] } }, +{ "type": "Feature", "properties": { "location": "206 N 61ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241930033970604, 39.966063223254402 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181295547482094, 39.925236708687997 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101787, 40.008422 ] } }, +{ "type": "Feature", "properties": { "location": "7055 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238704806655903, 39.917073900737897 ] } }, +{ "type": "Feature", "properties": { "location": "6300 N NORWOOD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156221854490298, 40.051209653397798 ] } }, +{ "type": "Feature", "properties": { "location": "255 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "251 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "5063 N 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135971342687199, 40.028498909126597 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143697, 40.043513 ] } }, +{ "type": "Feature", "properties": { "location": "1635 67TH AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1456065611588, 40.055714641674697 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 26TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177529770172498, 39.980010072696899 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W OLNEY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141421125326104, 40.038335198207101 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W OLNEY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141421125326104, 40.038335198207101 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1726 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155278, 39.959713 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WYLIE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166664363836702, 39.969400114038102 ] } }, +{ "type": "Feature", "properties": { "location": "5617 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234700195301102, 39.955669123518 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11445, 39.99949 ] } }, +{ "type": "Feature", "properties": { "location": "355 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213683, 40.024972 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175017, 39.937898 ] } }, +{ "type": "Feature", "properties": { "location": "500 N PERCY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153630624038797, 39.962108180253402 ] } }, +{ "type": "Feature", "properties": { "location": "798 SMYLIE RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1087983045973, 40.029403113361198 ] } }, +{ "type": "Feature", "properties": { "location": "700 WYNNEWOOD RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246450383569794, 39.974439998104799 ] } }, +{ "type": "Feature", "properties": { "location": "300 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219956696157595, 40.029184889785903 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157237, 39.920155 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151215, 40.003 ] } }, +{ "type": "Feature", "properties": { "location": "5800 OLD YORK RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144362, 40.042342 ] } }, +{ "type": "Feature", "properties": { "location": "5800 RODMAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239668321967301, 39.952622505364701 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149532, 40.005205 ] } }, +{ "type": "Feature", "properties": { "location": "5600 MARKET ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233205972979505, 39.961022009453799 ] } }, +{ "type": "Feature", "properties": { "location": "6200 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123534466166305, 40.045270639468903 ] } }, +{ "type": "Feature", "properties": { "location": "400 WYOMING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117687, 40.020683 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10484, 39.996872 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104815, 39.996837 ] } }, +{ "type": "Feature", "properties": { "location": "3608 POWELTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194417, 39.959802 ] } }, +{ "type": "Feature", "properties": { "location": "10644 LOCKART RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041581491533506, 40.117073692321803 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174998, 39.947385 ] } }, +{ "type": "Feature", "properties": { "location": "1801 FRANCIS ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167164649758206, 39.967834757942903 ] } }, +{ "type": "Feature", "properties": { "location": "2100 YELLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164080550158005, 40.0119608724074 ] } }, +{ "type": "Feature", "properties": { "location": "1699 MEADOW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.083977, 40.015838 ] } }, +{ "type": "Feature", "properties": { "location": "3965 BALTIMORE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202523212277399, 39.949951546984501 ] } }, +{ "type": "Feature", "properties": { "location": "6920 GARMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234621504187004, 39.916263850833097 ] } }, +{ "type": "Feature", "properties": { "location": "6250 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246369066741195, 39.959538635384099 ] } }, +{ "type": "Feature", "properties": { "location": "6250 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.246369066741195, 39.959538635384099 ] } }, +{ "type": "Feature", "properties": { "location": "3500 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192597, 39.961267 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S ISEMINGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168387, 39.917798 ] } }, +{ "type": "Feature", "properties": { "location": "4149 GREEBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.054518379160896, 40.028532519457002 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173245, 39.925792 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17119, 39.940118 ] } }, +{ "type": "Feature", "properties": { "location": "1800 BRUNNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156296739037103, 40.0182251000466 ] } }, +{ "type": "Feature", "properties": { "location": "900 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15674, 39.95091 ] } }, +{ "type": "Feature", "properties": { "location": "4500 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212347082244705, 39.956884466274097 ] } }, +{ "type": "Feature", "properties": { "location": "4400 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2103952849438, 39.9574066986753 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139635, 39.956947 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 38TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197707, 39.957373 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206023265010998, 39.948506225023202 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170798, 39.941427 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105515, 39.996592 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105497, 39.99662 ] } }, +{ "type": "Feature", "properties": { "location": "4700 SANSOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216477799566107, 39.956615516869299 ] } }, +{ "type": "Feature", "properties": { "location": "3800 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197277010237499, 39.960467515074001 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154393, 39.926257 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086218, 40.013843 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CONLYN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144615, 40.042312 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168095, 39.939687 ] } }, +{ "type": "Feature", "properties": { "location": "5800 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.100718274320698, 40.041296691824499 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073643, 40.043535 ] } }, +{ "type": "Feature", "properties": { "location": "6800 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240057705149397, 39.9235055284556 ] } }, +{ "type": "Feature", "properties": { "location": "854 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "1600 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171426428692996, 39.935496300423601 ] } }, +{ "type": "Feature", "properties": { "location": "3500 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192683, 39.961307 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S REDFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228431665606294, 39.932759208621199 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15265, 39.942475 ] } }, +{ "type": "Feature", "properties": { "location": "5900 JANNETTE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209557005813593, 40.032158797065101 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 40TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15282, 39.942443 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155465, 39.984508 ] } }, +{ "type": "Feature", "properties": { "location": "4100 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206257132320204, 39.952139672405302 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152417, 39.942353 ] } }, +{ "type": "Feature", "properties": { "location": "314 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188162990061599, 39.9614348925003 ] } }, +{ "type": "Feature", "properties": { "location": "500 E HILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120666752706896, 39.998024770211103 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187, 40.027712 ] } }, +{ "type": "Feature", "properties": { "location": "3700 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.195282, 39.959782 ] } }, +{ "type": "Feature", "properties": { "location": "900 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089901685639305, 40.033014671300798 ] } }, +{ "type": "Feature", "properties": { "location": "1300 KATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16512, 39.943088 ] } }, +{ "type": "Feature", "properties": { "location": "1300 KATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165015, 39.943137 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228080711070206, 39.925256005062799 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157298450452998, 39.919587715279 ] } }, +{ "type": "Feature", "properties": { "location": "5500 WALTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234036866233097, 39.950327331750103 ] } }, +{ "type": "Feature", "properties": { "location": "2027 S FRAZIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224659469176601, 39.935411029033503 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157562, 39.923268 ] } }, +{ "type": "Feature", "properties": { "location": "2039 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156578533326396, 39.922915906480803 ] } }, +{ "type": "Feature", "properties": { "location": "423 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180605039295799, 39.920663133572198 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BUCKNELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185313465198902, 39.927018915684997 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "5134 SPRUCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225015604926796, 39.954468422602098 ] } }, +{ "type": "Feature", "properties": { "location": "1418 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159732, 39.97457 ] } }, +{ "type": "Feature", "properties": { "location": "1418 MASTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160108864082702, 39.974650708779699 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180605039295799, 39.920663133572198 ] } }, +{ "type": "Feature", "properties": { "location": "1934 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174058, 39.946297 ] } }, +{ "type": "Feature", "properties": { "location": "2100 PARRISH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172610973840904, 39.970493961414697 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174754906039595, 39.970265735694497 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142265, 39.970293 ] } }, +{ "type": "Feature", "properties": { "location": "300 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152917232308994, 39.917092675955402 ] } }, +{ "type": "Feature", "properties": { "location": "5200 JACKSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070811740554603, 40.016058483205498 ] } }, +{ "type": "Feature", "properties": { "location": "1500 E SUSQUEHANNA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12717, 39.976593 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "300 S WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16417, 39.946455 ] } }, +{ "type": "Feature", "properties": { "location": "400 N GROSS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2463738286786, 39.969729182011299 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178089557315005, 39.971246140363597 ] } }, +{ "type": "Feature", "properties": { "location": "1900 W CUMBERLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163463195163402, 39.991927758062303 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 54TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2309110234401, 39.983052836281701 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225373, 40.027158 ] } }, +{ "type": "Feature", "properties": { "location": "7044 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160915, 39.968898 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "200 N PAXON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223075424709606, 39.963714404053398 ] } }, +{ "type": "Feature", "properties": { "location": "401 S 46TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2144506248314, 39.951677635728601 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 59TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233460476059406, 39.937766912215302 ] } }, +{ "type": "Feature", "properties": { "location": "500 ARCH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149668, 39.952738 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "2600 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233394290358703, 39.916809360825901 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129465389976502, 39.9728074006401 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177448, 39.953788 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "403 S 40TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "3965 BALTIMORE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202523212277399, 39.949951546984501 ] } }, +{ "type": "Feature", "properties": { "location": "5114 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224005057888206, 39.959313475732401 ] } }, +{ "type": "Feature", "properties": { "location": "5821 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121478040567496, 40.039243066232899 ] } }, +{ "type": "Feature", "properties": { "location": "6510 GESNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234154241103198, 39.924462744150603 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151263, 40.00295 ] } }, +{ "type": "Feature", "properties": { "location": "500 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "4300 TOWER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220055, 40.02645 ] } }, +{ "type": "Feature", "properties": { "location": "1900 LANSING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.06041, 40.057507 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E TIOGA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108385, 40.000672 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114278, 39.999248 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114338, 39.999343 ] } }, +{ "type": "Feature", "properties": { "location": "1807 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "1 QUEEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143308, 39.936373 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 4TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148567, 39.944448 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154288, 39.926985 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168105, 39.943603 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141292, 39.965355 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N HOWARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129493467285101, 40.0025100033737 ] } }, +{ "type": "Feature", "properties": { "location": "500 E THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128012, 39.973023 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E EYRE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1289636395461, 39.973316444922702 ] } }, +{ "type": "Feature", "properties": { "location": "4600 FERNHILL RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1668973233363, 40.021443730191301 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157077, 39.920692 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089493502317296, 40.033440277255202 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166832, 39.937142 ] } }, +{ "type": "Feature", "properties": { "location": "6400 GREENWAY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234554662594505, 39.9273736210938 ] } }, +{ "type": "Feature", "properties": { "location": "100 WIDENER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.121441781882893, 40.040545052844003 ] } }, +{ "type": "Feature", "properties": { "location": "3800 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197433, 39.960667 ] } }, +{ "type": "Feature", "properties": { "location": "2342 S 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163554533768504, 39.920384145087503 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156877, 39.928123 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176405, 39.92396 ] } }, +{ "type": "Feature", "properties": { "location": "800 STILLMAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17844, 39.971285 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198939605917303, 39.935049687578797 ] } }, +{ "type": "Feature", "properties": { "location": "400 W CHEW AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128751429457594, 40.037802149668202 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARVER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089493502317296, 40.033440277255202 ] } }, +{ "type": "Feature", "properties": { "location": "4100 TERRACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216033044601801, 40.024419616720202 ] } }, +{ "type": "Feature", "properties": { "location": "4100 TERRACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216033044601801, 40.024419616720202 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E ALBERT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120470891246001, 39.982293381009498 ] } }, +{ "type": "Feature", "properties": { "location": "927 GRANITE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091344380469593, 40.031211659254197 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N FAIRHILL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140675860810006, 39.9960818498745 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166995, 39.965305 ] } }, +{ "type": "Feature", "properties": { "location": "1050 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13861, 39.966565 ] } }, +{ "type": "Feature", "properties": { "location": "100 W WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138742, 39.96665 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155982, 39.921322 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114723, 39.999387 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22633, 40.027705 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226292, 40.027743 ] } }, +{ "type": "Feature", "properties": { "location": "100 POLLARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138123, 39.965798 ] } }, +{ "type": "Feature", "properties": { "location": "441 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151930129375302, 39.932893846230201 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180814394467703, 39.942758722938201 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182507815898106, 39.942707927609703 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182507815898106, 39.942707927609703 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130560029142899, 40.027411392113301 ] } }, +{ "type": "Feature", "properties": { "location": "500 ATWOOD RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.250342892848295, 39.971246940569898 ] } }, +{ "type": "Feature", "properties": { "location": "5500 W THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231430504010206, 39.972379036018701 ] } }, +{ "type": "Feature", "properties": { "location": "6300 REGENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236871199504506, 39.928633872123797 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197118, 39.957373 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197403, 39.95755 ] } }, +{ "type": "Feature", "properties": { "location": "3700 K FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197027, 39.957253 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150761423599505, 39.921304865152301 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154845, 39.948987 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FONTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162305698581605, 39.984813678960599 ] } }, +{ "type": "Feature", "properties": { "location": "2001 BRILL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070045477760502, 40.015885824168699 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "6300 HOMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176815512257505, 40.048350164571701 ] } }, +{ "type": "Feature", "properties": { "location": "6221 HARBISON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.062659233702206, 40.029025801534701 ] } }, +{ "type": "Feature", "properties": { "location": "6700 RUTLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.072454617014998, 40.043343221884101 ] } }, +{ "type": "Feature", "properties": { "location": "5500 HORROCKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.080855, 40.029688 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157293, 39.962487 ] } }, +{ "type": "Feature", "properties": { "location": "1000 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088748275860894, 40.0369031675909 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154148, 39.92779 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15332, 39.933687 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176977, 39.948097 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 43RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208573, 39.955547 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180695158728795, 39.973002256086303 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MONUMENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163033, 39.983022 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155727, 39.928942 ] } }, +{ "type": "Feature", "properties": { "location": "700 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159062454371295, 39.922540544716902 ] } }, +{ "type": "Feature", "properties": { "location": "200 W ALBANUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128847189448294, 40.026279760722602 ] } }, +{ "type": "Feature", "properties": { "location": "1719 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173633, 39.929418 ] } }, +{ "type": "Feature", "properties": { "location": "5900 ELSINORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099461666306198, 40.043151283959197 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117518, 39.975792 ] } }, +{ "type": "Feature", "properties": { "location": "2229 W LEHIGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892151483604, 39.995795826908797 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157513, 39.954845 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15765, 39.923293 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220423, 40.024925 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192385, 39.9569 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1282, 39.967195 ] } }, +{ "type": "Feature", "properties": { "location": "200 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147742, 39.931557 ] } }, +{ "type": "Feature", "properties": { "location": "1 N DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243192297524203, 39.963073641085103 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DEVEREAUX AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.080940868483395, 40.037594241261402 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MCKINLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078232257056797, 40.036941819632702 ] } }, +{ "type": "Feature", "properties": { "location": "1300 ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1421, 39.971538 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137572, 39.968147 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137473, 39.968473 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129053, 39.972088 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13074, 39.972725 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.125292, 39.970808 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14229, 39.970277 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142162, 39.970573 ] } }, +{ "type": "Feature", "properties": { "location": "967 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145485, 39.968218 ] } }, +{ "type": "Feature", "properties": { "location": "400 W THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142962, 39.97126 ] } }, +{ "type": "Feature", "properties": { "location": "900 ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143042, 39.966255 ] } }, +{ "type": "Feature", "properties": { "location": "800 S SWANSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143247, 39.937027 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177195, 39.951395 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170275, 39.942343 ] } }, +{ "type": "Feature", "properties": { "location": "4200 SILVERWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220205, 40.02514 ] } }, +{ "type": "Feature", "properties": { "location": "1600 TITAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172163, 39.935235 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W YORK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1606455414897, 39.990027749972803 ] } }, +{ "type": "Feature", "properties": { "location": "1920 NORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169395, 39.966812 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174143, 39.919667 ] } }, +{ "type": "Feature", "properties": { "location": "171 W THELMA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127209198689698, 40.0204988630881 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166747, 39.920185 ] } }, +{ "type": "Feature", "properties": { "location": "198 ROSELYN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122938193073097, 40.042310174034199 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211407994077206, 39.956538793198 ] } }, +{ "type": "Feature", "properties": { "location": "3900 CLARIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104304196443707, 40.007140860325997 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155838, 39.962763 ] } }, +{ "type": "Feature", "properties": { "location": "29 E WALNUT LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177749940883601, 40.041264956891801 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 10TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154795, 39.96018 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191973, 39.95676 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22627, 40.027743 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1896, 39.954757 ] } }, +{ "type": "Feature", "properties": { "location": "600 N PEACH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227897833938997, 39.970715112489202 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196935, 39.960843 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159558, 39.924813 ] } }, +{ "type": "Feature", "properties": { "location": "4700 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216745, 39.954652 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157298450452998, 39.919587715279 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225567, 39.972383 ] } }, +{ "type": "Feature", "properties": { "location": "6536 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235115, 39.92492 ] } }, +{ "type": "Feature", "properties": { "location": "1650 DOUNTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153653054762898, 40.0181050242849 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167301463989503, 39.954370035731998 ] } }, +{ "type": "Feature", "properties": { "location": "3900 TERRACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21509, 40.023672 ] } }, +{ "type": "Feature", "properties": { "location": "3900 TERRACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21504, 40.023667 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176242, 39.971013 ] } }, +{ "type": "Feature", "properties": { "location": "5151 GERMANTOWN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166305183157405, 40.030698392013697 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 37TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195137, 39.958607 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073625, 40.043577 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073678, 40.043543 ] } }, +{ "type": "Feature", "properties": { "location": "300 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217640426211005, 40.029120525284299 ] } }, +{ "type": "Feature", "properties": { "location": "1 W HIGHLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207415, 40.075105 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SPRUCE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169505, 39.94758 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "900 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162448, 39.918373 ] } }, +{ "type": "Feature", "properties": { "location": "800 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161115, 39.916898 ] } }, +{ "type": "Feature", "properties": { "location": "5901 CEDAR AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241126432772404, 39.952236471512698 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175252, 39.92886 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N PENN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.077853, 40.026228 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160373, 39.950935 ] } }, +{ "type": "Feature", "properties": { "location": "2400 E YORK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12392, 39.977173 ] } }, +{ "type": "Feature", "properties": { "location": "1799 TULIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13091, 39.97564 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167728, 39.963948 ] } }, +{ "type": "Feature", "properties": { "location": "6700 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231751826874103, 39.919045028464197 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1729 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162918, 39.982495 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172357, 39.927187 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157285, 39.962445 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15723, 39.962473 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105437, 39.983375 ] } }, +{ "type": "Feature", "properties": { "location": "3460 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127174976298505, 40.002203896316999 ] } }, +{ "type": "Feature", "properties": { "location": "100 WIDENER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121441781882893, 40.040545052844003 ] } }, +{ "type": "Feature", "properties": { "location": "610 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152815, 39.942457 ] } }, +{ "type": "Feature", "properties": { "location": "503 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "10 N 15TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165146204997697, 39.953093858175997 ] } }, +{ "type": "Feature", "properties": { "location": "5615 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232971277944003, 39.970638145933897 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175277, 39.94542 ] } }, +{ "type": "Feature", "properties": { "location": "200 W ALBANUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128847189448294, 40.026279760722602 ] } }, +{ "type": "Feature", "properties": { "location": "3500 BOWMAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18864, 40.011343 ] } }, +{ "type": "Feature", "properties": { "location": "1700 TULIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13095, 39.975793 ] } }, +{ "type": "Feature", "properties": { "location": "1799 TULIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130862, 39.975637 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149968, 39.982218 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155263, 39.98441 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064010298178701, 40.014484142812499 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130160727576794, 39.974878946214901 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153465, 39.929675 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "2100 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182097, 39.922065 ] } }, +{ "type": "Feature", "properties": { "location": "900 N RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146098, 39.969195 ] } }, +{ "type": "Feature", "properties": { "location": "1800 TULIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130390548518903, 39.976513152937898 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16156, 39.92945 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164102, 39.932387 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170217, 39.942357 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172773, 39.918355 ] } }, +{ "type": "Feature", "properties": { "location": "1332 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129465389976502, 39.9728074006401 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164557, 39.963557 ] } }, +{ "type": "Feature", "properties": { "location": "3857 WYALUSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.200728, 39.97255 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143323, 40.039717 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197047, 39.960252 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1413, 39.965368 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155353, 39.954403 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SHACKAMAXON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133163, 39.968258 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226323, 40.027768 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141207, 39.968568 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12299, 39.973783 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "3400 I ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.110377, 40.000082 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LOCUST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165385693152501, 39.948316936900298 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156848, 39.921403 ] } }, +{ "type": "Feature", "properties": { "location": "1800 DUDLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175817, 39.926988 ] } }, +{ "type": "Feature", "properties": { "location": "4200 MITCHELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212501108371796, 40.0280002317674 ] } }, +{ "type": "Feature", "properties": { "location": "2400 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171793385482303, 39.9950758319969 ] } }, +{ "type": "Feature", "properties": { "location": "215 N 51ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222169356724805, 39.963222434532703 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17329, 39.925507 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156965, 39.928045 ] } }, +{ "type": "Feature", "properties": { "location": "800 HANCOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139948, 39.963267 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 15TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166597, 39.945303 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170627829727195, 39.921935278328803 ] } }, +{ "type": "Feature", "properties": { "location": "3400 JASPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105275, 39.99885 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18894, 39.954377 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188355, 39.959008 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188232, 39.95903 ] } }, +{ "type": "Feature", "properties": { "location": "5000 LEIPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.081643, 40.02267 ] } }, +{ "type": "Feature", "properties": { "location": "4619 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148070681553605, 40.023757753170997 ] } }, +{ "type": "Feature", "properties": { "location": "5400 CHERRY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229526196382693, 39.963079425743999 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086425, 40.013868 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173915, 39.934977 ] } }, +{ "type": "Feature", "properties": { "location": "3965 BALTIMORE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202523212277399, 39.949951546984501 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138704001167895, 40.008220017211599 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16276, 39.949933 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167052, 39.919042 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153166304473899, 39.934644664834202 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152567, 39.94238 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N LEITHGOW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131552, 40.024503 ] } }, +{ "type": "Feature", "properties": { "location": "1400 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15523, 39.984417 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163895, 39.918503 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155413, 39.984547 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S DAGGETT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235403402718106, 39.925795730786596 ] } }, +{ "type": "Feature", "properties": { "location": "7200 LORETTO AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069231203308803, 40.050573910142496 ] } }, +{ "type": "Feature", "properties": { "location": "3400 REACH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1152831300316, 40.000689465926001 ] } }, +{ "type": "Feature", "properties": { "location": "193 BALDWIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N MARVINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152062, 39.984117 ] } }, +{ "type": "Feature", "properties": { "location": "300 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150305, 39.934135 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "500 ARMSTRONG ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160472200296098, 40.036940733857897 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166442, 39.959418 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160495, 39.959317 ] } }, +{ "type": "Feature", "properties": { "location": "900 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153355, 39.962553 ] } }, +{ "type": "Feature", "properties": { "location": "900 N RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146095, 39.969115 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157485, 39.92326 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225658714708004, 39.942750663209097 ] } }, +{ "type": "Feature", "properties": { "location": "1200 FANSHAWE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078871312657299, 40.045031452948997 ] } }, +{ "type": "Feature", "properties": { "location": "2722 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158796085709895, 39.914496545690298 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176773335667306, 39.922087351171101 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176758235139502, 39.937035952880201 ] } }, +{ "type": "Feature", "properties": { "location": "3300 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111371859365207, 39.998630400763197 ] } }, +{ "type": "Feature", "properties": { "location": "6215 MERSHON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065584229748794, 40.0300327527519 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104917, 39.996888 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104492, 39.996605 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.10498, 39.997013 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175352, 39.943527 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191777, 39.957395 ] } }, +{ "type": "Feature", "properties": { "location": "6200 HOMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175480016508899, 40.047288808165803 ] } }, +{ "type": "Feature", "properties": { "location": "1 N DEWEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243192297524203, 39.963073641085103 ] } }, +{ "type": "Feature", "properties": { "location": "3366 FREDERICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19379, 40.01003 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175335, 39.94345 ] } }, +{ "type": "Feature", "properties": { "location": "4107 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204587, 39.956713 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156803, 39.952805 ] } }, +{ "type": "Feature", "properties": { "location": "3965 BALTIMORE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202523212277399, 39.949951546984501 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.92342 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155262, 39.984522 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157008, 39.92071 ] } }, +{ "type": "Feature", "properties": { "location": "400 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154662, 39.92369 ] } }, +{ "type": "Feature", "properties": { "location": "8000 OGONTZ AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15835, 40.073633 ] } }, +{ "type": "Feature", "properties": { "location": "1504 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159402, 39.976465 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156228, 39.961177 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160863376627304, 39.9821762449087 ] } }, +{ "type": "Feature", "properties": { "location": "400 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152522, 39.93301 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157432, 39.926573 ] } }, +{ "type": "Feature", "properties": { "location": "5800 FILBERT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237286384511606, 39.962366380513302 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174962, 39.947103 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174883, 39.947353 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174892, 39.947158 ] } }, +{ "type": "Feature", "properties": { "location": "2600 HOLBROOK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235869889657195, 39.915071672111203 ] } }, +{ "type": "Feature", "properties": { "location": "2000 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169913209017906, 39.9714893539565 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 39TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.199492, 39.962113 ] } }, +{ "type": "Feature", "properties": { "location": "7400 WOOLSTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1613988079731, 40.064964335295301 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173435, 39.948563 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173377, 39.948452 ] } }, +{ "type": "Feature", "properties": { "location": "753 CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170203, 39.94182 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164912, 39.96805 ] } }, +{ "type": "Feature", "properties": { "location": "814 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160283787752306, 39.921892706210997 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15118, 40.00309 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NAPFLE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.060455, 40.056662 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132865, 39.96883 ] } }, +{ "type": "Feature", "properties": { "location": "800 S CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14224, 39.936627 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FITZWATER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159072, 39.941003 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WYOMING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.116955, 40.020703 ] } }, +{ "type": "Feature", "properties": { "location": "5300 SAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080018, 40.025587 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214088, 40.023495 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214328751125194, 40.023652320031097 ] } }, +{ "type": "Feature", "properties": { "location": "3810 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199232, 39.95363 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DRURY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16229, 39.950267 ] } }, +{ "type": "Feature", "properties": { "location": "77 E GARFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163158160783397, 40.030493346771401 ] } }, +{ "type": "Feature", "properties": { "location": "1200 BUTTONWOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15934, 39.961088 ] } }, +{ "type": "Feature", "properties": { "location": "230 S 45TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211798109472994, 39.954669285421097 ] } }, +{ "type": "Feature", "properties": { "location": "500 W ELEANOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133553881958207, 40.025068254067101 ] } }, +{ "type": "Feature", "properties": { "location": "800 TASKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159105, 39.929313 ] } }, +{ "type": "Feature", "properties": { "location": "800 TASKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159142, 39.92932 ] } }, +{ "type": "Feature", "properties": { "location": "800 TASKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159092, 39.929223 ] } }, +{ "type": "Feature", "properties": { "location": "800 TASKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159138, 39.929237 ] } }, +{ "type": "Feature", "properties": { "location": "800 TASKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159067, 39.929368 ] } }, +{ "type": "Feature", "properties": { "location": "800 TASKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15908, 39.929312 ] } }, +{ "type": "Feature", "properties": { "location": "800 TASKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15913, 39.929203 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17443, 39.945458 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153783, 39.92903 ] } }, +{ "type": "Feature", "properties": { "location": "1216 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162307, 39.943853 ] } }, +{ "type": "Feature", "properties": { "location": "200 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142472, 39.965007 ] } }, +{ "type": "Feature", "properties": { "location": "5134 SPRUCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225015604926796, 39.954468422602098 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155892, 39.959668 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188605, 39.942818 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187698, 39.942697 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187362, 39.942728 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.07343, 40.043703 ] } }, +{ "type": "Feature", "properties": { "location": "1100 MCCALLUM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163812, 39.926932 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E ESTAUGH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.109727, 39.999982 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08979, 40.011597 ] } }, +{ "type": "Feature", "properties": { "location": "700 S BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165775, 39.94229 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155433, 39.98448 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180864860096406, 39.942508322481601 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105995, 39.99622 ] } }, +{ "type": "Feature", "properties": { "location": "300 N HOBART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237320189141499, 39.965490709786202 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161062, 39.968223 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168123, 39.939713 ] } }, +{ "type": "Feature", "properties": { "location": "3800 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197512, 39.960657 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155062, 39.949107 ] } }, +{ "type": "Feature", "properties": { "location": "5900 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232811858843803, 39.9359672527439 ] } }, +{ "type": "Feature", "properties": { "location": "350 N 42ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20645, 39.960093 ] } }, +{ "type": "Feature", "properties": { "location": "1422 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "6048 N 3RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126026600133002, 40.0434677580947 ] } }, +{ "type": "Feature", "properties": { "location": "750 SELMER RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.027879374600005, 40.109554426194997 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155337, 39.928753 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153253, 39.93427 ] } }, +{ "type": "Feature", "properties": { "location": "2600 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180047637394296, 39.970357367837799 ] } }, +{ "type": "Feature", "properties": { "location": "1300 LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14376, 39.972202 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 24TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180245, 39.948243 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169762, 39.939495 ] } }, +{ "type": "Feature", "properties": { "location": "199 GRAPE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22284, 40.026113 ] } }, +{ "type": "Feature", "properties": { "location": "2900 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184450692831007, 39.972662953187601 ] } }, +{ "type": "Feature", "properties": { "location": "4400 HURLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117401166566296, 40.016615044793198 ] } }, +{ "type": "Feature", "properties": { "location": "5629 WINDSOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228507048455796, 39.939002284704699 ] } }, +{ "type": "Feature", "properties": { "location": "6500 CASTOR AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.075837, 40.041252 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150761423599505, 39.921304865152301 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187658, 39.958825 ] } }, +{ "type": "Feature", "properties": { "location": "100 E HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175741579359794, 40.039513621584902 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153173, 39.951697 ] } }, +{ "type": "Feature", "properties": { "location": "600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157283, 39.920177 ] } }, +{ "type": "Feature", "properties": { "location": "2500 CRANSTON RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209859844712994, 39.999315246282698 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14234, 39.970013 ] } }, +{ "type": "Feature", "properties": { "location": "601 PIERCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156512714226906, 39.926852111975499 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164499561083502, 39.917301170713998 ] } }, +{ "type": "Feature", "properties": { "location": "1041 RIDGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156068023917996, 39.959979283882902 ] } }, +{ "type": "Feature", "properties": { "location": "2014 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180101008471098, 39.926165919914098 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 40TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155558, 39.929518 ] } }, +{ "type": "Feature", "properties": { "location": "600 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156138059500293, 39.929722298083398 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155725, 39.959692 ] } }, +{ "type": "Feature", "properties": { "location": "1600 UNITY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087537, 40.012372 ] } }, +{ "type": "Feature", "properties": { "location": "5900 DELANCEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240995970706706, 39.955998133149201 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FONTAIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170906427962706, 39.986026053427899 ] } }, +{ "type": "Feature", "properties": { "location": "4000 MARKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099294947135903, 40.008023178686798 ] } }, +{ "type": "Feature", "properties": { "location": "4400 HURLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117401166566296, 40.016615044793198 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 54TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225265529229404, 39.9416665938341 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091067, 40.007082 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.09099, 40.007428 ] } }, +{ "type": "Feature", "properties": { "location": "722 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178881583194496, 39.943830331335299 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180465582634895, 39.944364033357999 ] } }, +{ "type": "Feature", "properties": { "location": "300 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148102, 39.944382 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155755, 39.933875 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139357, 39.959088 ] } }, +{ "type": "Feature", "properties": { "location": "900 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149690177731998, 39.979202424909502 ] } }, +{ "type": "Feature", "properties": { "location": "4600 MITCHELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.220120178091804, 40.035612899103398 ] } }, +{ "type": "Feature", "properties": { "location": "6400 UPLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235097740389406, 39.927844397926002 ] } }, +{ "type": "Feature", "properties": { "location": "6639 LEEDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.252923928820707, 39.9752150457075 ] } }, +{ "type": "Feature", "properties": { "location": "1199 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163563, 39.935077 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158979083660498, 39.9634602048801 ] } }, +{ "type": "Feature", "properties": { "location": "5100 GRISCOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.080235, 40.021903 ] } }, +{ "type": "Feature", "properties": { "location": "300 W DUVAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187271683136004, 40.039269170013199 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19693, 39.960747 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234038, 39.926283 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234082, 39.926243 ] } }, +{ "type": "Feature", "properties": { "location": "500 W CHELTEN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182718, 40.027808 ] } }, +{ "type": "Feature", "properties": { "location": "115 E ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127667915514294, 40.0015036084706 ] } }, +{ "type": "Feature", "properties": { "location": "401 N 59TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237383300924506, 39.9684194808763 ] } }, +{ "type": "Feature", "properties": { "location": "3433 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.192065679650696, 39.9577459670815 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SANGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081556458095605, 40.028352956663497 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148177, 40.040537 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15112, 39.921947 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151167, 39.9219 ] } }, +{ "type": "Feature", "properties": { "location": "1528 S FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146813, 39.9282 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162012906474303, 39.9421317483257 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168403, 39.937937 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15344, 39.929067 ] } }, +{ "type": "Feature", "properties": { "location": "4373 PECHIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2172967909504, 40.030459253182698 ] } }, +{ "type": "Feature", "properties": { "location": "400 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151958, 39.932893 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22627, 40.027597 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226423, 40.027738 ] } }, +{ "type": "Feature", "properties": { "location": "1231 S 22ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180367, 39.936907 ] } }, +{ "type": "Feature", "properties": { "location": "5900 HAVERFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.237575743403596, 39.969129220956802 ] } }, +{ "type": "Feature", "properties": { "location": "226 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160688, 39.921275 ] } }, +{ "type": "Feature", "properties": { "location": "200 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142855, 39.963355 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170273, 39.93731 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160613, 39.958792 ] } }, +{ "type": "Feature", "properties": { "location": "600 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152664151597506, 39.941611384210702 ] } }, +{ "type": "Feature", "properties": { "location": "600 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156138059500293, 39.929722298083398 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159518, 39.924772 ] } }, +{ "type": "Feature", "properties": { "location": "700 W SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141890842925804, 40.004463299879397 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N REESE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140028400849403, 39.995998404724403 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156567, 39.958902 ] } }, +{ "type": "Feature", "properties": { "location": "1 S SALFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240104364568197, 39.961484603452199 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175757, 39.947257 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151457, 40.001447 ] } }, +{ "type": "Feature", "properties": { "location": "3900 HOWLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103703751231507, 40.007054597392496 ] } }, +{ "type": "Feature", "properties": { "location": "936 ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143088, 39.966287 ] } }, +{ "type": "Feature", "properties": { "location": "300 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222436389011804, 40.032189448434401 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157945, 39.924933 ] } }, +{ "type": "Feature", "properties": { "location": "800 MARCELLA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.093053068065998, 40.0315505431292 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ELLSWORTH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170155, 39.9373 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226465, 40.02778 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.069926599667994, 40.0466266245245 ] } }, +{ "type": "Feature", "properties": { "location": "700 N PRESTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203847754434307, 39.965605326647697 ] } }, +{ "type": "Feature", "properties": { "location": "769 N PRESTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203847754434307, 39.965605326647697 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 68TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.255261577518397, 39.974604471248703 ] } }, +{ "type": "Feature", "properties": { "location": "800 WOLF ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16096, 39.920703 ] } }, +{ "type": "Feature", "properties": { "location": "800 WOLF ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161027, 39.920757 ] } }, +{ "type": "Feature", "properties": { "location": "700 W BRISTOL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138788746912098, 40.017145083627 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169716845944507, 40.000835797942202 ] } }, +{ "type": "Feature", "properties": { "location": "500 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155287, 39.928758 ] } }, +{ "type": "Feature", "properties": { "location": "2403 NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127272, 39.97665 ] } }, +{ "type": "Feature", "properties": { "location": "2200 TAGGERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125568, 39.976837 ] } }, +{ "type": "Feature", "properties": { "location": "2200 TAGGERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12563, 39.976852 ] } }, +{ "type": "Feature", "properties": { "location": "3900 HOWLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103703751231507, 40.007054597392496 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073517, 40.043715 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17049, 39.943283 ] } }, +{ "type": "Feature", "properties": { "location": "745 N 39TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.200324934475404, 39.966846799834798 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172148, 39.928448 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17219, 39.928447 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172202, 39.928442 ] } }, +{ "type": "Feature", "properties": { "location": "2231 S DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1611554005421, 39.921367054069499 ] } }, +{ "type": "Feature", "properties": { "location": "2233 S DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1611554005421, 39.921367054069499 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.23511, 39.925155 ] } }, +{ "type": "Feature", "properties": { "location": "5200 LOCUST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225872, 39.955917 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224359906032106, 39.933562788377799 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189578, 39.954707 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164974592782798, 39.928527716995902 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S CAMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16597, 39.927108 ] } }, +{ "type": "Feature", "properties": { "location": "5600 MONTROSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236590299655703, 39.9480288288485 ] } }, +{ "type": "Feature", "properties": { "location": "7300 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241543650148898, 39.912637767486501 ] } }, +{ "type": "Feature", "properties": { "location": "6600 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.074458, 40.042525 ] } }, +{ "type": "Feature", "properties": { "location": "3200 ARGYLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111819206454001, 39.998691024209499 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "6000 WEBSTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244213103765503, 39.950294899111299 ] } }, +{ "type": "Feature", "properties": { "location": "6098 WEBSTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.244213103765503, 39.950294899111299 ] } }, +{ "type": "Feature", "properties": { "location": "6098 WEBSTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244213103765503, 39.950294899111299 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228137, 40.028343 ] } }, +{ "type": "Feature", "properties": { "location": "600 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156148, 39.925207 ] } }, +{ "type": "Feature", "properties": { "location": "26 CHURCH LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171003627298603, 40.034921817857303 ] } }, +{ "type": "Feature", "properties": { "location": "28 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164298523013301, 40.030578741590404 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 40TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202039999004697, 39.959792429479897 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 53RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228622, 39.952223 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156515, 39.960375 ] } }, +{ "type": "Feature", "properties": { "location": "200 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147283, 39.938127 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134363, 39.972495 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 62ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228968023185303, 39.926819519431099 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 62ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228968023185303, 39.926819519431099 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 62ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228968023185303, 39.926819519431099 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152447, 39.927135 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157297, 39.954598 ] } }, +{ "type": "Feature", "properties": { "location": "1626 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169973, 39.94336 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ARGYLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111819206454001, 39.998691024209499 ] } }, +{ "type": "Feature", "properties": { "location": "700 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150459593357496, 39.962375121383801 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162328, 39.948442 ] } }, +{ "type": "Feature", "properties": { "location": "645 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117186132536304, 40.001720989813499 ] } }, +{ "type": "Feature", "properties": { "location": "200 COTTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21802, 40.027682 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156382, 39.953238 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONROE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147997, 39.939592 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188852, 39.965787 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161003, 39.920763 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W LOUDON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14656, 40.026068 ] } }, +{ "type": "Feature", "properties": { "location": "2900 OGDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184450692831007, 39.972662953187601 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157855, 39.958412 ] } }, +{ "type": "Feature", "properties": { "location": "2800 WILMOT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071510398987002, 39.997830376646696 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171167, 39.920777 ] } }, +{ "type": "Feature", "properties": { "location": "123 S 46TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213587, 39.956202 ] } }, +{ "type": "Feature", "properties": { "location": "2137 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1536495644703, 39.9212630066638 ] } }, +{ "type": "Feature", "properties": { "location": "300 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15362, 39.921073 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N 19TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160337965541203, 40.004955041521796 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N 19TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160337965541203, 40.004955041521796 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 42ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207102423557203, 39.949128475309998 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 42ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207107, 39.949345 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 42ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207175, 39.949743 ] } }, +{ "type": "Feature", "properties": { "location": "3500 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194073, 39.95389 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "3500 G ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114418369115398, 40.0015963270829 ] } }, +{ "type": "Feature", "properties": { "location": "100 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141737, 39.952938 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143992, 39.955335 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17344, 39.952578 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141095, 39.966292 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153615, 39.929005 ] } }, +{ "type": "Feature", "properties": { "location": "4200 N MARSHALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137814967470305, 40.016203047787599 ] } }, +{ "type": "Feature", "properties": { "location": "4100 APPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217328, 40.02321 ] } }, +{ "type": "Feature", "properties": { "location": "4701 PINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217349418701701, 39.952428953564699 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N RANDOLPH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145703, 39.971547 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141262, 39.968722 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14115, 39.968713 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14122, 39.968618 ] } }, +{ "type": "Feature", "properties": { "location": "500 RANDOLPH CT", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15156, 39.942145 ] } }, +{ "type": "Feature", "properties": { "location": "199 VAN PELT ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176478, 39.9516 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 52ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224993, 39.959 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W CHAMPLOST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138115, 40.043838 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S DAGGETT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234833, 39.925368 ] } }, +{ "type": "Feature", "properties": { "location": "4699 SANSOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214583, 39.95639 ] } }, +{ "type": "Feature", "properties": { "location": "3846 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.198895, 39.96137 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SAINT JAMES ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162183, 39.948233 ] } }, +{ "type": "Feature", "properties": { "location": "1719 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173592, 39.929512 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161227, 39.953527 ] } }, +{ "type": "Feature", "properties": { "location": "11870 BASILE RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.982408969866199, 40.0936256640314 ] } }, +{ "type": "Feature", "properties": { "location": "3451 N 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145050952999696, 40.005028997894001 ] } }, +{ "type": "Feature", "properties": { "location": "1312 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16377, 39.943893 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "3100 W DAKOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183828984635795, 39.9918203688446 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160772, 39.918067 ] } }, +{ "type": "Feature", "properties": { "location": "3300 MARKET ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190225, 39.955815 ] } }, +{ "type": "Feature", "properties": { "location": "1311 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168603, 39.933782 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155992, 39.954455 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224518, 40.026742 ] } }, +{ "type": "Feature", "properties": { "location": "3100 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188668, 39.965665 ] } }, +{ "type": "Feature", "properties": { "location": "1102 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141818458871896, 39.968366704767298 ] } }, +{ "type": "Feature", "properties": { "location": "200 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224495, 40.03029 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226073102746895, 39.934412452547697 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152035, 39.950073 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105417, 39.983512 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.105477, 39.983482 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128077, 39.967278 ] } }, +{ "type": "Feature", "properties": { "location": "500 GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14583, 39.970353 ] } }, +{ "type": "Feature", "properties": { "location": "1400 E BRISTOL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.097843, 40.01182 ] } }, +{ "type": "Feature", "properties": { "location": "4000 WALLACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202700462956599, 39.964023522980497 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153693, 39.959883 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.10555, 39.98351 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.108307, 39.986965 ] } }, +{ "type": "Feature", "properties": { "location": "2300 CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.108488, 39.986813 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W LOUDON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147453, 40.025695 ] } }, +{ "type": "Feature", "properties": { "location": "8 W DUVAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182620480027694, 40.0439308830885 ] } }, +{ "type": "Feature", "properties": { "location": "426 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122173, 39.997532 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "3813 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197715, 39.96002 ] } }, +{ "type": "Feature", "properties": { "location": "13 S 43RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.20832, 39.957153 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154203, 40.003408 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077708, 40.021903 ] } }, +{ "type": "Feature", "properties": { "location": "3233 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133066926182394, 39.999851607906699 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "12813 CABELL RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.967787122022997, 40.098126153727399 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168467, 39.943705 ] } }, +{ "type": "Feature", "properties": { "location": "2600 SHIELDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230129822325495, 39.919097764043002 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151123, 40.003295 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1704, 39.949645 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14234, 39.961205 ] } }, +{ "type": "Feature", "properties": { "location": "299 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14232, 39.961092 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19697, 39.957365 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159748, 39.974638 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070487, 40.046478 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "4300 STATION ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222087, 40.025185 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155866964385496, 39.926108690002401 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1826912513027, 39.9418637544034 ] } }, +{ "type": "Feature", "properties": { "location": "181 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225090148463295, 40.028901944853203 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15012, 40.003693 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2382199431093, 39.954746095388501 ] } }, +{ "type": "Feature", "properties": { "location": "699 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158978, 39.965935 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08625, 40.013782 ] } }, +{ "type": "Feature", "properties": { "location": "3512 COTTMAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.042183, 40.037513 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13953, 39.956937 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 38TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197753, 39.957372 ] } }, +{ "type": "Feature", "properties": { "location": "8901 CONVENT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.019108235235706, 40.056960907866603 ] } }, +{ "type": "Feature", "properties": { "location": "6900 GARMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234621504187004, 39.916263850833097 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 43RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209416286563695, 39.965185293243302 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S BROAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168708, 39.92938 ] } }, +{ "type": "Feature", "properties": { "location": "6715 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073393, 40.043697 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151442416850401, 39.990587794657699 ] } }, +{ "type": "Feature", "properties": { "location": "4600 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.210305, 39.943898 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131143, 39.973437 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167827, 39.940968 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151305, 40.003103 ] } }, +{ "type": "Feature", "properties": { "location": "1000 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138145, 39.965747 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159517, 39.924837 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "223 S 52ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2236, 39.956048 ] } }, +{ "type": "Feature", "properties": { "location": "100 LEVERING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22182, 40.027373 ] } }, +{ "type": "Feature", "properties": { "location": "2700 E INDIANA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1069031887628, 39.9816410558835 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 4TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154715, 39.916677 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W SILVER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154288, 39.99495 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W CLARKSON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14079, 40.03622 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137745998309001, 40.020353294405503 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214873, 40.021983 ] } }, +{ "type": "Feature", "properties": { "location": "100 DAWSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21247, 40.019033 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196902, 39.960323 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196915, 39.960378 ] } }, +{ "type": "Feature", "properties": { "location": "6000 BAYNTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176053103603195, 40.041528223058499 ] } }, +{ "type": "Feature", "properties": { "location": "2116 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172557, 39.971972 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170527, 39.952318 ] } }, +{ "type": "Feature", "properties": { "location": "600 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152205, 39.943555 ] } }, +{ "type": "Feature", "properties": { "location": "199 JAMESTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21857, 40.023588 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168232, 39.935272 ] } }, +{ "type": "Feature", "properties": { "location": "3700 MIDVALE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193598, 40.009282 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15586, 39.954547 ] } }, +{ "type": "Feature", "properties": { "location": "1900 FITZWATER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17532, 39.94305 ] } }, +{ "type": "Feature", "properties": { "location": "199 FARRAGUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21445, 39.956285 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232248012542499, 39.936745311179003 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164372, 39.982682 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224358, 40.026685 ] } }, +{ "type": "Feature", "properties": { "location": "4400 SAINT DAVIDS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225608, 40.02805 ] } }, +{ "type": "Feature", "properties": { "location": "100 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128417422767001, 39.997894559251897 ] } }, +{ "type": "Feature", "properties": { "location": "4619 OAKMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.030647370995496, 40.033035126307901 ] } }, +{ "type": "Feature", "properties": { "location": "5708 N MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132799543974897, 40.039119032726703 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S SIMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235443002556707, 39.927225521422599 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230698, 39.918517 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138785, 39.964465 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138394646780995, 39.964179057289002 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15814, 39.937555 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155305, 39.928782 ] } }, +{ "type": "Feature", "properties": { "location": "820 S 11TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160877341565694, 39.9395546976085 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226073102746895, 39.934412452547697 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130523, 39.972418 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104552, 39.996618 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205423, 39.95268 ] } }, +{ "type": "Feature", "properties": { "location": "700 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156885, 39.928995 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "500 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156412119212405, 39.917548830445 ] } }, +{ "type": "Feature", "properties": { "location": "200 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148313, 39.92911 ] } }, +{ "type": "Feature", "properties": { "location": "5900 BELDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.084905771329602, 40.035050261132 ] } }, +{ "type": "Feature", "properties": { "location": "1600 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171236199231203, 39.936360191092099 ] } }, +{ "type": "Feature", "properties": { "location": "701 S 61ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245115470179996, 39.950799713715803 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179249308647201, 39.9670232703834 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 33RD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189125, 39.957705 ] } }, +{ "type": "Feature", "properties": { "location": "900 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154387, 39.96019 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "1 CHRISTIAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144292, 39.935178 ] } }, +{ "type": "Feature", "properties": { "location": "2000 BRILL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070045477760502, 40.015885824168699 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17278, 39.92098 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233186011450002, 39.919113482363798 ] } }, +{ "type": "Feature", "properties": { "location": "5220 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226862903027097, 39.955339304556396 ] } }, +{ "type": "Feature", "properties": { "location": "200 GRAPE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219927137791004, 40.027418020654501 ] } }, +{ "type": "Feature", "properties": { "location": "400 W COULTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177575364096697, 40.026324203286997 ] } }, +{ "type": "Feature", "properties": { "location": "1900 HAWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073852762369995, 40.015945107758903 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174132, 39.924457 ] } }, +{ "type": "Feature", "properties": { "location": "4600 BALTIMORE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215533947308003, 39.9487905752963 ] } }, +{ "type": "Feature", "properties": { "location": "4000 MARKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099294947135903, 40.008023178686798 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174916350542503, 39.970854053890299 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150289806053493, 39.982351574786897 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "6000 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228784180985599, 39.930629750573097 ] } }, +{ "type": "Feature", "properties": { "location": "200 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145817, 39.9422 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134347, 39.97234 ] } }, +{ "type": "Feature", "properties": { "location": "1400 E CREASE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134093, 39.972537 ] } }, +{ "type": "Feature", "properties": { "location": "299 S WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164193, 39.9475 ] } }, +{ "type": "Feature", "properties": { "location": "299 S WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164093, 39.947128 ] } }, +{ "type": "Feature", "properties": { "location": "200 S WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164118, 39.947568 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175248, 39.94704 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205082, 39.955157 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086452, 40.013882 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156782, 39.96092 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "196 LINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123184484618207, 40.041258973832797 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129425307660995, 39.976155466005501 ] } }, +{ "type": "Feature", "properties": { "location": "5500 WISSAHICKON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1817, 40.025747 ] } }, +{ "type": "Feature", "properties": { "location": "6000 ELMWOOD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222893484875001, 39.9274250888094 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158275, 39.923725 ] } }, +{ "type": "Feature", "properties": { "location": "900 GRANITE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091344380469593, 40.031211659254197 ] } }, +{ "type": "Feature", "properties": { "location": "941 GRANITE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091344380469593, 40.031211659254197 ] } }, +{ "type": "Feature", "properties": { "location": "900 ANCHOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089113493495404, 40.033841531766797 ] } }, +{ "type": "Feature", "properties": { "location": "3380 AGATE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103456148532004, 39.991191101201601 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149567, 40.005272 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141195, 39.968795 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141328, 39.96873 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162602, 39.963973 ] } }, +{ "type": "Feature", "properties": { "location": "191 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "191 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "2700 S ISEMINGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168638, 39.916355 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180101008471098, 39.926165919914098 ] } }, +{ "type": "Feature", "properties": { "location": "5800 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121478040567496, 40.039243066232899 ] } }, +{ "type": "Feature", "properties": { "location": "100 WIDENER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121441781882893, 40.040545052844003 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177533, 39.953777 ] } }, +{ "type": "Feature", "properties": { "location": "200 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142502, 39.96496 ] } }, +{ "type": "Feature", "properties": { "location": "187 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122676584184106, 40.043817504728999 ] } }, +{ "type": "Feature", "properties": { "location": "54 W HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177732189789296, 40.037701511604503 ] } }, +{ "type": "Feature", "properties": { "location": "500 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153585523062205, 39.932724344496599 ] } }, +{ "type": "Feature", "properties": { "location": "5000 AKRON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.084208, 40.022448 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "200 E HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174246300807695, 40.040948821864497 ] } }, +{ "type": "Feature", "properties": { "location": "228 E HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173498509546704, 40.041670009076 ] } }, +{ "type": "Feature", "properties": { "location": "2121 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234334356912299, 39.926551786869403 ] } }, +{ "type": "Feature", "properties": { "location": "2400 HARLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175734369659594, 39.977027211452899 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W ALBERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177944663218597, 39.9961246504839 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158637, 39.920717 ] } }, +{ "type": "Feature", "properties": { "location": "639 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157958704215503, 39.921142821777998 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191915, 39.956757 ] } }, +{ "type": "Feature", "properties": { "location": "600 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157828, 39.923597 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164499561083502, 39.917301170713998 ] } }, +{ "type": "Feature", "properties": { "location": "7300 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241543650148898, 39.912637767486501 ] } }, +{ "type": "Feature", "properties": { "location": "2300 SEYBERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174373270661704, 39.975706450400999 ] } }, +{ "type": "Feature", "properties": { "location": "704 E PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15135, 39.940087 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ARAMINGO AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108833, 39.987193 ] } }, +{ "type": "Feature", "properties": { "location": "3300 FREDERICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194507, 40.010142 ] } }, +{ "type": "Feature", "properties": { "location": "4901 D ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115886705149606, 40.0243248124224 ] } }, +{ "type": "Feature", "properties": { "location": "5552 CHESTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225425403726405, 39.937926826137101 ] } }, +{ "type": "Feature", "properties": { "location": "1522 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159167, 39.976887 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142726719759494, 40.0036569132361 ] } }, +{ "type": "Feature", "properties": { "location": "2800 WATERLOO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131923344691202, 39.993414172869102 ] } }, +{ "type": "Feature", "properties": { "location": "3468 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1175767096166, 40.000987289979797 ] } }, +{ "type": "Feature", "properties": { "location": "624 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117630598176405, 40.001784135123501 ] } }, +{ "type": "Feature", "properties": { "location": "600 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118095923580299, 40.001848406580002 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141818458871896, 39.968366704767298 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151582, 40.001393 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166572, 39.942522 ] } }, +{ "type": "Feature", "properties": { "location": "3200 ALMOND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.103663, 39.985618 ] } }, +{ "type": "Feature", "properties": { "location": "1199 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16352, 39.935035 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MONTAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.058785366106605, 40.024669426043502 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N CROSKEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171540542561104, 39.981243216702303 ] } }, +{ "type": "Feature", "properties": { "location": "6027 N PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124704836469206, 40.042769380143397 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161945, 39.94277 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 61ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242571103928796, 39.962992189915497 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 37TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195805, 39.962485 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N SYDENHAM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154782, 40.005067 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167853, 39.940615 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16725, 39.92657 ] } }, +{ "type": "Feature", "properties": { "location": "3300 F ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117011306597504, 39.998810500751901 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154857, 39.929555 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S WATTS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169797, 39.920402 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S WATTS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169815, 39.920357 ] } }, +{ "type": "Feature", "properties": { "location": "900 S WATER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144255, 39.935187 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14633, 40.04078 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155887, 39.95982 ] } }, +{ "type": "Feature", "properties": { "location": "500 E CABOT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128997, 39.97199 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176411477823805, 39.923746315775702 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176607, 39.922625 ] } }, +{ "type": "Feature", "properties": { "location": "1136 S RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225658714708004, 39.942750663209097 ] } }, +{ "type": "Feature", "properties": { "location": "2500 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234266811906295, 39.918353779573501 ] } }, +{ "type": "Feature", "properties": { "location": "433 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128758, 39.969478 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128772, 39.969398 ] } }, +{ "type": "Feature", "properties": { "location": "61 HERMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178359990049003, 40.041762684466001 ] } }, +{ "type": "Feature", "properties": { "location": "1002 KNORR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.080741357274803, 40.048905920141301 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196957, 39.960788 ] } }, +{ "type": "Feature", "properties": { "location": "200 HOWELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106416551154197, 40.047784474725802 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148888, 39.935755 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORKNEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143988, 39.970727 ] } }, +{ "type": "Feature", "properties": { "location": "299 W GEORGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140838, 39.967597 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141308, 39.965455 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15912, 39.9206 ] } }, +{ "type": "Feature", "properties": { "location": "3400 POWELTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192482, 39.960133 ] } }, +{ "type": "Feature", "properties": { "location": "904 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158345, 39.938418 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15838, 39.938412 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158358, 39.938402 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15835, 39.938422 ] } }, +{ "type": "Feature", "properties": { "location": "908 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158586236202098, 39.9384364580173 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158358, 39.93845 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E EYRE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1289636395461, 39.973316444922702 ] } }, +{ "type": "Feature", "properties": { "location": "300 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150422815913799, 39.932331430137999 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16645, 39.921787 ] } }, +{ "type": "Feature", "properties": { "location": "800 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "800 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101715, 40.008628 ] } }, +{ "type": "Feature", "properties": { "location": "4000 L ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101713, 40.008627 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101703, 40.008728 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153388, 39.92972 ] } }, +{ "type": "Feature", "properties": { "location": "700 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158334695615395, 39.925834606298999 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "4700 CHESTNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216318155894896, 39.9573754343076 ] } }, +{ "type": "Feature", "properties": { "location": "3010 N CROSKEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167051274877807, 40.000645817793099 ] } }, +{ "type": "Feature", "properties": { "location": "5600 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228507048455796, 39.939002284704699 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MASCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135518, 39.978853 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204457, 39.956697 ] } }, +{ "type": "Feature", "properties": { "location": "4107 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20455, 39.956682 ] } }, +{ "type": "Feature", "properties": { "location": "5634 HAZEL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2356442116875, 39.952591630431002 ] } }, +{ "type": "Feature", "properties": { "location": "6000 ALMA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.082366888957907, 40.035534917913203 ] } }, +{ "type": "Feature", "properties": { "location": "4200 STATION ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219818, 40.02399 ] } }, +{ "type": "Feature", "properties": { "location": "500 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156457, 39.916338 ] } }, +{ "type": "Feature", "properties": { "location": "1000 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089406024067102, 40.0359479395254 ] } }, +{ "type": "Feature", "properties": { "location": "1000 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089406024067102, 40.0359479395254 ] } }, +{ "type": "Feature", "properties": { "location": "1000 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089406024067102, 40.0359479395254 ] } }, +{ "type": "Feature", "properties": { "location": "1000 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089406024067102, 40.0359479395254 ] } }, +{ "type": "Feature", "properties": { "location": "1000 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089406024067102, 40.0359479395254 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16038, 39.942092 ] } }, +{ "type": "Feature", "properties": { "location": "6635 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073054678703699, 40.041780568123997 ] } }, +{ "type": "Feature", "properties": { "location": "1600 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1603648318994, 39.986322712978101 ] } }, +{ "type": "Feature", "properties": { "location": "4900 BALTIMORE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221940304807603, 39.948078183860098 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169378, 39.917982 ] } }, +{ "type": "Feature", "properties": { "location": "452 TOMLINSON RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.026331638649495, 40.114897294271998 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157147, 39.954583 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196867, 39.960907 ] } }, +{ "type": "Feature", "properties": { "location": "2416 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159672571765, 39.918604543700397 ] } }, +{ "type": "Feature", "properties": { "location": "1700 GEORGES LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229086796413796, 39.983370433434601 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S ISEMINGER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165368, 39.931183 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WHARTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175635, 39.935212 ] } }, +{ "type": "Feature", "properties": { "location": "4446 N CLEVELAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155646152881104, 40.021623373936301 ] } }, +{ "type": "Feature", "properties": { "location": "4600 GRISCOM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.085577, 40.016198 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 29TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183702050635304, 39.973542504934699 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 37TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.195835, 39.96313 ] } }, +{ "type": "Feature", "properties": { "location": "200 W SPENCER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124151287526601, 40.043486914662999 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141222, 39.968978 ] } }, +{ "type": "Feature", "properties": { "location": "3400 GERMANTOWN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149282, 40.004597 ] } }, +{ "type": "Feature", "properties": { "location": "5729 DUNLAP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237382404049896, 39.978604753829401 ] } }, +{ "type": "Feature", "properties": { "location": "5735 DUNLAP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237382404049896, 39.978604753829401 ] } }, +{ "type": "Feature", "properties": { "location": "5900 ELSINORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099461666306198, 40.043151283959197 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18614, 39.941305 ] } }, +{ "type": "Feature", "properties": { "location": "5700 CEDAR AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237828848406906, 39.951820391922503 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168501695652594, 39.937839397149403 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168912, 39.936082 ] } }, +{ "type": "Feature", "properties": { "location": "525 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103038964594006, 40.042908121223199 ] } }, +{ "type": "Feature", "properties": { "location": "500 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103038964594006, 40.042908121223199 ] } }, +{ "type": "Feature", "properties": { "location": "565 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101418119329907, 40.042001085716201 ] } }, +{ "type": "Feature", "properties": { "location": "565 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101418119329907, 40.042001085716201 ] } }, +{ "type": "Feature", "properties": { "location": "399 N 33RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189532, 39.961013 ] } }, +{ "type": "Feature", "properties": { "location": "2026 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180101008471098, 39.926165919914098 ] } }, +{ "type": "Feature", "properties": { "location": "4500 D ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.116484747453001, 40.018130645946201 ] } }, +{ "type": "Feature", "properties": { "location": "2400 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183669226957093, 39.941642880392699 ] } }, +{ "type": "Feature", "properties": { "location": "4621 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148070681553605, 40.023757753170997 ] } }, +{ "type": "Feature", "properties": { "location": "2700 E SERGEANT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117778154384794, 39.9759587737571 ] } }, +{ "type": "Feature", "properties": { "location": "501 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "501 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "541 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "2027 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161538, 39.984727 ] } }, +{ "type": "Feature", "properties": { "location": "4800 C ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117884712822203, 40.022726951467 ] } }, +{ "type": "Feature", "properties": { "location": "1 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143255, 39.937037 ] } }, +{ "type": "Feature", "properties": { "location": "2040 S BUCKNELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185313465198902, 39.927018915684997 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125293, 39.973108 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N DELAWARE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128221496413502, 39.968225011916502 ] } }, +{ "type": "Feature", "properties": { "location": "4099 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204577, 39.960222 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232248012542499, 39.936745311179003 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143293, 40.039672 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141663, 40.039455 ] } }, +{ "type": "Feature", "properties": { "location": "99 FERN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120887658402097, 40.042541723495297 ] } }, +{ "type": "Feature", "properties": { "location": "99 FERN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120887658402097, 40.042541723495297 ] } }, +{ "type": "Feature", "properties": { "location": "500 PIERCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155695, 39.926713 ] } }, +{ "type": "Feature", "properties": { "location": "1713 S 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185015057300305, 39.931151998334897 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "634 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "6600 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146168386500307, 40.054993824016798 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226412, 40.027778 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226493, 40.027767 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BELMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225294978211593, 39.940625097825198 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153233, 39.938107 ] } }, +{ "type": "Feature", "properties": { "location": "2600 SWAIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1806, 39.96989 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N CARLISLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160287, 39.97248 ] } }, +{ "type": "Feature", "properties": { "location": "700 S BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165615, 39.94232 ] } }, +{ "type": "Feature", "properties": { "location": "6300 EVERETT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.074580462861704, 40.036959188093498 ] } }, +{ "type": "Feature", "properties": { "location": "5600 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173838418641196, 40.035104311291001 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191132, 39.9608 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219842298067505, 40.028135599795696 ] } }, +{ "type": "Feature", "properties": { "location": "900 W CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145049715518098, 39.998952272581697 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S WARNOCK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16486, 39.919457 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22566, 39.972327 ] } }, +{ "type": "Feature", "properties": { "location": "4700 VISTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.030852021310295, 40.0313241791889 ] } }, +{ "type": "Feature", "properties": { "location": "400 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151930129375302, 39.932893846230201 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 50TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221383, 39.95727 ] } }, +{ "type": "Feature", "properties": { "location": "1300 ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142143, 39.97176 ] } }, +{ "type": "Feature", "properties": { "location": "1200 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157878, 39.958212 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "900 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149690177731998, 39.979202424909502 ] } }, +{ "type": "Feature", "properties": { "location": "400 VOLLMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155474293425698, 39.916665681953397 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157978, 39.925005 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226438, 40.027808 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191897, 39.957563 ] } }, +{ "type": "Feature", "properties": { "location": "5400 GERMANTOWN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170645, 40.033218 ] } }, +{ "type": "Feature", "properties": { "location": "5200 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226862903027097, 39.955339304556396 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151385, 40.002802 ] } }, +{ "type": "Feature", "properties": { "location": "724 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169432, 39.942578 ] } }, +{ "type": "Feature", "properties": { "location": "5337 UPLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220052279135402, 39.9383314087926 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155832, 39.925985 ] } }, +{ "type": "Feature", "properties": { "location": "1217 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162283, 39.943847 ] } }, +{ "type": "Feature", "properties": { "location": "1900 LANSING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.060377, 40.05756 ] } }, +{ "type": "Feature", "properties": { "location": "100 ROCHELLE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207163176731896, 40.017114198655399 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140883, 40.039478 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S CLEVELAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188167134195, 39.9319880793742 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156703, 39.958118 ] } }, +{ "type": "Feature", "properties": { "location": "4411 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219440990865294, 40.030254614758199 ] } }, +{ "type": "Feature", "properties": { "location": "6800 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243161553093898, 39.925447691313501 ] } }, +{ "type": "Feature", "properties": { "location": "699 N PARK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159008, 39.96588 ] } }, +{ "type": "Feature", "properties": { "location": "249 HARVEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181664058564607, 40.035302267256903 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15635, 39.938563 ] } }, +{ "type": "Feature", "properties": { "location": "4800 FILLMORE TER", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.095287619799606, 40.027289552363598 ] } }, +{ "type": "Feature", "properties": { "location": "3112 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1700685563127, 40.002994439038702 ] } }, +{ "type": "Feature", "properties": { "location": "1900 JACKSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178209387132199, 39.924210532710603 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169725, 39.952002 ] } }, +{ "type": "Feature", "properties": { "location": "6900 SACKETT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.052249945565805, 40.035381138900398 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152562, 39.942403 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169578, 39.940907 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14042, 39.968608 ] } }, +{ "type": "Feature", "properties": { "location": "1900 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177566442877506, 39.929595480236003 ] } }, +{ "type": "Feature", "properties": { "location": "301 S 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226058460667005, 39.9543216177305 ] } }, +{ "type": "Feature", "properties": { "location": "1500 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168728, 39.940665 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16869, 39.940663 ] } }, +{ "type": "Feature", "properties": { "location": "830 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161295034266402, 39.9220272817794 ] } }, +{ "type": "Feature", "properties": { "location": "2300 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175828, 39.967813 ] } }, +{ "type": "Feature", "properties": { "location": "1900 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175663, 39.939432 ] } }, +{ "type": "Feature", "properties": { "location": "4234 ROMAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091384460604601, 40.009247004961601 ] } }, +{ "type": "Feature", "properties": { "location": "200 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151285206691995, 39.916878358819602 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170305, 39.929418 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163483, 39.949763 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234788011345998, 39.9179860542299 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170268, 39.929435 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156585, 39.960162 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155243, 39.9596 ] } }, +{ "type": "Feature", "properties": { "location": "6500 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178479254417397, 40.053861255510697 ] } }, +{ "type": "Feature", "properties": { "location": "199 N CROSKEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176947, 39.957242 ] } }, +{ "type": "Feature", "properties": { "location": "4900 UMBRIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235171449829394, 40.035181509578898 ] } }, +{ "type": "Feature", "properties": { "location": "7200 MARSDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.036389218332303, 40.030285109192 ] } }, +{ "type": "Feature", "properties": { "location": "1513 SPRUCE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167535, 39.946707 ] } }, +{ "type": "Feature", "properties": { "location": "300 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148272, 39.940598 ] } }, +{ "type": "Feature", "properties": { "location": "6700 DOREL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229944109033795, 39.916753760948701 ] } }, +{ "type": "Feature", "properties": { "location": "2115 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162768413538899, 39.986409828296402 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166711422483601, 39.933409005827599 ] } }, +{ "type": "Feature", "properties": { "location": "700 EDGEMORE RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.252680298983506, 39.974020174620001 ] } }, +{ "type": "Feature", "properties": { "location": "1802 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1735877051009, 39.940433629336503 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 44TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210612510894407, 39.962982286059201 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141441290575202, 40.003466357369703 ] } }, +{ "type": "Feature", "properties": { "location": "700 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159453, 39.924305 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157488, 39.985528 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1574, 39.985577 ] } }, +{ "type": "Feature", "properties": { "location": "800 BRILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091863896007297, 40.033435698277401 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158185, 39.923718 ] } }, +{ "type": "Feature", "properties": { "location": "409 N 63RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245316506211907, 39.969599348153103 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157055, 39.977223 ] } }, +{ "type": "Feature", "properties": { "location": "100 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16297, 39.947772 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N GRATZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164658498483007, 39.981444208252597 ] } }, +{ "type": "Feature", "properties": { "location": "6300 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.23317, 39.926503 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167001106131494, 39.974421380597001 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153693, 39.95972 ] } }, +{ "type": "Feature", "properties": { "location": "1921 MUTTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135804782218202, 39.979708404646203 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15635, 39.960403 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154958, 39.929547 ] } }, +{ "type": "Feature", "properties": { "location": "1100 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167007, 39.918952 ] } }, +{ "type": "Feature", "properties": { "location": "1732 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167053, 39.965237 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151348, 40.002993 ] } }, +{ "type": "Feature", "properties": { "location": "100 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128417422767001, 39.997894559251897 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128228, 39.967195 ] } }, +{ "type": "Feature", "properties": { "location": "1001 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156675, 39.937175 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167055, 39.942453 ] } }, +{ "type": "Feature", "properties": { "location": "1 QUEEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143258, 39.936355 ] } }, +{ "type": "Feature", "properties": { "location": "1 QUEEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143198, 39.936343 ] } }, +{ "type": "Feature", "properties": { "location": "1 QUEEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143248, 39.936327 ] } }, +{ "type": "Feature", "properties": { "location": "500 E LURAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115470254301997, 40.019830726054003 ] } }, +{ "type": "Feature", "properties": { "location": "5600 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173948, 40.035185 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167883, 39.936713 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182355, 39.943525 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182507815898106, 39.942707927609703 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E ESTAUGH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.109775, 40.000003 ] } }, +{ "type": "Feature", "properties": { "location": "4800 RISING SUN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12427, 40.023368 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152989635564197, 39.924471035427104 ] } }, +{ "type": "Feature", "properties": { "location": "6500 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.047876995918401, 40.021360554403003 ] } }, +{ "type": "Feature", "properties": { "location": "2500 EDGEMONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116795, 39.976733 ] } }, +{ "type": "Feature", "properties": { "location": "4400 OSAGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210937, 39.950917 ] } }, +{ "type": "Feature", "properties": { "location": "4400 OSAGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210987, 39.950863 ] } }, +{ "type": "Feature", "properties": { "location": "300 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222436389011804, 40.032189448434401 ] } }, +{ "type": "Feature", "properties": { "location": "6200 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158001628551304, 40.048396677659099 ] } }, +{ "type": "Feature", "properties": { "location": "1000 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162052, 39.930993 ] } }, +{ "type": "Feature", "properties": { "location": "1000 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161532, 39.929615 ] } }, +{ "type": "Feature", "properties": { "location": "5200 HOWLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.106571505795998, 40.031843073740298 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161677, 39.929223 ] } }, +{ "type": "Feature", "properties": { "location": "200 W ALBANUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128847189448294, 40.026279760722602 ] } }, +{ "type": "Feature", "properties": { "location": "3020 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145496958010696, 39.998244314620003 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176832, 39.921445 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170223, 39.937348 ] } }, +{ "type": "Feature", "properties": { "location": "500 W COULTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179315092126501, 40.024603013720998 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228080711070206, 39.925256005062799 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153738, 39.95998 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189501427014207, 39.9606704625037 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142787, 39.961275 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "4000 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20281, 39.956592 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155443, 39.984495 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159162, 39.962545 ] } }, +{ "type": "Feature", "properties": { "location": "1670 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.076555689475398, 40.021152943418201 ] } }, +{ "type": "Feature", "properties": { "location": "185 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143247, 40.039668 ] } }, +{ "type": "Feature", "properties": { "location": "300 QUINCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160498, 39.945273 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140085, 39.955383 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161727, 39.946205 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185290807265801, 39.991138447621204 ] } }, +{ "type": "Feature", "properties": { "location": "200 W CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134512070830596, 39.994518370186803 ] } }, +{ "type": "Feature", "properties": { "location": "4400 MITCHELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215066657491903, 40.030705583339 ] } }, +{ "type": "Feature", "properties": { "location": "4300 ROBBINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057135871924302, 40.024411899336997 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15838, 39.923765 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128313, 39.96721 ] } }, +{ "type": "Feature", "properties": { "location": "5406 HAWTHORNE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071345115801705, 40.022139196347901 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127208, 39.971545 ] } }, +{ "type": "Feature", "properties": { "location": "1500 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166552, 39.94809 ] } }, +{ "type": "Feature", "properties": { "location": "2000 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172187, 39.966808 ] } }, +{ "type": "Feature", "properties": { "location": "1716 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169628, 39.950817 ] } }, +{ "type": "Feature", "properties": { "location": "1716 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168337, 39.950102 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "325 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163927, 39.94583 ] } }, +{ "type": "Feature", "properties": { "location": "314 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188127, 39.961188 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157387334615294, 39.983277697168901 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17851, 39.938352 ] } }, +{ "type": "Feature", "properties": { "location": "401 S 40TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153658, 39.998725 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N BAILEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173657893828306, 40.0003389929796 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155148, 39.959655 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W LOUDON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147677, 40.0261 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13881, 39.964467 ] } }, +{ "type": "Feature", "properties": { "location": "100 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148899734855902, 39.920424418815401 ] } }, +{ "type": "Feature", "properties": { "location": "4620 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113555172427297, 40.019544266813902 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158357, 39.923453 ] } }, +{ "type": "Feature", "properties": { "location": "5100 IRVING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224886612534803, 39.955095042371497 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14328, 39.955135 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156738, 39.921505 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17049, 39.965628 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 24TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179532, 39.95224 ] } }, +{ "type": "Feature", "properties": { "location": "2200 HOBSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237272840798198, 39.922569628612401 ] } }, +{ "type": "Feature", "properties": { "location": "2499 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165443, 39.919347 ] } }, +{ "type": "Feature", "properties": { "location": "2499 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165468, 39.91932 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.08966, 40.009793 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RUAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08945, 40.01008 ] } }, +{ "type": "Feature", "properties": { "location": "4700 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133425513493805, 40.0231150058003 ] } }, +{ "type": "Feature", "properties": { "location": "6000 PALMETTO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.098768422742907, 40.044657364331997 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153557, 39.929362 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157658, 39.923258 ] } }, +{ "type": "Feature", "properties": { "location": "6700 RUTLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072454617014998, 40.043343221884101 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "800 W BUTLER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141670286803404, 40.009643343842299 ] } }, +{ "type": "Feature", "properties": { "location": "800 W BUTLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141670286803404, 40.009643343842299 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "2599 CARPENTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186275, 39.941425 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 26TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179610415649293, 39.970483746178701 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129465389976502, 39.9728074006401 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166013, 39.964478 ] } }, +{ "type": "Feature", "properties": { "location": "300 S CAMAC ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161943, 39.94634 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "3904 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142493253426693, 40.012049921577798 ] } }, +{ "type": "Feature", "properties": { "location": "6700 BUIST AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231751826874103, 39.919045028464197 ] } }, +{ "type": "Feature", "properties": { "location": "3600 CALUMET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194024682651303, 40.012527821737997 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "5800 MORTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170937708131703, 40.041767139662603 ] } }, +{ "type": "Feature", "properties": { "location": "600 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150262, 39.958273 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CONLYN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154299971591499, 40.042762315088297 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158211866833994, 40.010971387071102 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158211866833994, 40.010971387071102 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16075, 39.953607 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166803, 39.92015 ] } }, +{ "type": "Feature", "properties": { "location": "5100 LOCUST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22388, 39.955697 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158573, 39.923788 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 67TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.253740843501205, 39.974773830525599 ] } }, +{ "type": "Feature", "properties": { "location": "1501 GREGG ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.045438219992306, 40.082284253909798 ] } }, +{ "type": "Feature", "properties": { "location": "3700 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209124571647394, 40.017687462798698 ] } }, +{ "type": "Feature", "properties": { "location": "6500 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231448128764299, 39.922188881787797 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156632, 39.952778 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15339, 39.933818 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156168, 39.959702 ] } }, +{ "type": "Feature", "properties": { "location": "1100 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129131630429896, 39.969981121795001 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N SMEDLEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152425627362305, 40.022741222733899 ] } }, +{ "type": "Feature", "properties": { "location": "344 N 42ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206477, 39.959977 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171218, 39.940123 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17122, 39.940178 ] } }, +{ "type": "Feature", "properties": { "location": "200 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147127, 39.938048 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15559, 39.929273 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15561, 39.929438 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155688, 39.929173 ] } }, +{ "type": "Feature", "properties": { "location": "226 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16066, 39.92124 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15344, 39.928918 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15496, 39.929537 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153798, 39.928952 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 35TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193955, 39.960618 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164822, 39.949882 ] } }, +{ "type": "Feature", "properties": { "location": "6700 LEBANON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.253846918321202, 39.975900223900602 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164939287498299, 39.970599866247397 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155065, 39.949037 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15498, 39.991592 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141253, 39.968803 ] } }, +{ "type": "Feature", "properties": { "location": "912 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151762, 39.950117 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "169 W THELMA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127209198689698, 40.0204988630881 ] } }, +{ "type": "Feature", "properties": { "location": "109 W THELMA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127209198689698, 40.0204988630881 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138701608845395, 39.998947213811697 ] } }, +{ "type": "Feature", "properties": { "location": "4526 HURLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117240584877194, 40.018226869085602 ] } }, +{ "type": "Feature", "properties": { "location": "4923 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116665744294906, 40.024392716328002 ] } }, +{ "type": "Feature", "properties": { "location": "100 W LEHIGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131168510724905, 39.9909262877255 ] } }, +{ "type": "Feature", "properties": { "location": "4600 D ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1163815876413, 40.019187282331302 ] } }, +{ "type": "Feature", "properties": { "location": "3460 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1175767096166, 40.000987289979797 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175942, 39.93313 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "1900 NORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169405, 39.966777 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W SPENCER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138772, 40.045433 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E ESTAUGH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.109695, 39.999968 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 31ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187648, 39.964548 ] } }, +{ "type": "Feature", "properties": { "location": "3200 HAVERFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18876, 39.964378 ] } }, +{ "type": "Feature", "properties": { "location": "3000 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1158503996067, 39.990472563201699 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180946166820704, 39.968480251838898 ] } }, +{ "type": "Feature", "properties": { "location": "200 W SPENCER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124151287526601, 40.043486914662999 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S FELTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230552201313998, 39.9272865233917 ] } }, +{ "type": "Feature", "properties": { "location": "2247 S FELTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230552201313998, 39.9272865233917 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151218, 40.003112 ] } }, +{ "type": "Feature", "properties": { "location": "3500 RETTA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204547148793594, 40.017762450850803 ] } }, +{ "type": "Feature", "properties": { "location": "4600 D ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1163815876413, 40.019187282331302 ] } }, +{ "type": "Feature", "properties": { "location": "200 ERICA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.040944920656699, 40.116487384832503 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179249308647201, 39.9670232703834 ] } }, +{ "type": "Feature", "properties": { "location": "11906 FARWELL RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.9791476439013, 40.086115750482399 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168187434144102, 39.992824352982097 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104523, 39.996628 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104418, 39.99654 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104407, 39.996487 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104265, 39.996462 ] } }, +{ "type": "Feature", "properties": { "location": "5124 DELANCEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225129900914894, 39.953926270409397 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153166304473899, 39.934644664834202 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153166304473899, 39.934644664834202 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160747, 39.918238 ] } }, +{ "type": "Feature", "properties": { "location": "813 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160814853595994, 39.919398727672302 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166959467615598, 39.919567079655401 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153673, 39.959743 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144255706174107, 40.046602409397003 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "800 E ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114735, 39.999768 ] } }, +{ "type": "Feature", "properties": { "location": "3500 G ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114418369115398, 40.0015963270829 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N MARVINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141107, 40.034677 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PEMBERTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181165, 39.944267 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12849, 39.967152 ] } }, +{ "type": "Feature", "properties": { "location": "800 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091025852555404, 40.034293984669098 ] } }, +{ "type": "Feature", "properties": { "location": "4900 BALTIMORE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221940304807603, 39.948078183860098 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 52ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224872, 39.959328 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146395, 39.971537 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146307, 39.971583 ] } }, +{ "type": "Feature", "properties": { "location": "799 S BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165675, 39.942223 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159425, 39.976145 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168212, 39.92549 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134382, 39.972423 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073472, 40.04364 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 5TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147145, 39.958013 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157463, 39.961615 ] } }, +{ "type": "Feature", "properties": { "location": "621 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153795, 39.940622 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1956, 39.950955 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150510225545602, 39.919128730407699 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173403, 39.925028 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11418, 39.9993 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114887, 39.999293 ] } }, +{ "type": "Feature", "properties": { "location": "3300 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114897, 39.999288 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163173, 39.95828 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221623809056894, 39.956159122193299 ] } }, +{ "type": "Feature", "properties": { "location": "1210 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160883, 39.950297 ] } }, +{ "type": "Feature", "properties": { "location": "1000 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155783, 39.96017 ] } }, +{ "type": "Feature", "properties": { "location": "1200 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16434, 39.937412 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187989848690293, 39.9588431484175 ] } }, +{ "type": "Feature", "properties": { "location": "827 S 60TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243459367527905, 39.949036737705299 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149917, 39.921883 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W SELTZER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156296269009701, 39.995418079638597 ] } }, +{ "type": "Feature", "properties": { "location": "6200 LIMEKILN PIKE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152187691021396, 40.049150492627597 ] } }, +{ "type": "Feature", "properties": { "location": "2634 TULIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120119317060997, 39.982960218081601 ] } }, +{ "type": "Feature", "properties": { "location": "753 CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17026, 39.941747 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114817, 39.999323 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114847, 39.999378 ] } }, +{ "type": "Feature", "properties": { "location": "600 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156138059500293, 39.929722298083398 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219842298067505, 40.028135599795696 ] } }, +{ "type": "Feature", "properties": { "location": "4133 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090813, 40.006965 ] } }, +{ "type": "Feature", "properties": { "location": "100 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142256244651804, 39.955014046533698 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160345, 39.94211 ] } }, +{ "type": "Feature", "properties": { "location": "704 S WARNOCK ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159724385292293, 39.941541563364098 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "1400 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168953, 39.931825 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159532, 39.924203 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155912, 39.961103 ] } }, +{ "type": "Feature", "properties": { "location": "5310 WARREN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228455040503505, 39.976941603840402 ] } }, +{ "type": "Feature", "properties": { "location": "634 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153225, 39.9425 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225517, 40.026843 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154222, 40.004923 ] } }, +{ "type": "Feature", "properties": { "location": "2400 ARDELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244046601119194, 39.913266205112798 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156252, 39.959757 ] } }, +{ "type": "Feature", "properties": { "location": "1 S ROBINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244102357559498, 39.961977842896999 ] } }, +{ "type": "Feature", "properties": { "location": "1227 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159247, 39.958528 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17618, 39.941697 ] } }, +{ "type": "Feature", "properties": { "location": "3200 F ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117334122018903, 39.9972517044068 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180946166820704, 39.968480251838898 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171338, 39.927125 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N ORIANNA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142795, 39.967738 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GUYER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230382381546093, 39.917111764473503 ] } }, +{ "type": "Feature", "properties": { "location": "425 S 20TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17482, 39.94606 ] } }, +{ "type": "Feature", "properties": { "location": "2354 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158952902902001, 39.919380776094499 ] } }, +{ "type": "Feature", "properties": { "location": "4629 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148070681553605, 40.023757753170997 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14677, 39.969297 ] } }, +{ "type": "Feature", "properties": { "location": "2300 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124549680368503, 39.976237643862 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CHURCHVIEW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216553, 40.025 ] } }, +{ "type": "Feature", "properties": { "location": "900 BUTTONWOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153153, 39.960702 ] } }, +{ "type": "Feature", "properties": { "location": "3901 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200316548392394, 39.960534383626403 ] } }, +{ "type": "Feature", "properties": { "location": "26 CHURCH LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171003627298603, 40.034921817857303 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178037, 39.945138 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10182, 40.008215 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101883, 40.008042 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151447, 39.941542 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155217, 39.92875 ] } }, +{ "type": "Feature", "properties": { "location": "7100 MONTAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041867447749993, 40.033422054436699 ] } }, +{ "type": "Feature", "properties": { "location": "2553 S DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161986321369895, 39.917620767331499 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090935, 40.007597 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N DARIEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140765951014103, 40.014950280360097 ] } }, +{ "type": "Feature", "properties": { "location": "3100 WEYMOUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117046422205306, 39.996149419942 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173303, 39.938013 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173235, 39.938077 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156713, 39.96094 ] } }, +{ "type": "Feature", "properties": { "location": "1949 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179768689216601, 39.921832406852502 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156265, 39.923847 ] } }, +{ "type": "Feature", "properties": { "location": "400 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15473, 39.923683 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17512, 39.968445 ] } }, +{ "type": "Feature", "properties": { "location": "3100 D ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121663, 39.995938 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116848, 39.976218 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MASTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177028901625306, 39.976830912245802 ] } }, +{ "type": "Feature", "properties": { "location": "1914 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178438, 39.924292 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 35TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193110904979804, 39.964195727488203 ] } }, +{ "type": "Feature", "properties": { "location": "2700 LEFEVRE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071843145022498, 39.999734534193401 ] } }, +{ "type": "Feature", "properties": { "location": "6000 BAYNTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176053103603195, 40.041528223058499 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162552, 39.943867 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N HUTCHINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135833, 40.043475 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 40TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "1500 WOMRATH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090262, 40.009298 ] } }, +{ "type": "Feature", "properties": { "location": "800 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687857051997, 39.922383040809997 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16198, 39.94273 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161988, 39.942738 ] } }, +{ "type": "Feature", "properties": { "location": "7300 RUGBY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159598987544399, 40.064587788502699 ] } }, +{ "type": "Feature", "properties": { "location": "4000 MAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21748, 40.021627 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073783, 40.043375 ] } }, +{ "type": "Feature", "properties": { "location": "2500 KIMBALL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185496519750998, 39.941028206072602 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 43RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208272, 39.957175 ] } }, +{ "type": "Feature", "properties": { "location": "1700 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172931545813796, 39.933577847589902 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14951, 40.005255 ] } }, +{ "type": "Feature", "properties": { "location": "401 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 40TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168042, 39.940235 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N 59TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241415159123903, 39.986820628178499 ] } }, +{ "type": "Feature", "properties": { "location": "5200 W CLARKSON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160118332345405, 40.038293657671403 ] } }, +{ "type": "Feature", "properties": { "location": "5200 W CLARKSON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160118332345405, 40.038293657671403 ] } }, +{ "type": "Feature", "properties": { "location": "1100 HALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161970577316396, 39.938892154075901 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142537, 39.969233 ] } }, +{ "type": "Feature", "properties": { "location": "533 S SALFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241826740732904, 39.9535105459085 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140930275007506, 40.011861859392901 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13447, 39.971793 ] } }, +{ "type": "Feature", "properties": { "location": "4010 COTTMAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.040398, 40.036308 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRING GARDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192762, 39.962708 ] } }, +{ "type": "Feature", "properties": { "location": "299 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163443, 39.947522 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178473318287104, 39.922957168176403 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162646862229295, 39.9721612594712 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163491541252895, 39.971981066927697 ] } }, +{ "type": "Feature", "properties": { "location": "799 JUDSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175462, 39.96981 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153075, 39.942483 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227993, 40.028263 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 3RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143183, 39.961923 ] } }, +{ "type": "Feature", "properties": { "location": "2400 HARLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175734369659594, 39.977027211452899 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180446423123897, 39.919995997404897 ] } }, +{ "type": "Feature", "properties": { "location": "4617 WILBROCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.018857558659803, 40.0392513720927 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N 21ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167461201237103, 39.988551873944999 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172222, 39.966565 ] } }, +{ "type": "Feature", "properties": { "location": "100 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227750074937902, 40.028285816233797 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164098, 39.93242 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "5200 DARRAH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.076612, 40.022058 ] } }, +{ "type": "Feature", "properties": { "location": "4700 RISING SUN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124433, 40.023078 ] } }, +{ "type": "Feature", "properties": { "location": "437 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "600 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15816, 39.9229 ] } }, +{ "type": "Feature", "properties": { "location": "6520 ERDRICK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.053879354326298, 40.027953086440498 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15089, 39.982552 ] } }, +{ "type": "Feature", "properties": { "location": "3149 AGATE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108267911109607, 39.988675081499103 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S CORLIES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194790161962899, 39.934508378808196 ] } }, +{ "type": "Feature", "properties": { "location": "46 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137835038089705, 39.9622210029492 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OLIVE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217369656494199, 39.964561090325802 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WOLF ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180068184080895, 39.923154791797302 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.089612, 40.009477 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176878, 39.953778 ] } }, +{ "type": "Feature", "properties": { "location": "208 ERICA PL", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.042598191695504, 40.116141267442103 ] } }, +{ "type": "Feature", "properties": { "location": "3900 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200160959312299, 39.961115487234103 ] } }, +{ "type": "Feature", "properties": { "location": "4000 N DARIEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141096024947501, 40.0134212617684 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14087, 40.039423 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156833, 39.928148 ] } }, +{ "type": "Feature", "properties": { "location": "3300 F ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117011306597504, 39.998810500751901 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162503586970502, 39.9839303398605 ] } }, +{ "type": "Feature", "properties": { "location": "1050 N HANCOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139143086449707, 39.965929414103499 ] } }, +{ "type": "Feature", "properties": { "location": "100 PENSDALE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22016, 40.023692 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175028205400807, 39.998973364878601 ] } }, +{ "type": "Feature", "properties": { "location": "2125 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234334356912299, 39.926551786869403 ] } }, +{ "type": "Feature", "properties": { "location": "7100 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243414658475999, 39.919174933169501 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S FELTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230552201313998, 39.9272865233917 ] } }, +{ "type": "Feature", "properties": { "location": "6500 GUYER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227667858013106, 39.918994618833104 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SANSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213991414914403, 39.956306088759199 ] } }, +{ "type": "Feature", "properties": { "location": "541 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502227031296, 39.933105053217403 ] } }, +{ "type": "Feature", "properties": { "location": "3500 ENGLEWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043198, 40.0371 ] } }, +{ "type": "Feature", "properties": { "location": "6100 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123734537075094, 40.043695749716903 ] } }, +{ "type": "Feature", "properties": { "location": "353 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153869382695603, 39.917218466726801 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133824076508802, 39.972515261856699 ] } }, +{ "type": "Feature", "properties": { "location": "1300 TASKER ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166163, 39.930257 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155235, 39.95964 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "1200 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16619, 39.930182 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161578, 39.984682 ] } }, +{ "type": "Feature", "properties": { "location": "500 SAINT JAMES ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150323, 39.946968 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15368, 39.960148 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156318, 39.959753 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128168, 39.96721 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2153, 40.021912 ] } }, +{ "type": "Feature", "properties": { "location": "961 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152108, 39.936033 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129414506302595, 40.041428754036197 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174288, 39.933808 ] } }, +{ "type": "Feature", "properties": { "location": "100 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146541846911006, 39.933417654442302 ] } }, +{ "type": "Feature", "properties": { "location": "847 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687857051997, 39.922383040809997 ] } }, +{ "type": "Feature", "properties": { "location": "800 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687857051997, 39.922383040809997 ] } }, +{ "type": "Feature", "properties": { "location": "2449 S PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162801267332995, 39.918990584156198 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 20TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170187, 39.9669 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 20TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17018, 39.966923 ] } }, +{ "type": "Feature", "properties": { "location": "4960 WALTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222072502025796, 39.949090727178699 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191942, 39.956742 ] } }, +{ "type": "Feature", "properties": { "location": "2200 EARP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181623951137396, 39.935136273936898 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187598, 39.95882 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188545, 39.95878 ] } }, +{ "type": "Feature", "properties": { "location": "199 GRAPE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222962, 40.026132 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "2800 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191259743494896, 39.934685063142901 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160923, 39.921078 ] } }, +{ "type": "Feature", "properties": { "location": "3100 WEYMOUTH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117046422205306, 39.996149419942 ] } }, +{ "type": "Feature", "properties": { "location": "5134 SPRUCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225015604926796, 39.954468422602098 ] } }, +{ "type": "Feature", "properties": { "location": "3112 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1700685563127, 40.002994439038702 ] } }, +{ "type": "Feature", "properties": { "location": "3112 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1700685563127, 40.002994439038702 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134368, 39.972345 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160135687776403, 39.923761183479101 ] } }, +{ "type": "Feature", "properties": { "location": "4619 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.210374321112099, 39.943874029852303 ] } }, +{ "type": "Feature", "properties": { "location": "3600 POWELTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193823, 39.959838 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WEIKEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101853855160599, 39.993180355723297 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070545, 40.046392 ] } }, +{ "type": "Feature", "properties": { "location": "400 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216944907253193, 40.031313106409698 ] } }, +{ "type": "Feature", "properties": { "location": "200 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1730169722032, 40.039046893086599 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086188, 40.013873 ] } }, +{ "type": "Feature", "properties": { "location": "2623 N 18TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161187474958794, 39.993652816459601 ] } }, +{ "type": "Feature", "properties": { "location": "3999 O ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09687, 40.006858 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W OXFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160254334670697, 39.977541513740697 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143452, 40.0349 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17054, 39.965645 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "241 W WELLENS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128175795412204, 40.030897859287997 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153668, 39.952047 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137705, 39.968098 ] } }, +{ "type": "Feature", "properties": { "location": "150 MAPLEWOOD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176648045433197, 40.032260518952498 ] } }, +{ "type": "Feature", "properties": { "location": "400 N WANAMAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236172751200201, 39.968168702418403 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N TAYLOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170942073631593, 39.9999976042687 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196978, 39.960312 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191113, 39.960813 ] } }, +{ "type": "Feature", "properties": { "location": "5252 DELANCEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227105805046094, 39.954171623463601 ] } }, +{ "type": "Feature", "properties": { "location": "1016 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156603, 39.93679 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "6700 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231751826874103, 39.919045028464197 ] } }, +{ "type": "Feature", "properties": { "location": "204 SALAIGNAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206572816810606, 40.022170275830497 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 56TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234714704671603, 39.986513643332998 ] } }, +{ "type": "Feature", "properties": { "location": "949 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144708, 39.967297 ] } }, +{ "type": "Feature", "properties": { "location": "2100 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181964940636007, 39.923404880830802 ] } }, +{ "type": "Feature", "properties": { "location": "1400 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15816, 39.98494 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 56TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234714704671603, 39.986513643332998 ] } }, +{ "type": "Feature", "properties": { "location": "2600 DAPHNE RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.208650470071106, 39.999848351961099 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KENILWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162552, 39.94208 ] } }, +{ "type": "Feature", "properties": { "location": "2700 E ELKHART ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1063394471485, 39.981936372017699 ] } }, +{ "type": "Feature", "properties": { "location": "3923 N DELHI ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142962814842207, 40.012115162115002 ] } }, +{ "type": "Feature", "properties": { "location": "1501 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17275, 39.918302 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105208, 39.996797 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124144188884202, 40.040619243780696 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W BERKS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164014047556094, 39.982581023320698 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555, 39.940422 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17511, 39.92253 ] } }, +{ "type": "Feature", "properties": { "location": "1 N MILLICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241831081871396, 39.962901917289201 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CHESTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207133, 39.948512 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177295, 39.934233 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177337, 39.934183 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 12TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159955069100803, 39.951565642036599 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W ONTARIO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148387, 40.004198 ] } }, +{ "type": "Feature", "properties": { "location": "710 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180539223462006, 39.9440396484286 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151518, 40.001488 ] } }, +{ "type": "Feature", "properties": { "location": "4300 ROBBINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057135871924302, 40.024411899336997 ] } }, +{ "type": "Feature", "properties": { "location": "2945 N RINGGOLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170472241550399, 39.999935180083497 ] } }, +{ "type": "Feature", "properties": { "location": "2967 N BONSALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137552, 39.968162 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WASHINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17105, 39.93843 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192683, 39.958005 ] } }, +{ "type": "Feature", "properties": { "location": "4000 HOWLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103383380316203, 40.008545817658799 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156685, 39.960772 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156792, 39.960883 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SANSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213991414914403, 39.956306088759199 ] } }, +{ "type": "Feature", "properties": { "location": "4600 SANSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213991414914403, 39.956306088759199 ] } }, +{ "type": "Feature", "properties": { "location": "4700 CHESTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214620165633406, 39.945515229030903 ] } }, +{ "type": "Feature", "properties": { "location": "116 N DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242920393407701, 39.964625138066602 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "5013 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222230911260297, 39.958108098518899 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163063073896595, 39.992468140465903 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159533, 39.924845 ] } }, +{ "type": "Feature", "properties": { "location": "614 S 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161883, 39.942823 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180946166820704, 39.968480251838898 ] } }, +{ "type": "Feature", "properties": { "location": "2701 S BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171547925723701, 39.915510132598399 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230961993812997, 39.927926697768399 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164248161590095, 39.983381843560799 ] } }, +{ "type": "Feature", "properties": { "location": "5400 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.230600051737994, 39.956413205373998 ] } }, +{ "type": "Feature", "properties": { "location": "5211 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146063310415897, 40.032957922493097 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159173, 39.920593 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090985, 40.007098 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168142, 39.939765 ] } }, +{ "type": "Feature", "properties": { "location": "500 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146472, 39.966875 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14371, 39.971955 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176817, 39.945607 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W OLNEY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143448, 40.03887 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 42ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206363, 39.955482 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086235, 40.013792 ] } }, +{ "type": "Feature", "properties": { "location": "2300 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184071432821, 39.931688877464403 ] } }, +{ "type": "Feature", "properties": { "location": "4000 MARKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099294947135903, 40.008023178686798 ] } }, +{ "type": "Feature", "properties": { "location": "800 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238925750023895, 39.9480870781859 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156993, 39.977162 ] } }, +{ "type": "Feature", "properties": { "location": "1600 KINSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085715, 40.014178 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WINDRIM AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151675269387098, 40.0269664177777 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159575, 39.938488 ] } }, +{ "type": "Feature", "properties": { "location": "2905 S FELTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222310373834802, 39.9213775715967 ] } }, +{ "type": "Feature", "properties": { "location": "310 NANDINA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.032702061234303, 40.115716042254697 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160932, 39.969015 ] } }, +{ "type": "Feature", "properties": { "location": "2400 N 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1486049441001, 39.988743453486101 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225462, 40.027315 ] } }, +{ "type": "Feature", "properties": { "location": "5000 LEIPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.081707, 40.022605 ] } }, +{ "type": "Feature", "properties": { "location": "7200 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.041432, 40.036435 ] } }, +{ "type": "Feature", "properties": { "location": "3300 W INDIANA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185112020012099, 40.002606738793503 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153505, 39.94264 ] } }, +{ "type": "Feature", "properties": { "location": "4600 GRISCOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085845, 40.015852 ] } }, +{ "type": "Feature", "properties": { "location": "4601 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214150681328903, 39.955546089996098 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150712, 39.918117 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151345, 40.002993 ] } }, +{ "type": "Feature", "properties": { "location": "3809 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "600 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157722, 39.917865 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175367, 39.9435 ] } }, +{ "type": "Feature", "properties": { "location": "500 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150285, 39.944265 ] } }, +{ "type": "Feature", "properties": { "location": "500 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156507, 39.916285 ] } }, +{ "type": "Feature", "properties": { "location": "500 W SOMERSET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139915, 39.993645 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143775, 40.042595 ] } }, +{ "type": "Feature", "properties": { "location": "300 QUINCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160340144956805, 39.946090448393697 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169785, 39.952017 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16149, 39.984742 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158215, 39.962757 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N UBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166465123006205, 39.980582302039103 ] } }, +{ "type": "Feature", "properties": { "location": "700 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159062454371295, 39.922540544716902 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150172, 40.003687 ] } }, +{ "type": "Feature", "properties": { "location": "241 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187358, 39.94273 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176340025879398, 40.0035320270309 ] } }, +{ "type": "Feature", "properties": { "location": "2800 W CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176340025879398, 40.0035320270309 ] } }, +{ "type": "Feature", "properties": { "location": "400 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153137, 39.930997 ] } }, +{ "type": "Feature", "properties": { "location": "3800 MANOR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211714240680706, 40.0203982074582 ] } }, +{ "type": "Feature", "properties": { "location": "4123 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140765951014103, 40.014950280360097 ] } }, +{ "type": "Feature", "properties": { "location": "4899 RORER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114553469862898, 40.022871308627899 ] } }, +{ "type": "Feature", "properties": { "location": "1200 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164493, 39.931283 ] } }, +{ "type": "Feature", "properties": { "location": "1 JACKSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146340023950003, 39.920090222294398 ] } }, +{ "type": "Feature", "properties": { "location": "2700 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180454892767301, 39.975204799598998 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168615, 39.933755 ] } }, +{ "type": "Feature", "properties": { "location": "60 CHURCH LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171003627298603, 40.034921817857303 ] } }, +{ "type": "Feature", "properties": { "location": "6300 GREENWAY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233656845879295, 39.9279973013412 ] } }, +{ "type": "Feature", "properties": { "location": "2700 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182628, 39.970653 ] } }, +{ "type": "Feature", "properties": { "location": "500 TREE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156897, 39.920745 ] } }, +{ "type": "Feature", "properties": { "location": "3747 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161943, 39.920092 ] } }, +{ "type": "Feature", "properties": { "location": "700 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157983, 39.92407 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163385, 39.983515 ] } }, +{ "type": "Feature", "properties": { "location": "401 S 40TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219316926361003, 39.942212560662902 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219316926361003, 39.942212560662902 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173725988658802, 39.943534717381802 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173725988658802, 39.943534717381802 ] } }, +{ "type": "Feature", "properties": { "location": "5900 JANNETTE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209557005813593, 40.032158797065101 ] } }, +{ "type": "Feature", "properties": { "location": "2200 OGDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174455, 39.971635 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PARRISH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163420978563394, 39.969413204425699 ] } }, +{ "type": "Feature", "properties": { "location": "2500 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173382083977401, 39.995283103063301 ] } }, +{ "type": "Feature", "properties": { "location": "1222 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162608, 39.943885 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WASHINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171022, 39.9385 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187989848690293, 39.9588431484175 ] } }, +{ "type": "Feature", "properties": { "location": "199 BURNSIDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217218, 40.023217 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ARGYLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111819206454001, 39.998691024209499 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167753, 39.956227 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167671901267198, 39.971370296991502 ] } }, +{ "type": "Feature", "properties": { "location": "800 LELAND ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165099689818604, 39.969620768301603 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BENJAMIN FRANKLIN PKWY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169043, 39.95659 ] } }, +{ "type": "Feature", "properties": { "location": "200 E HAINES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174246300807695, 40.040948821864497 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N NEWKIRK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177144368972506, 39.998943470801102 ] } }, +{ "type": "Feature", "properties": { "location": "4101 N 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138987682111505, 40.014720665919299 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N MARSHALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138820278301793, 40.011589587125997 ] } }, +{ "type": "Feature", "properties": { "location": "1800 TULIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130582, 39.976312 ] } }, +{ "type": "Feature", "properties": { "location": "3200 F ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117334122018903, 39.9972517044068 ] } }, +{ "type": "Feature", "properties": { "location": "3400 ELLA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125864698010005, 40.002036724401002 ] } }, +{ "type": "Feature", "properties": { "location": "200 E TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126029259208593, 40.002825703349302 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RHAWN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064952476496998, 40.067301181159301 ] } }, +{ "type": "Feature", "properties": { "location": "11740 TELFAIR RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.969119041896903, 40.078080643279002 ] } }, +{ "type": "Feature", "properties": { "location": "5842 MORTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171667808272005, 40.0426165409107 ] } }, +{ "type": "Feature", "properties": { "location": "800 LATONA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15749, 39.933395 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191918, 39.956822 ] } }, +{ "type": "Feature", "properties": { "location": "1974 ASHLEY RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149797194628903, 40.066250525643902 ] } }, +{ "type": "Feature", "properties": { "location": "5500 MATTHEWS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158928290325406, 40.048120490842201 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13757, 39.968142 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "6700 LEEDS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.254565239951106, 39.975033297803897 ] } }, +{ "type": "Feature", "properties": { "location": "1025 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162536935354197, 39.9309788646204 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 62ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227716645364794, 39.925860546484401 ] } }, +{ "type": "Feature", "properties": { "location": "2500 SWAIN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178983278460194, 39.969596363820699 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W DUNCANNON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147198, 40.03231 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171863, 39.93981 ] } }, +{ "type": "Feature", "properties": { "location": "2500 WEBB ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118718964919196, 39.976107690950499 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N CAMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142898, 40.033372 ] } }, +{ "type": "Feature", "properties": { "location": "1928 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161947, 39.983313 ] } }, +{ "type": "Feature", "properties": { "location": "756 S 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1692, 39.941603 ] } }, +{ "type": "Feature", "properties": { "location": "2554 S MILDRED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161498653227994, 39.917556712142598 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "500 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "100 ROCHELLE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207163176731896, 40.017114198655399 ] } }, +{ "type": "Feature", "properties": { "location": "900 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089113493495404, 40.033841531766797 ] } }, +{ "type": "Feature", "properties": { "location": "4700 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216642, 39.954615 ] } }, +{ "type": "Feature", "properties": { "location": "1100 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163187577411904, 39.930745036297502 ] } }, +{ "type": "Feature", "properties": { "location": "1100 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163522, 39.93114 ] } }, +{ "type": "Feature", "properties": { "location": "400 N FRONT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1398325087372, 39.957321124916703 ] } }, +{ "type": "Feature", "properties": { "location": "2900 TURNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182918507269093, 39.980998249814498 ] } }, +{ "type": "Feature", "properties": { "location": "10604 LOCKART RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043189899186501, 40.1160326228134 ] } }, +{ "type": "Feature", "properties": { "location": "10608 LOCKART RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043189899186501, 40.1160326228134 ] } }, +{ "type": "Feature", "properties": { "location": "2200 OGDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173953938432703, 39.971533058679903 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134405, 39.972393 ] } }, +{ "type": "Feature", "properties": { "location": "899 PERKIOMEN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1674180991687, 39.970697531322998 ] } }, +{ "type": "Feature", "properties": { "location": "233 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124778952884796, 40.044095436756997 ] } }, +{ "type": "Feature", "properties": { "location": "800 PERKIOMEN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165726939386602, 39.968874308498499 ] } }, +{ "type": "Feature", "properties": { "location": "4000 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203369886887998, 39.955768652261703 ] } }, +{ "type": "Feature", "properties": { "location": "3401 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193443078112693, 39.952977192406202 ] } }, +{ "type": "Feature", "properties": { "location": "910 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137908, 39.963208 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S WATTS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170632, 39.916873 ] } }, +{ "type": "Feature", "properties": { "location": "1899 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167098, 39.926578 ] } }, +{ "type": "Feature", "properties": { "location": "5900 MASCHER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122681412358702, 40.0404360663426 ] } }, +{ "type": "Feature", "properties": { "location": "800 S ALDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.238354718438799, 39.948010546376601 ] } }, +{ "type": "Feature", "properties": { "location": "4700 LOCUST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216513, 39.954688 ] } }, +{ "type": "Feature", "properties": { "location": "924 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169707912462101, 39.939706586927102 ] } }, +{ "type": "Feature", "properties": { "location": "1400 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168768, 39.933023 ] } }, +{ "type": "Feature", "properties": { "location": "2400 GREEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177423, 39.965835 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "100 FARRAGUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214404514015499, 39.956748928462098 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231203, 39.927827 ] } }, +{ "type": "Feature", "properties": { "location": "4600 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213675698508396, 39.957813707955999 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 19TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170125, 39.960613 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150232, 40.003773 ] } }, +{ "type": "Feature", "properties": { "location": "2945 N RINGGOLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170472241550399, 39.999935180083497 ] } }, +{ "type": "Feature", "properties": { "location": "2007 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170835, 39.96577 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168197, 39.943552 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226577, 40.030687 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163095, 39.948397 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1715, 39.939528 ] } }, +{ "type": "Feature", "properties": { "location": "1914 CATHARINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174738, 39.941805 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156038, 39.921325 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PIKE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.103312, 40.006193 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150045, 40.003855 ] } }, +{ "type": "Feature", "properties": { "location": "2413 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177728102367197, 39.967819114889799 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 13TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162156545231994, 39.9488822580171 ] } }, +{ "type": "Feature", "properties": { "location": "6715 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073567, 40.043632 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175138, 39.922508 ] } }, +{ "type": "Feature", "properties": { "location": "3300 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111371859365207, 39.998630400763197 ] } }, +{ "type": "Feature", "properties": { "location": "3300 MALTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111371859365207, 39.998630400763197 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149259238346204, 39.978351183442498 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15866, 39.920617 ] } }, +{ "type": "Feature", "properties": { "location": "800 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "400 E TUSCULUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124605796437507, 39.990475751623599 ] } }, +{ "type": "Feature", "properties": { "location": "6201 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.247462462887498, 39.951481279387401 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151848, 39.93673 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191898, 39.956805 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19191, 39.956802 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 69TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243671112476804, 39.924599856092797 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14171, 40.042563 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 7TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153945, 39.941817 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163768909327601, 39.943880565987399 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143255, 39.961312 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173247, 39.938748 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160932, 39.951277 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1671, 39.942515 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113925, 39.999263 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149828, 39.946615 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213008195965898, 40.021422669282302 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158958, 39.940898 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CATHARINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166385, 39.940748 ] } }, +{ "type": "Feature", "properties": { "location": "260 GRAPE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.217973157391597, 40.028315309163197 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191443324436705, 39.963213814021799 ] } }, +{ "type": "Feature", "properties": { "location": "1700 COTTMAN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070975, 40.054125 ] } }, +{ "type": "Feature", "properties": { "location": "634 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157579902741006, 39.921991130310303 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GREEN LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175917, 39.965403 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "247 W THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134455147388806, 40.001968784047499 ] } }, +{ "type": "Feature", "properties": { "location": "544 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MARLBOROUGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13293, 39.971923 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "5701 HUNTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "2700 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147672, 39.993478 ] } }, +{ "type": "Feature", "properties": { "location": "1127 WOLF ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165902, 39.921327 ] } }, +{ "type": "Feature", "properties": { "location": "100 ROSELYN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120987101344298, 40.042059221279501 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165268, 39.919392 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165463, 39.919313 ] } }, +{ "type": "Feature", "properties": { "location": "3500 JANNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099833519642601, 39.994700297769803 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156077, 39.959817 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086117, 40.013815 ] } }, +{ "type": "Feature", "properties": { "location": "3100 HURLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121922315190304, 39.996776717591104 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N ETTING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178901494490503, 39.983734257137201 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156057, 39.954417 ] } }, +{ "type": "Feature", "properties": { "location": "4100 MARKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.098965304571607, 40.009550878480702 ] } }, +{ "type": "Feature", "properties": { "location": "5900 ELSINORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099461666306198, 40.043151283959197 ] } }, +{ "type": "Feature", "properties": { "location": "5100 GRISCOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080178, 40.021945 ] } }, +{ "type": "Feature", "properties": { "location": "800 S SWANSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14326, 39.937035 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158073556451001, 39.985714102366501 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W VENANGO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149839940054093, 40.007438349687 ] } }, +{ "type": "Feature", "properties": { "location": "2001 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170953, 39.964362 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090918, 40.007393 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159362, 39.923953 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160303448465598, 39.9204908835856 ] } }, +{ "type": "Feature", "properties": { "location": "2622 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1200287731765, 39.982040701312599 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170378, 39.966847 ] } }, +{ "type": "Feature", "properties": { "location": "900 MARCELLA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091810897633394, 40.0308573223286 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187705, 39.958812 ] } }, +{ "type": "Feature", "properties": { "location": "5200 E TABOR RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.108731024203294, 40.0318608287836 ] } }, +{ "type": "Feature", "properties": { "location": "3621 EMERALD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101159003916905, 39.999540802152602 ] } }, +{ "type": "Feature", "properties": { "location": "801 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160187255647998, 39.968033989591703 ] } }, +{ "type": "Feature", "properties": { "location": "3500 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192955, 39.956995 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163868, 39.94608 ] } }, +{ "type": "Feature", "properties": { "location": "200 RECTOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218297, 40.025592 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162505, 39.965413 ] } }, +{ "type": "Feature", "properties": { "location": "1636 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156922, 39.92809 ] } }, +{ "type": "Feature", "properties": { "location": "423 E WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1293324977065, 39.969233022932499 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219445, 40.02831 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 18TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163236774265201, 39.984253901258199 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191443324436705, 39.963213814021799 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "2115 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161355753216199, 39.9230610780888 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164002, 39.945603 ] } }, +{ "type": "Feature", "properties": { "location": "535 N 12TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159217, 39.962695 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163423, 39.921017 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157503, 39.96164 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155253, 39.959697 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155277, 39.959647 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133066926182394, 39.999851607906699 ] } }, +{ "type": "Feature", "properties": { "location": "173 W TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130861785274703, 40.003451254038502 ] } }, +{ "type": "Feature", "properties": { "location": "2025 S FRAZIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224659469176601, 39.935411029033503 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "5100 VIOLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222389606258105, 39.980273704307002 ] } }, +{ "type": "Feature", "properties": { "location": "5100 VIOLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222389606258105, 39.980273704307002 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149577, 40.00527 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152707, 39.942422 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "5348 TURNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229829444696406, 39.98227899127 ] } }, +{ "type": "Feature", "properties": { "location": "6500 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157653587747404, 40.053744815770898 ] } }, +{ "type": "Feature", "properties": { "location": "1300 NECTARINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160975, 39.961678 ] } }, +{ "type": "Feature", "properties": { "location": "4137 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101648997886997, 40.009898994380002 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180946166820704, 39.968480251838898 ] } }, +{ "type": "Feature", "properties": { "location": "2108 MARKET ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175378, 39.954103 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167, 39.965338 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166713, 39.965275 ] } }, +{ "type": "Feature", "properties": { "location": "100 W WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138737, 39.966635 ] } }, +{ "type": "Feature", "properties": { "location": "181 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122676584184106, 40.043817504728999 ] } }, +{ "type": "Feature", "properties": { "location": "2100 GOULD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235764520071896, 39.92554626706 ] } }, +{ "type": "Feature", "properties": { "location": "200 W THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141283, 39.970888 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.074651814421301, 40.019083480429003 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161190173410105, 39.980683206781798 ] } }, +{ "type": "Feature", "properties": { "location": "955 SANGER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.088641645241594, 40.032315441954701 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211407994077206, 39.956538793198 ] } }, +{ "type": "Feature", "properties": { "location": "5600 BINGHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103785338290095, 40.038645329735303 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N 25TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172980830105701, 39.993374783722103 ] } }, +{ "type": "Feature", "properties": { "location": "4800 RISING SUN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124278, 40.02326 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156722, 39.960845 ] } }, +{ "type": "Feature", "properties": { "location": "4700 OXFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.083851445611998, 40.017322496626903 ] } }, +{ "type": "Feature", "properties": { "location": "7039 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2391293384932, 39.9174278242876 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.244654669098793, 39.924380531999503 ] } }, +{ "type": "Feature", "properties": { "location": "4002 N MARSHALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138491896493704, 40.013083229471299 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156037, 39.939648 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171292, 39.940142 ] } }, +{ "type": "Feature", "properties": { "location": "3200 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115396282731197, 39.996998765729401 ] } }, +{ "type": "Feature", "properties": { "location": "191 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224978854150393, 40.029976752046998 ] } }, +{ "type": "Feature", "properties": { "location": "1607 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169362, 39.94319 ] } }, +{ "type": "Feature", "properties": { "location": "4936 RENO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219485482144293, 39.966638893961701 ] } }, +{ "type": "Feature", "properties": { "location": "3751 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156357, 39.938173 ] } }, +{ "type": "Feature", "properties": { "location": "5200 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127713595637005, 40.030312754005699 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090822, 40.006918 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141307, 39.965427 ] } }, +{ "type": "Feature", "properties": { "location": "2000 DORRANCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176974883961293, 39.9259395060513 ] } }, +{ "type": "Feature", "properties": { "location": "5800 HORROCKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080620774642597, 40.029813224428999 ] } }, +{ "type": "Feature", "properties": { "location": "700 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158334695615395, 39.925834606298999 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N FELTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.244370963723995, 39.974672494528903 ] } }, +{ "type": "Feature", "properties": { "location": "2800 MERCER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112042171253194, 39.9806622629565 ] } }, +{ "type": "Feature", "properties": { "location": "1536 SEYBERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1614535255124, 39.973926301837601 ] } }, +{ "type": "Feature", "properties": { "location": "4600 LINMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208452316675107, 39.942963220039204 ] } }, +{ "type": "Feature", "properties": { "location": "1800 HARLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1654980533432, 39.975754247430899 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "300 QUINCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160508, 39.945863 ] } }, +{ "type": "Feature", "properties": { "location": "1400 E CREASE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134105, 39.972472 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167847, 39.936722 ] } }, +{ "type": "Feature", "properties": { "location": "500 TOMLINSON RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.023871730480295, 40.113482342799202 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E LETTERLY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128047781194695, 39.984774238765702 ] } }, +{ "type": "Feature", "properties": { "location": "6247 MERSHON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065584229748794, 40.0300327527519 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087132, 40.014332 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164499561083502, 39.917301170713998 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W WESTMORELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15119, 40.002943 ] } }, +{ "type": "Feature", "properties": { "location": "1900 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108779703617003, 39.996269105585199 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172882, 39.93227 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 40TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203382428702398, 39.9503051670658 ] } }, +{ "type": "Feature", "properties": { "location": "800 ORIANNA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143762, 39.963618 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174313, 39.949005 ] } }, +{ "type": "Feature", "properties": { "location": "1700 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172994257574501, 39.935731232886901 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161970851488803, 39.9807846433824 ] } }, +{ "type": "Feature", "properties": { "location": "180 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "181 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "261 W YORK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138072630517399, 39.987112273831301 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CARDINAL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240834380966604, 39.993072778136202 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155073, 39.929187 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155112, 39.92917 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1550454276165, 39.929768979897901 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15515, 39.929183 ] } }, +{ "type": "Feature", "properties": { "location": "926 WALLACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15355, 39.963922 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "5513 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231944696545497, 39.973626684853102 ] } }, +{ "type": "Feature", "properties": { "location": "1928 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161887, 39.983298 ] } }, +{ "type": "Feature", "properties": { "location": "700 N UBER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169143, 39.968017 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14132, 39.965392 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N PERCY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142821154925102, 40.010562233606002 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225143718712303, 40.0262565643012 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18762, 39.958862 ] } }, +{ "type": "Feature", "properties": { "location": "917 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16805, 39.939672 ] } }, +{ "type": "Feature", "properties": { "location": "500 THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145538, 39.971502 ] } }, +{ "type": "Feature", "properties": { "location": "5700 SUMMER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234421873769605, 39.965132256308202 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 31ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188138, 39.961038 ] } }, +{ "type": "Feature", "properties": { "location": "3844 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157868428971199, 40.0125124206468 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181830332210197, 39.9227274491545 ] } }, +{ "type": "Feature", "properties": { "location": "5200 N 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136657694073307, 40.031417215472104 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187553, 39.958812 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ARCH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190552, 39.956893 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245057755271105, 39.962495105725097 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 12TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162823632446305, 39.938397407884899 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16308, 39.946348 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157997, 39.924993 ] } }, +{ "type": "Feature", "properties": { "location": "2400 TURNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175086922278695, 39.979942496742197 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149585, 39.93987 ] } }, +{ "type": "Feature", "properties": { "location": "500 WHARTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15434, 39.932435 ] } }, +{ "type": "Feature", "properties": { "location": "100 DAWSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212679859814898, 40.018800379132003 ] } }, +{ "type": "Feature", "properties": { "location": "100 DAWSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21311, 40.018657 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1606349386674, 39.981382342078 ] } }, +{ "type": "Feature", "properties": { "location": "600 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154265, 39.93372 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141542, 40.039453 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205352, 39.948555 ] } }, +{ "type": "Feature", "properties": { "location": "1631 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169505, 39.945812 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161522, 39.984713 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157447, 39.949232 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16416, 39.964873 ] } }, +{ "type": "Feature", "properties": { "location": "3500 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193915, 39.95397 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15165, 40.001302 ] } }, +{ "type": "Feature", "properties": { "location": "100 FARRAGUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214553, 39.95637 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191062, 39.960833 ] } }, +{ "type": "Feature", "properties": { "location": "2400 POPLAR ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176245551049803, 39.972272557773401 ] } }, +{ "type": "Feature", "properties": { "location": "400 MONASTERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216017592750603, 40.029829748777402 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163288354647193, 39.972905150418597 ] } }, +{ "type": "Feature", "properties": { "location": "4300 ROBBINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057135871924302, 40.024411899336997 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228278, 40.028453 ] } }, +{ "type": "Feature", "properties": { "location": "299 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163948, 39.947218 ] } }, +{ "type": "Feature", "properties": { "location": "2400 76TH AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15736, 40.069897 ] } }, +{ "type": "Feature", "properties": { "location": "500 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156032, 39.925103 ] } }, +{ "type": "Feature", "properties": { "location": "5600 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223248004823105, 39.935316073548002 ] } }, +{ "type": "Feature", "properties": { "location": "1562 STONEY LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043436759401402, 40.083352107965503 ] } }, +{ "type": "Feature", "properties": { "location": "2700 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131266217413199, 39.991752396303198 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W CLEMENTINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177896943629804, 40.003821290594303 ] } }, +{ "type": "Feature", "properties": { "location": "700 DUDLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15798, 39.924612 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 54TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225265529229404, 39.9416665938341 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152032, 39.929165 ] } }, +{ "type": "Feature", "properties": { "location": "400 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15767, 39.9233 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157735, 39.92333 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157723, 39.92327 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152477, 39.942383 ] } }, +{ "type": "Feature", "properties": { "location": "2100 YELLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164080550158005, 40.0119608724074 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163109030447799, 39.973734164787103 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 53RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226575, 39.961763 ] } }, +{ "type": "Feature", "properties": { "location": "3500 WELLINGTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.042452, 40.03607 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155625, 39.921288 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192483, 39.956978 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090842, 40.007535 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15984, 39.974765 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155658, 39.929923 ] } }, +{ "type": "Feature", "properties": { "location": "100 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142117, 39.953748 ] } }, +{ "type": "Feature", "properties": { "location": "300 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138802, 39.955822 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174235957484697, 39.995116588785898 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101762, 40.008565 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2382199431093, 39.954746095388501 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226342, 40.027745 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167865757162005, 39.994295013418302 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174873, 39.94634 ] } }, +{ "type": "Feature", "properties": { "location": "600 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153617, 39.940577 ] } }, +{ "type": "Feature", "properties": { "location": "3500 POWELTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193713, 39.959868 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S MOLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170037380704798, 39.9367062133459 ] } }, +{ "type": "Feature", "properties": { "location": "1151 S SYDENHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169592706719996, 39.936514597198901 ] } }, +{ "type": "Feature", "properties": { "location": "1729 S 20TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178397974977003, 39.929487894781403 ] } }, +{ "type": "Feature", "properties": { "location": "2700 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181348365320005, 39.971651771260802 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161970851488803, 39.9807846433824 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150156409894606, 39.9372373223623 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156328, 39.9608 ] } }, +{ "type": "Feature", "properties": { "location": "5943 DELANCEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240995970706706, 39.955998133149201 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163582, 39.931203 ] } }, +{ "type": "Feature", "properties": { "location": "800 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WEIKEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101853855160599, 39.993180355723297 ] } }, +{ "type": "Feature", "properties": { "location": "1100 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155640758382603, 39.965817054517601 ] } }, +{ "type": "Feature", "properties": { "location": "506 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164135, 39.944215 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173748, 39.920958 ] } }, +{ "type": "Feature", "properties": { "location": "5900 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232811858843803, 39.9359672527439 ] } }, +{ "type": "Feature", "properties": { "location": "400 SEPVIVA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132052, 39.975118 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158227, 39.957997 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175143, 39.947217 ] } }, +{ "type": "Feature", "properties": { "location": "200 VAN KIRK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1076150877022, 40.046830119137397 ] } }, +{ "type": "Feature", "properties": { "location": "6100 BAYNTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177233858490098, 40.042248506924501 ] } }, +{ "type": "Feature", "properties": { "location": "400 W THOMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144115, 39.971382 ] } }, +{ "type": "Feature", "properties": { "location": "8301 ARDLEIGH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203237728667602, 40.0755842557747 ] } }, +{ "type": "Feature", "properties": { "location": "4200 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.097862, 40.011765 ] } }, +{ "type": "Feature", "properties": { "location": "431 S 49TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220535328475506, 39.951656837012102 ] } }, +{ "type": "Feature", "properties": { "location": "6200 MARKET ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245057755271105, 39.962495105725097 ] } }, +{ "type": "Feature", "properties": { "location": "900 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153538, 39.962568 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "514 W LYCOMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136538133522606, 40.013587276591998 ] } }, +{ "type": "Feature", "properties": { "location": "600 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.118433893288696, 40.000305814905801 ] } }, +{ "type": "Feature", "properties": { "location": "5200 N CAMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142903, 40.033335 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S MOLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173081795212596, 39.9216089929742 ] } }, +{ "type": "Feature", "properties": { "location": "500 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152997, 39.934308 ] } }, +{ "type": "Feature", "properties": { "location": "1515 SWAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "913 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171287469321598, 39.939905402616397 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167115, 39.940532 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155697, 39.929305 ] } }, +{ "type": "Feature", "properties": { "location": "5500 LAURENS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182673, 40.02797 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16978, 39.94331 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116928, 39.998587 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168135, 39.939743 ] } }, +{ "type": "Feature", "properties": { "location": "5700 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234779806555906, 39.9694959115117 ] } }, +{ "type": "Feature", "properties": { "location": "1913 PENFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147840356200007, 40.066502768287599 ] } }, +{ "type": "Feature", "properties": { "location": "1600 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171157, 39.933383 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13843, 39.964987 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186933143048705, 39.923835143105698 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114207, 39.999247 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CATHARINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16638, 39.940818 ] } }, +{ "type": "Feature", "properties": { "location": "300 W DUVAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187271683136004, 40.039269170013199 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13314, 39.969403 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153278, 39.93402 ] } }, +{ "type": "Feature", "properties": { "location": "800 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160554974993801, 39.920647889252699 ] } }, +{ "type": "Feature", "properties": { "location": "2837 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183212, 39.974537 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1679, 39.936697 ] } }, +{ "type": "Feature", "properties": { "location": "6300 MCCALLUM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183408978402198, 40.041256798496903 ] } }, +{ "type": "Feature", "properties": { "location": "400 N AMERICAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142845, 39.95867 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183028, 39.942142 ] } }, +{ "type": "Feature", "properties": { "location": "200 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234788011345998, 39.9179860542299 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143046514553305, 39.955143513987899 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168258, 39.925508 ] } }, +{ "type": "Feature", "properties": { "location": "328 E ALLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129646826684805, 39.967286394784303 ] } }, +{ "type": "Feature", "properties": { "location": "300 E ALLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129646826684805, 39.967286394784303 ] } }, +{ "type": "Feature", "properties": { "location": "5 E NEDRO AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.119995855682205, 40.039834092535401 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174248722044794, 39.929989989953299 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160157, 39.95196 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124144188884202, 40.040619243780696 ] } }, +{ "type": "Feature", "properties": { "location": "500 E TABOR RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115919366404299, 40.0304736923242 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.123048, 39.973787 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158082, 39.92328 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MEDARY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150876985446899, 40.050123773615198 ] } }, +{ "type": "Feature", "properties": { "location": "300 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153428, 39.922245 ] } }, +{ "type": "Feature", "properties": { "location": "714 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159183, 39.920608 ] } }, +{ "type": "Feature", "properties": { "location": "433 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150938, 39.938628 ] } }, +{ "type": "Feature", "properties": { "location": "1513 TYSON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069926599667994, 40.0466266245245 ] } }, +{ "type": "Feature", "properties": { "location": "1000 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156202, 39.960158 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128107, 39.967315 ] } }, +{ "type": "Feature", "properties": { "location": "5200 BEAUMONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224295914101404, 39.944020835701899 ] } }, +{ "type": "Feature", "properties": { "location": "2100 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178087, 39.94551 ] } }, +{ "type": "Feature", "properties": { "location": "1722 TILGHMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137553944883095, 39.977229307193802 ] } }, +{ "type": "Feature", "properties": { "location": "2200 E FLETCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128220215800994, 39.979189544465697 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162087, 39.927232 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CHERRY ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164753, 39.955813 ] } }, +{ "type": "Feature", "properties": { "location": "1600 FITZWATER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170668, 39.942423 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070482, 40.046487 ] } }, +{ "type": "Feature", "properties": { "location": "2400 HARLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175734369659594, 39.977027211452899 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156657, 39.954673 ] } }, +{ "type": "Feature", "properties": { "location": "2001 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175023, 39.945825 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1633, 39.945085 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159652, 39.93063 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 30TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185351166639805, 39.973642651888198 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N ORKNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140232395757906, 39.989689052294601 ] } }, +{ "type": "Feature", "properties": { "location": "3917 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136017576104194, 40.0112313694313 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19111, 39.960823 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191097, 39.960832 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128985, 39.97213 ] } }, +{ "type": "Feature", "properties": { "location": "1128 HALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161970577316396, 39.938892154075901 ] } }, +{ "type": "Feature", "properties": { "location": "2403 E NORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127252, 39.976763 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.09091, 40.007498 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153632, 39.928967 ] } }, +{ "type": "Feature", "properties": { "location": "1000 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132273, 39.967993 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CREASE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132868, 39.969945 ] } }, +{ "type": "Feature", "properties": { "location": "1213 CREASE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132937, 39.969872 ] } }, +{ "type": "Feature", "properties": { "location": "324 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13253, 39.972933 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163345, 39.926043 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195365, 39.950808 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090838, 40.007627 ] } }, +{ "type": "Feature", "properties": { "location": "400 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142645, 39.972343 ] } }, +{ "type": "Feature", "properties": { "location": "4200 SILVERWOOD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220218, 40.025238 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149192, 39.939472 ] } }, +{ "type": "Feature", "properties": { "location": "21 N RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227810083005593, 39.961165788692199 ] } }, +{ "type": "Feature", "properties": { "location": "5316 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226547591533901, 39.963373653187404 ] } }, +{ "type": "Feature", "properties": { "location": "3100 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174980129551898, 40.003632761088703 ] } }, +{ "type": "Feature", "properties": { "location": "900 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144508, 39.967683 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181114576860494, 39.971056082780301 ] } }, +{ "type": "Feature", "properties": { "location": "700 CLYMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15463, 39.940098 ] } }, +{ "type": "Feature", "properties": { "location": "2300 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179603, 39.94869 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W COURTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155004368173394, 40.023845559405601 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15549, 39.98447 ] } }, +{ "type": "Feature", "properties": { "location": "2338 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166813, 39.920235 ] } }, +{ "type": "Feature", "properties": { "location": "665 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117937534522895, 39.999147255209003 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166483, 39.933952 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150055084119003, 39.921206374405699 ] } }, +{ "type": "Feature", "properties": { "location": "800 W THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149745, 39.972057 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "435 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "500 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150928, 39.944393 ] } }, +{ "type": "Feature", "properties": { "location": "6100 MCCALLUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180982963768102, 40.039728472431896 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173133, 39.921008 ] } }, +{ "type": "Feature", "properties": { "location": "2300 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175433, 39.96743 ] } }, +{ "type": "Feature", "properties": { "location": "100 WESTMORELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129047, 40.00012 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154795, 39.960357 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156912, 39.958952 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150788, 39.918087 ] } }, +{ "type": "Feature", "properties": { "location": "2428 OLIVE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177728102367197, 39.967819114889799 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140270308877902, 40.014889376962302 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16987, 39.951445 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157597, 39.949422 ] } }, +{ "type": "Feature", "properties": { "location": "2400 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176993, 39.967318 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176095, 39.941687 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176273, 39.941747 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15173, 39.949685 ] } }, +{ "type": "Feature", "properties": { "location": "1926 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173997, 39.946237 ] } }, +{ "type": "Feature", "properties": { "location": "4400 MITCHELL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215066657491903, 40.030705583339 ] } }, +{ "type": "Feature", "properties": { "location": "1000 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150289806053493, 39.982351574786897 ] } }, +{ "type": "Feature", "properties": { "location": "3600 N 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152875, 40.009447 ] } }, +{ "type": "Feature", "properties": { "location": "326 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153739041251598, 39.9578145194535 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157703, 39.949247 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157678, 39.949347 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157893, 39.949285 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15779, 39.949273 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157668, 39.94929 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15767, 39.949302 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157563, 39.949427 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157565, 39.949482 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15769, 39.949035 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157105, 39.949095 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157777, 39.94942 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157668, 39.949483 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157633, 39.949362 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157708, 39.949425 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15761, 39.949343 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15764, 39.949338 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157605, 39.949395 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157355, 39.949748 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15713, 39.950073 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157762, 39.949368 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157687, 39.949418 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157608, 39.949748 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15756, 39.949412 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15763, 39.949233 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157042, 39.950173 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156902, 39.95036 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157625, 39.94918 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157402, 39.949208 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157727, 39.949318 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15766, 39.949205 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157818, 39.949345 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157833, 39.94917 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157717, 39.949358 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15768, 39.949358 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157283, 39.947783 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157457, 39.949487 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157328, 39.949642 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157093, 39.949807 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157745, 39.949003 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157637, 39.949142 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15713, 39.949745 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157787, 39.949355 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157848, 39.949308 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157612, 39.949343 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157687, 39.949262 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 40TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203293, 39.950648 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130543, 39.972367 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130497649603896, 39.972492989740303 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151812, 39.949863 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151483, 39.949808 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15185, 39.949822 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156323, 39.959853 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17094, 39.965793 ] } }, +{ "type": "Feature", "properties": { "location": "906 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154857, 39.954535 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154895, 39.95435 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163366086579003, 39.916443594277197 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16472, 39.917348 ] } }, +{ "type": "Feature", "properties": { "location": "900 FITZWATER ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155827, 39.940608 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W COURTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155004368173394, 40.023845559405601 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154928211480396, 39.9543332574506 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182572, 39.956967 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 23RD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17943, 39.946442 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154828, 39.954435 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176053, 39.945973 ] } }, +{ "type": "Feature", "properties": { "location": "1700 GREEN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166077, 39.964472 ] } }, +{ "type": "Feature", "properties": { "location": "1599 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15049, 39.928928 ] } }, +{ "type": "Feature", "properties": { "location": "4300 PAUL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086152, 40.01175 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195502, 39.950978 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196987, 39.95114 ] } }, +{ "type": "Feature", "properties": { "location": "948 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087745643776898, 40.0330053170144 ] } }, +{ "type": "Feature", "properties": { "location": "535 N 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174355, 39.964753 ] } }, +{ "type": "Feature", "properties": { "location": "4300 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081552618224507, 40.005586410650999 ] } }, +{ "type": "Feature", "properties": { "location": "3400 JASPER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.10526, 39.998785 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226345, 40.027685 ] } }, +{ "type": "Feature", "properties": { "location": "1629 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170133, 39.942347 ] } }, +{ "type": "Feature", "properties": { "location": "6241 ADDISON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.247291245861305, 39.9551250172035 ] } }, +{ "type": "Feature", "properties": { "location": "165 N YEWDALL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228740486926995, 39.962868269035603 ] } }, +{ "type": "Feature", "properties": { "location": "901 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159472387509993, 39.9389385980814 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "600 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156978, 39.921437 ] } }, +{ "type": "Feature", "properties": { "location": "6000 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244052434540606, 39.951055001397997 ] } }, +{ "type": "Feature", "properties": { "location": "432 GASKILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150248, 39.942332 ] } }, +{ "type": "Feature", "properties": { "location": "5900 LUDLOW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.239277255042595, 39.9609851847447 ] } }, +{ "type": "Feature", "properties": { "location": "3600 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195908, 39.955568 ] } }, +{ "type": "Feature", "properties": { "location": "778 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180667, 39.969822 ] } }, +{ "type": "Feature", "properties": { "location": "500 W ELEANOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133553881958207, 40.025068254067101 ] } }, +{ "type": "Feature", "properties": { "location": "1513 SPRUCE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16749, 39.94695 ] } }, +{ "type": "Feature", "properties": { "location": "1513 SPRUCE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167, 39.946872 ] } }, +{ "type": "Feature", "properties": { "location": "2524 E BIRCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111048690063299, 39.983363840315803 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179743, 39.973905 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WOODLAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205287, 39.948533 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176992, 39.953753 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164810817529002, 39.984463434853303 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16361, 39.950242 ] } }, +{ "type": "Feature", "properties": { "location": "4900 OAKLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086041290102798, 40.021782902816597 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160753, 39.921212 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174972, 39.947162 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GLENDALE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.100941860470101, 40.0098003044438 ] } }, +{ "type": "Feature", "properties": { "location": "4401 PINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210832, 39.951653 ] } }, +{ "type": "Feature", "properties": { "location": "299 CARPENTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147753, 39.934827 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARLBOROUGH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13253, 39.970917 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 20TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169657158035093, 39.9696331656287 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163607, 39.949748 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163618, 39.949585 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09097, 40.007097 ] } }, +{ "type": "Feature", "properties": { "location": "5000 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218696402672805, 39.942650187961597 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153682, 39.959672 ] } }, +{ "type": "Feature", "properties": { "location": "1126 LEMON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1564394028522, 39.963951684719397 ] } }, +{ "type": "Feature", "properties": { "location": "3300 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190613627384295, 39.954951988594999 ] } }, +{ "type": "Feature", "properties": { "location": "200 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143712, 39.95393 ] } }, +{ "type": "Feature", "properties": { "location": "2200 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183753078188701, 39.925339060813002 ] } }, +{ "type": "Feature", "properties": { "location": "2020 W PASSYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180607206714598, 39.923483939147097 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "2444 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167012, 39.919135 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1663, 39.925272 ] } }, +{ "type": "Feature", "properties": { "location": "2200 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174583, 39.964873 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E ESTAUGH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.109757, 39.999975 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196838, 39.960303 ] } }, +{ "type": "Feature", "properties": { "location": "499 N 36TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19419, 39.96187 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S PERCY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163230871689194, 39.917798095209697 ] } }, +{ "type": "Feature", "properties": { "location": "5900 LENA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175626792864094, 40.0385294111992 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182655, 39.970682 ] } }, +{ "type": "Feature", "properties": { "location": "900 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154378, 39.960237 ] } }, +{ "type": "Feature", "properties": { "location": "460 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "633 EARP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155431254343199, 39.9317271667257 ] } }, +{ "type": "Feature", "properties": { "location": "1 VINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139657948941604, 39.955398262456796 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123073, 39.97378 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MONTROSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171432, 39.940232 ] } }, +{ "type": "Feature", "properties": { "location": "3029 D ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121815510946604, 39.994979468126303 ] } }, +{ "type": "Feature", "properties": { "location": "3900 POWELTON AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.20123, 39.959225 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077938, 40.022275 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17381, 39.955332 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17383, 39.955293 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167307, 39.91766 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163977, 39.950193 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WBLK WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151235, 40.002975 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175975, 39.965662 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167785, 39.955015 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S VOGDES ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225358525491004, 39.938899487313002 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167217, 39.9266 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 4TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151477, 39.931315 ] } }, +{ "type": "Feature", "properties": { "location": "3600 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195162, 39.955225 ] } }, +{ "type": "Feature", "properties": { "location": "4200 REGENT SQ", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207945741322604, 39.947544417172701 ] } }, +{ "type": "Feature", "properties": { "location": "1120 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161886411962897, 39.939083824858699 ] } }, +{ "type": "Feature", "properties": { "location": "800 S ROSEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167052, 39.940627 ] } }, +{ "type": "Feature", "properties": { "location": "500 COMLY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.100739258755794, 40.044824923177401 ] } }, +{ "type": "Feature", "properties": { "location": "505 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153585523062205, 39.932724344496599 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163495033727798, 39.950016761248001 ] } }, +{ "type": "Feature", "properties": { "location": "199 ROSELYN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122938193073097, 40.042310174034199 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132945, 39.974693 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180101008471098, 39.926165919914098 ] } }, +{ "type": "Feature", "properties": { "location": "1732 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171005, 39.947772 ] } }, +{ "type": "Feature", "properties": { "location": "716 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180591012422695, 39.943798386925103 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166428, 39.942365 ] } }, +{ "type": "Feature", "properties": { "location": "400 VOLLMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155474293425698, 39.916665681953397 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176828, 39.921413 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173427, 39.925025 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173397, 39.925033 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S FRONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146152, 39.931313 ] } }, +{ "type": "Feature", "properties": { "location": "6500 HAWTHORNE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.057733, 40.032155 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 25TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178095, 39.970082 ] } }, +{ "type": "Feature", "properties": { "location": "2500 BROWN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178331543988193, 39.970147694148501 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175748, 39.945552 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "1130 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157167, 39.934895 ] } }, +{ "type": "Feature", "properties": { "location": "5400 HAVERFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228484131347798, 39.966425971937099 ] } }, +{ "type": "Feature", "properties": { "location": "400 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1539, 39.926593 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153155, 39.942672 ] } }, +{ "type": "Feature", "properties": { "location": "300 MONROE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147978, 39.939512 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16542, 39.9354 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192175, 39.953627 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174141587478502, 40.000400853667699 ] } }, +{ "type": "Feature", "properties": { "location": "2012 W GIRARD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169647755679094, 39.972787767725201 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134035432868899, 40.0009991912655 ] } }, +{ "type": "Feature", "properties": { "location": "1619 S BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168407, 39.929932 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191737, 39.957552 ] } }, +{ "type": "Feature", "properties": { "location": "630 S 55TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232961012335394, 39.950420998562699 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143963, 39.955202 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139535, 39.956913 ] } }, +{ "type": "Feature", "properties": { "location": "3700 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197552, 39.955593 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16721, 39.940538 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163617, 39.946437 ] } }, +{ "type": "Feature", "properties": { "location": "137 W WASHINGTON SQ", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1532391851391, 39.947681546720503 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160962, 39.931788 ] } }, +{ "type": "Feature", "properties": { "location": "1399 W ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15178, 40.001378 ] } }, +{ "type": "Feature", "properties": { "location": "3500 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192755, 39.961332 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175513, 39.935283 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175132, 39.968473 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187989848690293, 39.9588431484175 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157593, 39.949485 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158012616150103, 39.9493470185635 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157482, 39.9497 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157707, 39.949325 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157592, 39.94933 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157708, 39.949325 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157723, 39.949223 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157572, 39.94928 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157773, 39.949022 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15784, 39.94922 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151983, 39.949968 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151617, 39.950803 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15786, 39.958455 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206238, 39.95704 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187633, 39.958913 ] } }, +{ "type": "Feature", "properties": { "location": "400 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154675, 39.923673 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17773, 39.941543 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179249308647201, 39.9670232703834 ] } }, +{ "type": "Feature", "properties": { "location": "2400 E CLEMENTINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107353244499294, 39.9869316963023 ] } }, +{ "type": "Feature", "properties": { "location": "1800 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172445, 39.946962 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128217, 39.967402 ] } }, +{ "type": "Feature", "properties": { "location": "799 TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180377, 39.97032 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15822, 39.938432 ] } }, +{ "type": "Feature", "properties": { "location": "3600 ELDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149413, 40.007668 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184284336223897, 39.974671167638398 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1606349386674, 39.981382342078 ] } }, +{ "type": "Feature", "properties": { "location": "900 ATWOOD RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.250572604527505, 39.976790646996498 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S COLORADO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175382, 39.923875 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 19TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171658819607202, 39.953047899862803 ] } }, +{ "type": "Feature", "properties": { "location": "1238 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163085, 39.94393 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PINE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174688, 39.946813 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152305, 39.950527 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163613, 39.950055 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151943, 39.949853 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151767, 39.94972 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151837, 39.949927 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151785, 39.949715 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152007, 39.949618 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152123, 39.949812 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1518, 39.949763 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152023, 39.949892 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151685, 39.949482 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15177, 39.949653 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161765, 39.951198 ] } }, +{ "type": "Feature", "properties": { "location": "871 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181569428095003, 39.972309809873899 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167227, 39.940555 ] } }, +{ "type": "Feature", "properties": { "location": "221 WOLF ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151165, 39.919422 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15661, 39.958028 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "200 EARP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148171482543006, 39.930904180917601 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151187, 39.949958 ] } }, +{ "type": "Feature", "properties": { "location": "1 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134858, 39.971745 ] } }, +{ "type": "Feature", "properties": { "location": "1 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13482, 39.971752 ] } }, +{ "type": "Feature", "properties": { "location": "1 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134733, 39.971722 ] } }, +{ "type": "Feature", "properties": { "location": "620 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153078, 39.942473 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153050058034395, 39.942461645218501 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073758, 40.043343 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169763, 39.943357 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S CLARION ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166232, 39.932855 ] } }, +{ "type": "Feature", "properties": { "location": "1501 OGDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162330121276298, 39.969907045523101 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N BROAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144055, 40.041348 ] } }, +{ "type": "Feature", "properties": { "location": "4800 UMBRIA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233248448445494, 40.033163749223597 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153408, 39.92891 ] } }, +{ "type": "Feature", "properties": { "location": "243 HARVEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181664058564607, 40.035302267256903 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161057, 39.959532 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163035, 39.931128 ] } }, +{ "type": "Feature", "properties": { "location": "1101 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163230908526003, 39.931066587395897 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17027, 39.937292 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170228, 39.937362 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170312, 39.93737 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W SCHOOL HOUSE LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18672, 40.023725 ] } }, +{ "type": "Feature", "properties": { "location": "2500 SWAIN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178983278460194, 39.969596363820699 ] } }, +{ "type": "Feature", "properties": { "location": "500 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144203, 39.961452 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180446423123897, 39.919995997404897 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180182681252006, 39.921247575783099 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17049, 39.949673 ] } }, +{ "type": "Feature", "properties": { "location": "400 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143342762125599, 39.969984217662599 ] } }, +{ "type": "Feature", "properties": { "location": "442 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131112148426098, 39.974473839710697 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187703, 39.958638 ] } }, +{ "type": "Feature", "properties": { "location": "503 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "900 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162704884816705, 39.918357899125603 ] } }, +{ "type": "Feature", "properties": { "location": "300 S CAMAC ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16193, 39.94638 ] } }, +{ "type": "Feature", "properties": { "location": "900 N RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146298, 39.968063 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15685, 39.921378 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156675551221397, 39.922466295618399 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 67TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232192148334704, 39.919809089248403 ] } }, +{ "type": "Feature", "properties": { "location": "1200 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161303, 39.948893 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192467, 39.951307 ] } }, +{ "type": "Feature", "properties": { "location": "3401 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193043, 39.956925 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156803, 39.960835 ] } }, +{ "type": "Feature", "properties": { "location": "600 QUEEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15351, 39.938355 ] } }, +{ "type": "Feature", "properties": { "location": "400 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147887, 39.949443 ] } }, +{ "type": "Feature", "properties": { "location": "2000 OAKFORD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178154846917295, 39.936649105467403 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180101008471098, 39.926165919914098 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168032, 39.943613 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150975, 39.949793 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14061, 39.96408 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175093, 39.953093 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 21ST ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175028, 39.953487 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 7TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153867, 39.942147 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182637, 39.970638 ] } }, +{ "type": "Feature", "properties": { "location": "2100 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178263, 39.945537 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157547, 39.923278 ] } }, +{ "type": "Feature", "properties": { "location": "3500 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125574961157895, 40.003393885617598 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S ALDER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163127, 39.92483 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S ALDER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163197, 39.924795 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152483, 39.950837 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151895, 39.949597 ] } }, +{ "type": "Feature", "properties": { "location": "600 E ALLEGHENY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.118900149565803, 39.9972008050445 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 24TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179125, 39.952445 ] } }, +{ "type": "Feature", "properties": { "location": "200 RITTENHOUSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182512, 40.031825 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151923, 39.949333 ] } }, +{ "type": "Feature", "properties": { "location": "2236 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "1300 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164703, 39.945662 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 38TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198345, 39.954235 ] } }, +{ "type": "Feature", "properties": { "location": "899 N RINGGOLD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176843, 39.971103 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOUNTAIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158532, 39.92834 ] } }, +{ "type": "Feature", "properties": { "location": "2700 E ALLEGHENY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102358378961696, 39.984016934160898 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177192428355994, 40.003388119706003 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161095, 39.937118 ] } }, +{ "type": "Feature", "properties": { "location": "500 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15257, 39.938715 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162272, 39.941385 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161305, 39.937063 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153742, 39.936437 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16108, 39.936987 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161197, 39.936977 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153738, 39.936425 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160843, 39.936953 ] } }, +{ "type": "Feature", "properties": { "location": "2425 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180805, 39.94922 ] } }, +{ "type": "Feature", "properties": { "location": "1000 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138818, 39.966392 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MEMPHIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130160727576794, 39.974878946214901 ] } }, +{ "type": "Feature", "properties": { "location": "800 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160687, 39.92564 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176962, 39.921417 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151968, 39.929118 ] } }, +{ "type": "Feature", "properties": { "location": "900 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156918, 39.945488 ] } }, +{ "type": "Feature", "properties": { "location": "5637 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235739870770203, 39.952131925610402 ] } }, +{ "type": "Feature", "properties": { "location": "800 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160022, 39.921852 ] } }, +{ "type": "Feature", "properties": { "location": "4500 RITCHIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225825, 40.029028 ] } }, +{ "type": "Feature", "properties": { "location": "300 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148067, 39.944362 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184042, 39.952292 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N CLEVELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1637173499618, 39.984545012623798 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 6TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15205, 39.94343 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144098, 40.042412 ] } }, +{ "type": "Feature", "properties": { "location": "6100 ARCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.242742457301702, 39.963822645039002 ] } }, +{ "type": "Feature", "properties": { "location": "1000 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16161, 39.92966 ] } }, +{ "type": "Feature", "properties": { "location": "1725 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169885527033102, 39.950038553695101 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140622, 39.964058 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140623, 39.964065 ] } }, +{ "type": "Feature", "properties": { "location": "3800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199508, 39.954518 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONROE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146477, 39.93941 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137668, 39.96814 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137647, 39.968087 ] } }, +{ "type": "Feature", "properties": { "location": "2100 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174444525833707, 39.962823691897597 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1773406216886, 39.953649911964597 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154983, 39.929497 ] } }, +{ "type": "Feature", "properties": { "location": "2100 WALNUT ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175762, 39.95083 ] } }, +{ "type": "Feature", "properties": { "location": "4800 C ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117884712822203, 40.022726951467 ] } }, +{ "type": "Feature", "properties": { "location": "500 ATWOOD RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.250342892848295, 39.971246940569898 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151567, 39.92076 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CLEARFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115397, 39.99483 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122843, 39.974998 ] } }, +{ "type": "Feature", "properties": { "location": "168 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227362413769299, 40.0297860559456 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 3RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147002, 39.94394 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 33RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190565, 39.951107 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192278, 39.952005 ] } }, +{ "type": "Feature", "properties": { "location": "1000 AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140798, 39.967558 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128262, 39.967203 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151178, 40.003025 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15947, 39.924275 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09084, 40.00752 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155387, 39.98453 ] } }, +{ "type": "Feature", "properties": { "location": "400 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153025, 39.92474 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170508, 39.96562 ] } }, +{ "type": "Feature", "properties": { "location": "3700 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196797, 39.960085 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159777, 39.923042 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175153, 39.922583 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175107, 39.92252 ] } }, +{ "type": "Feature", "properties": { "location": "2500 WEBB ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118718964919196, 39.976107690950499 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 15TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167277, 39.943428 ] } }, +{ "type": "Feature", "properties": { "location": "515 BUDD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204713808159795, 39.962042074735798 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173845, 39.935472 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15752, 39.926057 ] } }, +{ "type": "Feature", "properties": { "location": "1729 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "10772 HEATHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.029315648378798, 40.113039384847497 ] } }, +{ "type": "Feature", "properties": { "location": "3813 MANAYUNK AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211109493347493, 40.020307617984002 ] } }, +{ "type": "Feature", "properties": { "location": "400 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15108, 39.933295 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179587780004894, 39.971431611038 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180946166820704, 39.968480251838898 ] } }, +{ "type": "Feature", "properties": { "location": "9117 DIPLOMAT PL", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.038966086015805, 40.078741158815397 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MARTHA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131527114342404, 39.980309789335699 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 12TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160291973461298, 39.9500184986885 ] } }, +{ "type": "Feature", "properties": { "location": "1000 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162053, 39.930908 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157968, 39.924958 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHESTNUT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224778, 39.958382 ] } }, +{ "type": "Feature", "properties": { "location": "4200 WALNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208337, 39.95498 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15999, 39.921923 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 66TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.253618728623493, 39.9796800540798 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175917, 39.953252 ] } }, +{ "type": "Feature", "properties": { "location": "400 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156293, 39.916377 ] } }, +{ "type": "Feature", "properties": { "location": "326 N 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153739041251598, 39.9578145194535 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157812, 39.958528 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150208, 39.929338 ] } }, +{ "type": "Feature", "properties": { "location": "701 W BUTLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140456790540597, 40.009491413250203 ] } }, +{ "type": "Feature", "properties": { "location": "1608 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169108, 39.944463 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 7TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1523, 39.951108 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152023, 39.924555 ] } }, +{ "type": "Feature", "properties": { "location": "200 CATHARINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146989274799196, 39.937709386361703 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176335, 39.92389 ] } }, +{ "type": "Feature", "properties": { "location": "500 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145815, 39.961198 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143407, 40.034928 ] } }, +{ "type": "Feature", "properties": { "location": "5643 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234729604511102, 39.977733102029603 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SPRUCE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167958, 39.94724 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114248, 39.999312 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16058, 39.950582 ] } }, +{ "type": "Feature", "properties": { "location": "700 DELANCEY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154788, 39.945043 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17621, 39.971005 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 26TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179397, 39.971447 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BACH PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165792, 39.947465 ] } }, +{ "type": "Feature", "properties": { "location": "4700 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145633742613498, 40.024645912083002 ] } }, +{ "type": "Feature", "properties": { "location": "8133 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.024752233008499, 40.042637592597998 ] } }, +{ "type": "Feature", "properties": { "location": "8133 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.024752233008499, 40.042637592597998 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 20TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173577, 39.952047 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156803, 39.92883 ] } }, +{ "type": "Feature", "properties": { "location": "1399 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170912, 39.917447 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155188, 39.929187 ] } }, +{ "type": "Feature", "properties": { "location": "1 SALFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.240353, 39.960395 ] } }, +{ "type": "Feature", "properties": { "location": "3300 F ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117011306597504, 39.998810500751901 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162670468784597, 39.928091205791802 ] } }, +{ "type": "Feature", "properties": { "location": "600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157292, 39.92022 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157405, 39.91907 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155195, 39.95964 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1628, 39.964072 ] } }, +{ "type": "Feature", "properties": { "location": "1379 S 46TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208576257920498, 39.9434273943573 ] } }, +{ "type": "Feature", "properties": { "location": "200 W SPENCER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124151287526601, 40.043486914662999 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137647, 39.968093 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187989848690293, 39.9588431484175 ] } }, +{ "type": "Feature", "properties": { "location": "4400 LUDLOW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211143, 39.957543 ] } }, +{ "type": "Feature", "properties": { "location": "4400 LUDLOW ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211222, 39.957577 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 26TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182967, 39.946585 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086437, 40.013933 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157205, 39.92016 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15722, 39.920207 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157298450452998, 39.919587715279 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FAIRHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156532, 39.920253 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S MOLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172972, 39.922195 ] } }, +{ "type": "Feature", "properties": { "location": "2300 SNYDER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184668904995803, 39.926308650352198 ] } }, +{ "type": "Feature", "properties": { "location": "4300 LOCUST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209172, 39.953718 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17504, 39.947105 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175012, 39.947147 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174945, 39.947128 ] } }, +{ "type": "Feature", "properties": { "location": "3500 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125574961157895, 40.003393885617598 ] } }, +{ "type": "Feature", "properties": { "location": "3400 GERMANTOWN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149927, 40.005662 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157398, 39.926543 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156605719917906, 39.926429510261499 ] } }, +{ "type": "Feature", "properties": { "location": "2517 S 15TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172658, 39.919157 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150412, 39.919213 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOMRATH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089812, 40.008645 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16363, 39.946475 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16032, 39.94206 ] } }, +{ "type": "Feature", "properties": { "location": "1600 OREGON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176135, 39.917332 ] } }, +{ "type": "Feature", "properties": { "location": "3900 RENO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201327694109494, 39.968161633469997 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157072792076093, 39.930879069225902 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157072792076093, 39.930879069225902 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090803, 40.006892 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192653, 39.951098 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19237, 39.951293 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175007, 39.947135 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167878, 39.940573 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16974, 39.943302 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161517, 39.929608 ] } }, +{ "type": "Feature", "properties": { "location": "900 W CHAMPLOST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135855, 40.04344 ] } }, +{ "type": "Feature", "properties": { "location": "200 JAMESTOWN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216545, 40.024898 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143183900629197, 39.961875536640697 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162457752653694, 39.949902437251701 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086363, 40.015152 ] } }, +{ "type": "Feature", "properties": { "location": "2400 ASPEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178207, 39.969013 ] } }, +{ "type": "Feature", "properties": { "location": "2500 ASPEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179117904387297, 39.968987190782002 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128552110984401, 39.971098778936202 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164252, 39.94393 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157475, 39.923185 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157523, 39.923275 ] } }, +{ "type": "Feature", "properties": { "location": "924 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169707912462101, 39.939706586927102 ] } }, +{ "type": "Feature", "properties": { "location": "400 SOMERSET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139647, 39.993775 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158805, 39.920728 ] } }, +{ "type": "Feature", "properties": { "location": "900 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156852, 39.945522 ] } }, +{ "type": "Feature", "properties": { "location": "1900 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17372, 39.944745 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15778, 39.923278 ] } }, +{ "type": "Feature", "properties": { "location": "5700 HUNTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "100 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1509, 39.918092 ] } }, +{ "type": "Feature", "properties": { "location": "800 E ATLANTIC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114028365336196, 40.002030459345001 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15128, 40.003057 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132997, 39.968925 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "300 S FRAZIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234898, 39.954965 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156892, 39.928137 ] } }, +{ "type": "Feature", "properties": { "location": "1631 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155505078731494, 39.9277545765733 ] } }, +{ "type": "Feature", "properties": { "location": "519 MANTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153412, 39.933122 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15937, 39.976187 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156241458550298, 39.928063370512 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17004, 39.960595 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158542, 39.958523 ] } }, +{ "type": "Feature", "properties": { "location": "3800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199045, 39.956075 ] } }, +{ "type": "Feature", "properties": { "location": "500 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145492, 39.96915 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOYAMENSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15083, 39.927497 ] } }, +{ "type": "Feature", "properties": { "location": "3100 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187253, 39.961927 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189562, 39.954782 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 46TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213115, 39.958398 ] } }, +{ "type": "Feature", "properties": { "location": "3700 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.196138, 39.959773 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168535, 39.944467 ] } }, +{ "type": "Feature", "properties": { "location": "700 EARP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15759, 39.93215 ] } }, +{ "type": "Feature", "properties": { "location": "700 EARP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157587, 39.93204 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 36TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19487, 39.953918 ] } }, +{ "type": "Feature", "properties": { "location": "600 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15263, 39.941608 ] } }, +{ "type": "Feature", "properties": { "location": "1608 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169348, 39.943228 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16386, 39.945018 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1595178720913, 39.924086730455699 ] } }, +{ "type": "Feature", "properties": { "location": "7114 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238803325954194, 39.914886643081502 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157503, 39.957363 ] } }, +{ "type": "Feature", "properties": { "location": "126 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14677, 39.933078 ] } }, +{ "type": "Feature", "properties": { "location": "600 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15507, 39.937333 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104865, 39.996907 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196897, 39.960775 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087088, 40.015677 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WALLACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15922, 39.965018 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WALLACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159192, 39.964952 ] } }, +{ "type": "Feature", "properties": { "location": "500 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154253, 39.92703 ] } }, +{ "type": "Feature", "properties": { "location": "503 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "503 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "1618 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "263 S 55TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231866490415001, 39.9556343916421 ] } }, +{ "type": "Feature", "properties": { "location": "800 PENNOCK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181887, 39.970587 ] } }, +{ "type": "Feature", "properties": { "location": "2600 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181267, 39.970537 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19231, 39.951522 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173217, 39.92601 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151892, 39.949637 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156178461314695, 39.957776657981 ] } }, +{ "type": "Feature", "properties": { "location": "51 E COULTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169779097302097, 40.033949939361101 ] } }, +{ "type": "Feature", "properties": { "location": "1 E COULTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169779097302097, 40.033949939361101 ] } }, +{ "type": "Feature", "properties": { "location": "709 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158408, 39.923737 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171998, 39.939727 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15649, 39.958953 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1553, 39.928835 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166167, 39.92305 ] } }, +{ "type": "Feature", "properties": { "location": "605 PALLAS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.209875532237703, 39.962951220127302 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158433, 39.943967 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132598, 40.027268 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14958, 39.940018 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156473, 39.952918 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W FLORA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18491, 39.975148 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17341, 39.924997 ] } }, +{ "type": "Feature", "properties": { "location": "38 N HOBART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237852789176301, 39.962827063413201 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1733, 39.925618 ] } }, +{ "type": "Feature", "properties": { "location": "600 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157982499266893, 39.917747840649596 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090842, 40.00693 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2226708935912, 39.9511381429949 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224545, 40.02807 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188375, 39.959232 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15466, 39.954312 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177972, 39.940993 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CHESTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207372, 39.948445 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155458, 39.984523 ] } }, +{ "type": "Feature", "properties": { "location": "100 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144862, 39.937302 ] } }, +{ "type": "Feature", "properties": { "location": "1900 W HILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161492382431803, 40.003336631846302 ] } }, +{ "type": "Feature", "properties": { "location": "2713 E ANN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108257137502704, 39.980934674368903 ] } }, +{ "type": "Feature", "properties": { "location": "1125 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156853, 39.935283 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156987, 39.935287 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164658, 39.922453 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17847, 39.921752 ] } }, +{ "type": "Feature", "properties": { "location": "4000 L ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102622, 40.009105 ] } }, +{ "type": "Feature", "properties": { "location": "400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148813, 39.944973 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17334, 39.948435 ] } }, +{ "type": "Feature", "properties": { "location": "500 SPRUCE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150102, 39.945177 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163565, 39.946718 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154327, 39.940575 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164723, 39.92252 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "1413 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169018329613905, 39.929306198693098 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161492, 39.929548 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ARGYLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111819206454001, 39.998691024209499 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153663, 39.959808 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168108, 39.939798 ] } }, +{ "type": "Feature", "properties": { "location": "145 GAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223397313590098, 40.027268539574699 ] } }, +{ "type": "Feature", "properties": { "location": "4310 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221836951648896, 40.0255767713804 ] } }, +{ "type": "Feature", "properties": { "location": "2810 S 9TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163733864223403, 39.9138306480843 ] } }, +{ "type": "Feature", "properties": { "location": "4800 SANSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218452858667902, 39.956860448694798 ] } }, +{ "type": "Feature", "properties": { "location": "400 E FLORA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129688896673102, 39.970996044170803 ] } }, +{ "type": "Feature", "properties": { "location": "3600 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195908, 39.955668 ] } }, +{ "type": "Feature", "properties": { "location": "3701 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195975, 39.95726 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 54TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231397, 39.957697 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W WESTMORELAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15123, 40.00305 ] } }, +{ "type": "Feature", "properties": { "location": "300 S WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164733, 39.94669 ] } }, +{ "type": "Feature", "properties": { "location": "5101 WEBSTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226290882280196, 39.9483659246632 ] } }, +{ "type": "Feature", "properties": { "location": "130 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148776805010996, 39.925822010948302 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22548, 39.972367 ] } }, +{ "type": "Feature", "properties": { "location": "5154 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2254, 39.972368 ] } }, +{ "type": "Feature", "properties": { "location": "5000 OSAGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22251, 39.952287 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "212 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133223, 39.969245 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168982, 39.951205 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170687, 39.952613 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171323, 39.952425 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DURFOR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165088, 39.920743 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086242, 40.013763 ] } }, +{ "type": "Feature", "properties": { "location": "1167 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160328, 39.935052 ] } }, +{ "type": "Feature", "properties": { "location": "2100 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17696, 39.945688 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179214045664594, 39.942299776753799 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177345, 39.953682 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166473, 39.921867 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16839, 39.943793 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S CARLISLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168922, 39.931857 ] } }, +{ "type": "Feature", "properties": { "location": "3200 W YORK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1846600827744, 39.9931254551122 ] } }, +{ "type": "Feature", "properties": { "location": "6832 GUYER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231966479437006, 39.916001945501797 ] } }, +{ "type": "Feature", "properties": { "location": "700 S JESSUP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161021210395504, 39.9417047506318 ] } }, +{ "type": "Feature", "properties": { "location": "500 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155242, 39.92876 ] } }, +{ "type": "Feature", "properties": { "location": "4400 PECHIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218035823143296, 40.031154522330503 ] } }, +{ "type": "Feature", "properties": { "location": "4900 HAZEL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221764141535701, 39.950634876193497 ] } }, +{ "type": "Feature", "properties": { "location": "3230 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "3230 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "3230 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "3230 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178812787625901, 39.944159983182303 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176640719607704, 39.948468500109897 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181013, 39.971613 ] } }, +{ "type": "Feature", "properties": { "location": "2800 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182682852272904, 39.971818113177903 ] } }, +{ "type": "Feature", "properties": { "location": "1912 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152989635564197, 39.924471035427104 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192585, 39.9569 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224655460147702, 39.925107035872202 ] } }, +{ "type": "Feature", "properties": { "location": "310 N 33RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189501427014207, 39.9606704625037 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221375, 40.029927 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167745, 39.918692 ] } }, +{ "type": "Feature", "properties": { "location": "731 KATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154794167967495, 39.941879665199998 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166812, 39.937188 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153862, 40.042813 ] } }, +{ "type": "Feature", "properties": { "location": "5500 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.231142311591697, 39.970843096645602 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214063, 40.023145 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214328751125194, 40.023652320031097 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2139, 40.023308 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W TIOGA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152345046845497, 40.006225661140199 ] } }, +{ "type": "Feature", "properties": { "location": "1315 S REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153625042229507, 39.931686964491902 ] } }, +{ "type": "Feature", "properties": { "location": "330 W ALBANUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130279795707693, 40.0263573385581 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146652, 39.936388 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S ALDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160588, 39.936295 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "3100 POTTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114924971536098, 39.996205261446804 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154425, 39.94038 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188472, 39.958977 ] } }, +{ "type": "Feature", "properties": { "location": "1300 OXFORD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157862, 39.977433 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155742, 39.928928 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17119, 39.940115 ] } }, +{ "type": "Feature", "properties": { "location": "1100 GERRITT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164317, 39.931812 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154163, 39.918568 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176047, 39.941658 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164742, 39.922442 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164665, 39.922925 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164602, 39.923332 ] } }, +{ "type": "Feature", "properties": { "location": "1900 NORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169875, 39.966858 ] } }, +{ "type": "Feature", "properties": { "location": "500 S SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161348, 39.94339 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17635, 39.923872 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166845, 39.927063 ] } }, +{ "type": "Feature", "properties": { "location": "40 SANSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143145851268201, 39.947320287212001 ] } }, +{ "type": "Feature", "properties": { "location": "500 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150997, 39.941022 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BALTIMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237626211912399, 39.946398546611903 ] } }, +{ "type": "Feature", "properties": { "location": "5115 SHELDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161376441088805, 40.0342012052459 ] } }, +{ "type": "Feature", "properties": { "location": "260 SUMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205113441272601, 40.0190521319849 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175308, 39.94334 ] } }, +{ "type": "Feature", "properties": { "location": "718 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175322, 39.94355 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17537, 39.943448 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164727, 39.922478 ] } }, +{ "type": "Feature", "properties": { "location": "1900 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173835, 39.945225 ] } }, +{ "type": "Feature", "properties": { "location": "5700 CRITTENDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158264127280802, 40.052915711370801 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15679, 39.960768 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156757, 39.960925 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174017, 39.934947 ] } }, +{ "type": "Feature", "properties": { "location": "4600 PINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215361932764694, 39.952179331038899 ] } }, +{ "type": "Feature", "properties": { "location": "3900 PINE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202227691091494, 39.950550554587998 ] } }, +{ "type": "Feature", "properties": { "location": "900 S WATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144268, 39.93524 ] } }, +{ "type": "Feature", "properties": { "location": "799 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181252, 39.970052 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077660288847596, 40.021977457426999 ] } }, +{ "type": "Feature", "properties": { "location": "247 HARVEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181664058564607, 40.035302267256903 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159987, 39.945935 ] } }, +{ "type": "Feature", "properties": { "location": "1312 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169192, 39.919218 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091062, 40.007125 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1826912513027, 39.9418637544034 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1608, 39.95346 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N ALDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235642598098806, 39.9740325557296 ] } }, +{ "type": "Feature", "properties": { "location": "5100 HAZEL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225712909647299, 39.951124241254298 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167671901267198, 39.971370296991502 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 22ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167865757162005, 39.994295013418302 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142362, 40.039665 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166985, 39.92661 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154268, 39.926978 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154287, 39.92703 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154247, 39.927002 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154197, 39.927062 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173263, 39.925757 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173252, 39.925835 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167097, 39.919068 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 42ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20713, 39.94974 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156228, 39.960113 ] } }, +{ "type": "Feature", "properties": { "location": "500 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157592, 39.917738 ] } }, +{ "type": "Feature", "properties": { "location": "1925 S 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154654680806601, 39.924289047974 ] } }, +{ "type": "Feature", "properties": { "location": "400 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153905932203699, 39.9240089061663 ] } }, +{ "type": "Feature", "properties": { "location": "904 LOCUST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156732, 39.947142 ] } }, +{ "type": "Feature", "properties": { "location": "900 LOCUST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156598, 39.947102 ] } }, +{ "type": "Feature", "properties": { "location": "800 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154818, 39.948607 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154793, 39.945722 ] } }, +{ "type": "Feature", "properties": { "location": "800 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15485, 39.94842 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161815, 39.964657 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 31ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187695714913104, 39.964657494955297 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150062, 39.937655 ] } }, +{ "type": "Feature", "properties": { "location": "200 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146422, 39.937445 ] } }, +{ "type": "Feature", "properties": { "location": "400 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150058, 39.937897 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191043, 39.960845 ] } }, +{ "type": "Feature", "properties": { "location": "200 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14194, 39.963172 ] } }, +{ "type": "Feature", "properties": { "location": "100 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176182, 39.951965 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 23RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178052, 39.95335 ] } }, +{ "type": "Feature", "properties": { "location": "200 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142008, 39.963393 ] } }, +{ "type": "Feature", "properties": { "location": "900 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15662, 39.947572 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14124, 39.961878 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155695, 39.925902 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1637, 39.934732 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162327, 39.948267 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160166865287906, 39.924822582971203 ] } }, +{ "type": "Feature", "properties": { "location": "599 N LAWRENCE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145632, 39.962002 ] } }, +{ "type": "Feature", "properties": { "location": "1232 S 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165267, 39.934398 ] } }, +{ "type": "Feature", "properties": { "location": "1232 S 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165278, 39.934462 ] } }, +{ "type": "Feature", "properties": { "location": "1232 S 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165242, 39.934363 ] } }, +{ "type": "Feature", "properties": { "location": "400 S HUTCHINSON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157498, 39.944153 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191665, 39.957478 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191672, 39.957497 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160353, 39.951335 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160348, 39.951002 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173288, 39.925758 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196938, 39.960867 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLARION ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164198, 39.943242 ] } }, +{ "type": "Feature", "properties": { "location": "800 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160407, 39.920638 ] } }, +{ "type": "Feature", "properties": { "location": "2700 JUDSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170024064998202, 39.996755692569202 ] } }, +{ "type": "Feature", "properties": { "location": "500 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164355, 39.94379 ] } }, +{ "type": "Feature", "properties": { "location": "9373 NEIL RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.043093581883198, 40.085036880182798 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182727, 39.957118 ] } }, +{ "type": "Feature", "properties": { "location": "200 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142242, 39.962288 ] } }, +{ "type": "Feature", "properties": { "location": "4200 SANSOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204947, 39.955358 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MONTGOMERY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156435, 39.979928 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159535, 39.975228 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129018, 39.97204 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CECIL B MOORE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164293, 39.979503 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177453, 39.951185 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177303, 39.951237 ] } }, +{ "type": "Feature", "properties": { "location": "5615 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234729604511102, 39.977733102029603 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILLARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "2200 SUMMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175567, 39.95898 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E HILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.112121864087101, 39.996197398624801 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N LAWRENCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144094055181597, 39.969940355355099 ] } }, +{ "type": "Feature", "properties": { "location": "600 E PASSYUNK AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150707, 39.94121 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171353, 39.939655 ] } }, +{ "type": "Feature", "properties": { "location": "1500 OREGON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172997, 39.917167 ] } }, +{ "type": "Feature", "properties": { "location": "600 PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153182, 39.963573 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161007, 39.953395 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160687, 39.953405 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160023, 39.953427 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15992, 39.95344 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156347, 39.959847 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S SHERIDAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159155792147104, 39.9158995132168 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156928, 39.958255 ] } }, +{ "type": "Feature", "properties": { "location": "1516 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151965, 39.929152 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152017, 39.928957 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152122, 39.928898 ] } }, +{ "type": "Feature", "properties": { "location": "2200 ALMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124265, 39.9751 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125414825127393, 40.042864931956601 ] } }, +{ "type": "Feature", "properties": { "location": "600 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156455, 39.923945 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16464, 39.922882 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180978316132993, 39.944533441380003 ] } }, +{ "type": "Feature", "properties": { "location": "625 KATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153228, 39.941722 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167005, 39.96527 ] } }, +{ "type": "Feature", "properties": { "location": "600 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156865, 39.923522 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159272163523397, 39.974541466084702 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197213, 39.951023 ] } }, +{ "type": "Feature", "properties": { "location": "3733 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197203, 39.950995 ] } }, +{ "type": "Feature", "properties": { "location": "3733 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19724, 39.951153 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157668, 39.949218 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157703, 39.949363 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157453, 39.98462 ] } }, +{ "type": "Feature", "properties": { "location": "1626 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170003, 39.943308 ] } }, +{ "type": "Feature", "properties": { "location": "640 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156241458550298, 39.928063370512 ] } }, +{ "type": "Feature", "properties": { "location": "1900 SPRUCE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174367, 39.948188 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153795, 39.929045 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154897, 39.929542 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 10TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158138, 39.944738 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158483, 39.958495 ] } }, +{ "type": "Feature", "properties": { "location": "1500 E LUZERNE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.098638, 40.007062 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167257, 39.954242 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163895, 39.945035 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172070302461805, 39.936258747644899 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151666914140307, 39.920563788661497 ] } }, +{ "type": "Feature", "properties": { "location": "1551 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1727, 39.926003 ] } }, +{ "type": "Feature", "properties": { "location": "800 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160548, 39.919342 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176647, 39.922632 ] } }, +{ "type": "Feature", "properties": { "location": "20 JACKSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147069934288098, 39.920189613786697 ] } }, +{ "type": "Feature", "properties": { "location": "200 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150552, 39.923167 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155698, 39.925842 ] } }, +{ "type": "Feature", "properties": { "location": "300 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15245, 39.923405 ] } }, +{ "type": "Feature", "properties": { "location": "201 N SIMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.249132547219006, 39.966953620790399 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169595, 39.94705 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192393, 39.958647 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176895, 39.921422 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176817, 39.921657 ] } }, +{ "type": "Feature", "properties": { "location": "3401 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192943, 39.957028 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177358, 39.953577 ] } }, +{ "type": "Feature", "properties": { "location": "800 CARPENTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156628, 39.937212 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "2700 MASTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179967721060294, 39.977212959857503 ] } }, +{ "type": "Feature", "properties": { "location": "1100 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16521, 39.927583 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164652, 39.917337 ] } }, +{ "type": "Feature", "properties": { "location": "3015 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145496958010696, 39.998244314620003 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156507, 39.959828 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 51ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220917381191001, 39.944000797589297 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N WATTS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155343, 39.986472 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164278, 39.931027 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176818, 39.953472 ] } }, +{ "type": "Feature", "properties": { "location": "200 VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17508, 39.958988 ] } }, +{ "type": "Feature", "properties": { "location": "2200 ALMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124263, 39.975107 ] } }, +{ "type": "Feature", "properties": { "location": "200 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142223, 39.962122 ] } }, +{ "type": "Feature", "properties": { "location": "1300 ARCH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160975, 39.954195 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175305, 39.945388 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 10TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16363, 39.91979 ] } }, +{ "type": "Feature", "properties": { "location": "924 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169707912462101, 39.939706586927102 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151845, 39.950133 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.08648, 40.014012 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152068, 39.949968 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192022, 39.955473 ] } }, +{ "type": "Feature", "properties": { "location": "2400 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176508032988593, 39.971041543558997 ] } }, +{ "type": "Feature", "properties": { "location": "1223 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159198, 39.95841 ] } }, +{ "type": "Feature", "properties": { "location": "1600 LATIMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169237, 39.948747 ] } }, +{ "type": "Feature", "properties": { "location": "2611 S DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223262325963105, 39.923931877858998 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145452, 39.968222 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156063, 39.921323 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13434, 39.972435 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15471, 39.925707 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154687, 39.925803 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154715, 39.925753 ] } }, +{ "type": "Feature", "properties": { "location": "700 DUDLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159353, 39.924727 ] } }, +{ "type": "Feature", "properties": { "location": "700 DUDLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159352, 39.924798 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170845, 39.938122 ] } }, +{ "type": "Feature", "properties": { "location": "400 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.216944907253193, 40.031313106409698 ] } }, +{ "type": "Feature", "properties": { "location": "4217 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207165, 39.956233 ] } }, +{ "type": "Feature", "properties": { "location": "2300 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184071432821, 39.931688877464403 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182813, 39.957252 ] } }, +{ "type": "Feature", "properties": { "location": "324 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152917232308994, 39.917092675955402 ] } }, +{ "type": "Feature", "properties": { "location": "919 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156465, 39.937787 ] } }, +{ "type": "Feature", "properties": { "location": "1 N PRESTON ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203432, 39.95809 ] } }, +{ "type": "Feature", "properties": { "location": "1800 W OLNEY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152112, 40.039277 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205622, 39.94823 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158825, 39.950405 ] } }, +{ "type": "Feature", "properties": { "location": "300 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152917232308994, 39.917092675955402 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "939 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144725, 39.967062 ] } }, +{ "type": "Feature", "properties": { "location": "100 SALAIGNAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213629172673393, 40.019985148646299 ] } }, +{ "type": "Feature", "properties": { "location": "1727 S 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155682349279303, 39.926934017745701 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155745, 39.959555 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179427, 39.97145 ] } }, +{ "type": "Feature", "properties": { "location": "4000 O ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.096597, 40.00779 ] } }, +{ "type": "Feature", "properties": { "location": "900 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1543, 39.957547 ] } }, +{ "type": "Feature", "properties": { "location": "1200 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163405, 39.942515 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159423, 39.931838 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189553, 39.954858 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150236495551795, 39.920375481089103 ] } }, +{ "type": "Feature", "properties": { "location": "100 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148899734855902, 39.920424418815401 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1733, 39.925522 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173327, 39.925517 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 64TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233097, 39.926525 ] } }, +{ "type": "Feature", "properties": { "location": "6200 LIMEKILN PIKE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152187691021396, 40.049150492627597 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16859, 39.92926 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16533, 39.919405 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S HICKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173414186500395, 39.9177970122659 ] } }, +{ "type": "Feature", "properties": { "location": "2653 S HICKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173414186500395, 39.9177970122659 ] } }, +{ "type": "Feature", "properties": { "location": "700 AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14194, 39.963238 ] } }, +{ "type": "Feature", "properties": { "location": "800 ARAMINGO AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122983, 39.973788 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176597, 39.922758 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173193, 39.925885 ] } }, +{ "type": "Feature", "properties": { "location": "112 RIPKA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229363, 40.030448 ] } }, +{ "type": "Feature", "properties": { "location": "4600 UMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.229494934897104, 40.029962610522901 ] } }, +{ "type": "Feature", "properties": { "location": "300 THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131858, 39.971523 ] } }, +{ "type": "Feature", "properties": { "location": "5500 LANGDON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0941394753075, 40.032429998734102 ] } }, +{ "type": "Feature", "properties": { "location": "3600 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195578, 39.95566 ] } }, +{ "type": "Feature", "properties": { "location": "500 SIGEL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15598, 39.925562 ] } }, +{ "type": "Feature", "properties": { "location": "3817 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197858, 39.960052 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177322, 39.934162 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157267, 39.962467 ] } }, +{ "type": "Feature", "properties": { "location": "2447 S PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151416291221693, 39.917538578392303 ] } }, +{ "type": "Feature", "properties": { "location": "100 RECTOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2204, 40.025173 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164665, 39.922398 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108239328288604, 39.995488184831302 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150898, 39.949772 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134392, 39.970398 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153485, 39.933775 ] } }, +{ "type": "Feature", "properties": { "location": "210 N HOBART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237320189141499, 39.965490709786202 ] } }, +{ "type": "Feature", "properties": { "location": "6700 DICKS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230354040444595, 39.917865259198898 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146555, 39.929697 ] } }, +{ "type": "Feature", "properties": { "location": "738 W BUTLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141102948737199, 40.009573978268101 ] } }, +{ "type": "Feature", "properties": { "location": "1200 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165522, 39.930098 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156495, 39.929968 ] } }, +{ "type": "Feature", "properties": { "location": "437 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154602808617497, 39.920722179225798 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160308932115996, 39.982879157617504 ] } }, +{ "type": "Feature", "properties": { "location": "1033 S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171057, 39.938635 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146528, 39.929683 ] } }, +{ "type": "Feature", "properties": { "location": "400 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153826460525593, 39.924364113415301 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175, 39.937868 ] } }, +{ "type": "Feature", "properties": { "location": "1199 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175005, 39.937857 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N 31ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.185874612317093, 39.978685413507201 ] } }, +{ "type": "Feature", "properties": { "location": "700 SIGEL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158334695615395, 39.925834606298999 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134428, 39.972322 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070567, 40.046402 ] } }, +{ "type": "Feature", "properties": { "location": "1200 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181253824350506, 39.974851583524597 ] } }, +{ "type": "Feature", "properties": { "location": "100 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142053, 39.954092 ] } }, +{ "type": "Feature", "properties": { "location": "4099 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204915139393194, 39.960149721442903 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N MARSHALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138153012654897, 40.014611768483697 ] } }, +{ "type": "Feature", "properties": { "location": "199 N 20TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172442, 39.957295 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169718, 39.951568 ] } }, +{ "type": "Feature", "properties": { "location": "1221 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128791162857695, 39.971557861749098 ] } }, +{ "type": "Feature", "properties": { "location": "400 E FLORA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12885, 39.97135 ] } }, +{ "type": "Feature", "properties": { "location": "400 E FLORA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128878, 39.971345 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128703, 39.971442 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128812, 39.97163 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MONTROSE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159672, 39.938498 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152152, 39.94179 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170857, 39.965742 ] } }, +{ "type": "Feature", "properties": { "location": "919 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156395, 39.93788 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154783, 39.954352 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S SHERIDAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155447, 39.932888 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165293, 39.917325 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165568, 39.918755 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167922, 39.917873 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171293, 39.940157 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.085763, 40.01491 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088577, 40.010932 ] } }, +{ "type": "Feature", "properties": { "location": "1914 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.107642497030497, 39.996867406139998 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130213, 39.968957 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARLBOROUGH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132442, 39.970993 ] } }, +{ "type": "Feature", "properties": { "location": "3500 RETTA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.204547148793594, 40.017762450850803 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W TABOR RD", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142567, 40.037752 ] } }, +{ "type": "Feature", "properties": { "location": "3800 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136387667262895, 40.009530455213898 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175153, 39.92895 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175535, 39.947213 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19719, 39.95726 ] } }, +{ "type": "Feature", "properties": { "location": "2100 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179668409311503, 39.936449922234701 ] } }, +{ "type": "Feature", "properties": { "location": "1112 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174943, 39.938372 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176507, 39.953757 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17639, 39.953648 ] } }, +{ "type": "Feature", "properties": { "location": "500 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146732, 39.963318 ] } }, +{ "type": "Feature", "properties": { "location": "3700 TERRACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211460115431706, 40.018934192184503 ] } }, +{ "type": "Feature", "properties": { "location": "2000 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179818018193203, 39.924408679631497 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167047, 39.956375 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142865, 39.967308 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175293625705706, 39.943727354927098 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143933, 39.969628 ] } }, +{ "type": "Feature", "properties": { "location": "3500 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192362, 39.9587 ] } }, +{ "type": "Feature", "properties": { "location": "2800 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130939659320106, 39.993288608677602 ] } }, +{ "type": "Feature", "properties": { "location": "100 LEVERING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22443, 40.026178 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157962, 39.944665 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157902, 39.94477 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157925, 39.94465 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157925, 39.944645 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157955, 39.944693 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157962, 39.944667 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157985, 39.944608 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157928, 39.944628 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15802, 39.944612 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157977, 39.944647 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158018, 39.944763 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157917, 39.94469 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157987, 39.944673 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157922, 39.944628 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157937, 39.94462 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157913, 39.94465 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157923, 39.944638 ] } }, +{ "type": "Feature", "properties": { "location": "900 PINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157967, 39.944875 ] } }, +{ "type": "Feature", "properties": { "location": "5500 MATTHEWS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158928290325406, 40.048120490842201 ] } }, +{ "type": "Feature", "properties": { "location": "5500 MATTHEWS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158928290325406, 40.048120490842201 ] } }, +{ "type": "Feature", "properties": { "location": "5536 MATTHEWS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158928290325406, 40.048120490842201 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 22ND ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178655, 39.944837 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167682, 39.963883 ] } }, +{ "type": "Feature", "properties": { "location": "2300 N OPAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164687016916602, 39.989778875534398 ] } }, +{ "type": "Feature", "properties": { "location": "2200 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177478, 39.951668 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155295, 39.95428 ] } }, +{ "type": "Feature", "properties": { "location": "200 N CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139608, 39.953845 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168395, 39.920407 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155988, 39.921277 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155795, 39.92131 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155393, 39.920908 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161799151653597, 39.916241461835099 ] } }, +{ "type": "Feature", "properties": { "location": "5500 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232145324628306, 39.959337449758003 ] } }, +{ "type": "Feature", "properties": { "location": "5541 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232145324628306, 39.959337449758003 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N PATTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183309296178095, 39.995253935154302 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151865, 39.94999 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150156409894606, 39.9372373223623 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ART MUSEUM DR", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182633, 39.965455 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15515, 39.920772 ] } }, +{ "type": "Feature", "properties": { "location": "1016 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156683, 39.9367 ] } }, +{ "type": "Feature", "properties": { "location": "3401 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193028, 39.956867 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 65TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228689375698806, 39.920823425027599 ] } }, +{ "type": "Feature", "properties": { "location": "500 SPRUCE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150045, 39.945197 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162247995847906, 39.918941700167203 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160265, 39.94216 ] } }, +{ "type": "Feature", "properties": { "location": "800 S ROSEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166938, 39.940533 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N FRONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.135999927154501, 39.969611335871299 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "2200 MELVIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2407850271548, 39.987157743757102 ] } }, +{ "type": "Feature", "properties": { "location": "400 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152375, 39.932947 ] } }, +{ "type": "Feature", "properties": { "location": "400 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151930129375302, 39.932893846230201 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 12TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160373, 39.949307 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159032, 39.949548 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15891, 39.949488 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158262, 39.938377 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152903, 39.924625 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156423, 39.960307 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196835, 39.96084 ] } }, +{ "type": "Feature", "properties": { "location": "300 QUINCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160393, 39.94583 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181818931196304, 39.974531177141301 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17359, 39.952827 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173933, 39.952633 ] } }, +{ "type": "Feature", "properties": { "location": "2900 OGDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184450692831007, 39.972662953187601 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160163, 39.952697 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152703, 39.92597 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15153, 39.925768 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151673, 39.925727 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N 67TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.253969975683404, 39.977115659096903 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090897, 40.006993 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175275, 39.928805 ] } }, +{ "type": "Feature", "properties": { "location": "4631 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148070681553605, 40.023757753170997 ] } }, +{ "type": "Feature", "properties": { "location": "5600 N 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137790184470404, 40.038242363554303 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JOHN F KENNEDY BLVD", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164483705566695, 39.953532325084602 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134315, 39.972583 ] } }, +{ "type": "Feature", "properties": { "location": "1413 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169018329613905, 39.929306198693098 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225525, 39.972363 ] } }, +{ "type": "Feature", "properties": { "location": "5200 W MONTGOMERY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227927057472698, 39.9848022895752 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065792835191004, 40.016496713809801 ] } }, +{ "type": "Feature", "properties": { "location": "2103 RUFFNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164347969315997, 40.012307615422003 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153698, 39.959612 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175047, 39.922518 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175013, 39.922527 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158287, 39.938328 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158282, 39.938358 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155142, 39.927968 ] } }, +{ "type": "Feature", "properties": { "location": "1535 STONEY LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.044882459920998, 40.083737844062497 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129425307660995, 39.976155466005501 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128972, 39.972023 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132674781115995, 40.026529841677899 ] } }, +{ "type": "Feature", "properties": { "location": "2300 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174001483446901, 39.977484118615401 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175132, 39.922492 ] } }, +{ "type": "Feature", "properties": { "location": "5818 HAZEL AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239570621548296, 39.9530831566071 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CEDAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127617, 39.976843 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157197, 39.94925 ] } }, +{ "type": "Feature", "properties": { "location": "4000 LOCUST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.205372, 39.953228 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 43RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211728, 39.95019 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 39TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200153, 39.954483 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196898, 39.96029 ] } }, +{ "type": "Feature", "properties": { "location": "800 MOYER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12311, 39.973735 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S RINGGOLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185655797773293, 39.930825993653698 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DUNGAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101825, 40.008282 ] } }, +{ "type": "Feature", "properties": { "location": "715 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159042, 39.920583 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1534, 39.933768 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173363, 39.952855 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155977, 39.954557 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156303, 39.959725 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145888173527496, 39.940142015857198 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159727, 39.93799 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16429, 39.931183 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171468, 39.919522 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170905, 39.927203 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163473, 39.950178 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 17TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167172, 39.955197 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17311, 39.955312 ] } }, +{ "type": "Feature", "properties": { "location": "3500 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193247, 39.953795 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174064608004699, 39.924538146605897 ] } }, +{ "type": "Feature", "properties": { "location": "600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157263, 39.920335 ] } }, +{ "type": "Feature", "properties": { "location": "1513 SPRUCE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16704, 39.947245 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169578, 39.940707 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16395, 39.926093 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "600 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154232, 39.933682 ] } }, +{ "type": "Feature", "properties": { "location": "2600 SYLMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235314625449803, 39.916152325275 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N SYDENHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157642288933999, 39.991400546087597 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158235, 39.923758 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196212, 39.957252 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070542, 40.046367 ] } }, +{ "type": "Feature", "properties": { "location": "1922 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174207849036094, 39.945022113781398 ] } }, +{ "type": "Feature", "properties": { "location": "1924 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17455, 39.945052 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172517218911807, 39.937970035699699 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154103, 40.003487 ] } }, +{ "type": "Feature", "properties": { "location": "600 PINE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151865, 39.943887 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159307, 39.976882 ] } }, +{ "type": "Feature", "properties": { "location": "400 UNION ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201198071992295, 39.961008416040798 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166155, 39.923048 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129017, 39.972068 ] } }, +{ "type": "Feature", "properties": { "location": "3800 BLEK LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199457, 39.956053 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128453, 39.967118 ] } }, +{ "type": "Feature", "properties": { "location": "3600 VAUX ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189517, 40.015013 ] } }, +{ "type": "Feature", "properties": { "location": "1100 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163453, 39.931158 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16607, 39.923908 ] } }, +{ "type": "Feature", "properties": { "location": "1620 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "1620 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "1620 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159605, 39.916647 ] } }, +{ "type": "Feature", "properties": { "location": "1599 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148565, 39.928398 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "3900 DEXTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.213501605807494, 40.022750832170203 ] } }, +{ "type": "Feature", "properties": { "location": "3300 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.098153, 39.985515 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141795, 39.968923 ] } }, +{ "type": "Feature", "properties": { "location": "136 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154097, 39.948218 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144825, 39.95877 ] } }, +{ "type": "Feature", "properties": { "location": "198 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122597094140701, 40.044310069466398 ] } }, +{ "type": "Feature", "properties": { "location": "1500 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169598644594799, 39.934406613707999 ] } }, +{ "type": "Feature", "properties": { "location": "3600 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195653, 39.95557 ] } }, +{ "type": "Feature", "properties": { "location": "400 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128913960760599, 39.968859693362397 ] } }, +{ "type": "Feature", "properties": { "location": "299 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163593, 39.946783 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214613238467905, 40.028512966070998 ] } }, +{ "type": "Feature", "properties": { "location": "2829 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182959668383006, 39.973116229474499 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156638, 39.943972 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161670865359397, 39.984048970421497 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170863, 39.938265 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N HANCOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138742, 39.966455 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224313, 40.026582 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16038, 39.953967 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159952, 39.953283 ] } }, +{ "type": "Feature", "properties": { "location": "249 W THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134455147388806, 40.001968784047499 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 24TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176082689487799, 39.971621175205499 ] } }, +{ "type": "Feature", "properties": { "location": "2500 ASHFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244110825048395, 39.911376631249503 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156283, 39.960855 ] } }, +{ "type": "Feature", "properties": { "location": "800 JUDSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175299801081394, 39.970333700195901 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159528, 39.92476 ] } }, +{ "type": "Feature", "properties": { "location": "600 SHAWMONT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235266015452893, 40.052444381302699 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179803, 39.973643 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176132, 39.941683 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "1741 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "500 CHRISTIAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152523302738501, 39.937534863764299 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "2619 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123281172814501, 39.9861042805233 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17048, 39.965608 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154286372780902, 39.918332882349603 ] } }, +{ "type": "Feature", "properties": { "location": "4300 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221455, 40.025583 ] } }, +{ "type": "Feature", "properties": { "location": "2800 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182959668383006, 39.973116229474499 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N TAYLOR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171283656234905, 39.998498526828399 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158007, 39.923675 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179158849012197, 39.942550164282601 ] } }, +{ "type": "Feature", "properties": { "location": "5300 WISSAHICKON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178587765722995, 40.022963296834803 ] } }, +{ "type": "Feature", "properties": { "location": "600 OREGON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158468925870096, 39.9151063334455 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W OXFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160254334670697, 39.977541513740697 ] } }, +{ "type": "Feature", "properties": { "location": "300 SPRING GARDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144565, 39.961095 ] } }, +{ "type": "Feature", "properties": { "location": "2200 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237272840798198, 39.922569628612401 ] } }, +{ "type": "Feature", "properties": { "location": "900 WINTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162260987378801, 39.922582911292103 ] } }, +{ "type": "Feature", "properties": { "location": "1500 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172443, 39.919558 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N WATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127546363347193, 40.000721437153203 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169347, 39.941177 ] } }, +{ "type": "Feature", "properties": { "location": "700 JUDSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175533014511501, 39.969169807130598 ] } }, +{ "type": "Feature", "properties": { "location": "2313 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175327, 39.969815 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 31ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188522, 39.965587 ] } }, +{ "type": "Feature", "properties": { "location": "261 N SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.249132547219006, 39.966953620790399 ] } }, +{ "type": "Feature", "properties": { "location": "6900 CHELWYNDE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234212151913397, 39.915921172977299 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13348, 39.975217 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 22ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17999, 39.938468 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2226708935912, 39.9511381429949 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176815, 39.953788 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159297, 39.932673 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156572, 39.958958 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0885, 40.01091 ] } }, +{ "type": "Feature", "properties": { "location": "400 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154786755766395, 39.9199065267794 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19702, 39.957453 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197007, 39.957347 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150939644683206, 39.978057818268702 ] } }, +{ "type": "Feature", "properties": { "location": "1399 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169957, 39.917933 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155578, 39.929468 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOUNT VERNON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162327, 39.965422 ] } }, +{ "type": "Feature", "properties": { "location": "100 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136508060246001, 39.968936809660299 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15921, 39.920562 ] } }, +{ "type": "Feature", "properties": { "location": "2400 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171793385482303, 39.9950758319969 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BRANDYWINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161323, 39.963155 ] } }, +{ "type": "Feature", "properties": { "location": "1599 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15049, 39.92892 ] } }, +{ "type": "Feature", "properties": { "location": "4300 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197498, 40.01028 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159557, 39.916692 ] } }, +{ "type": "Feature", "properties": { "location": "1100 E JOHNSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167252, 39.914905 ] } }, +{ "type": "Feature", "properties": { "location": "4218 CHESTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208185, 39.948385 ] } }, +{ "type": "Feature", "properties": { "location": "801 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159082115319706, 39.929706043786503 ] } }, +{ "type": "Feature", "properties": { "location": "1100 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161097, 39.94281 ] } }, +{ "type": "Feature", "properties": { "location": "599 SANGER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.103136602350901, 40.040376633806602 ] } }, +{ "type": "Feature", "properties": { "location": "1500 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173847, 39.918535 ] } }, +{ "type": "Feature", "properties": { "location": "514 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "4000 FILBERT ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.20255, 39.957992 ] } }, +{ "type": "Feature", "properties": { "location": "200 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142515, 39.964938 ] } }, +{ "type": "Feature", "properties": { "location": "3427 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125864698010005, 40.002036724401002 ] } }, +{ "type": "Feature", "properties": { "location": "4200 N MARSHALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137814967470305, 40.016203047787599 ] } }, +{ "type": "Feature", "properties": { "location": "1100 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163522, 39.931193 ] } }, +{ "type": "Feature", "properties": { "location": "1100 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163187577411904, 39.930745036297502 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148003, 39.939567 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164094466473301, 39.917892330239098 ] } }, +{ "type": "Feature", "properties": { "location": "1100 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167048, 39.918982 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164094466473301, 39.917892330239098 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170257, 39.94238 ] } }, +{ "type": "Feature", "properties": { "location": "1608 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169352, 39.943215 ] } }, +{ "type": "Feature", "properties": { "location": "3800 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197333912889405, 39.960759509701397 ] } }, +{ "type": "Feature", "properties": { "location": "3900 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201067, 39.956318 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224407, 40.026662 ] } }, +{ "type": "Feature", "properties": { "location": "844 LAWLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.022049719665404, 40.108115589617697 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130532, 39.972352 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13059, 39.972543 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176662, 39.945567 ] } }, +{ "type": "Feature", "properties": { "location": "816 S 42ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205948804599899, 39.945506231781003 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147942, 39.939632 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ADAMS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.092227, 40.00804 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09097, 40.007107 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159972, 39.920492 ] } }, +{ "type": "Feature", "properties": { "location": "6000 ALMA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.082366888957907, 40.035534917913203 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168227, 39.925418 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161514869874594, 39.9517680365853 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1700775718312, 39.9380251712995 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192148, 39.953742 ] } }, +{ "type": "Feature", "properties": { "location": "6375 MARSDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.053232548759595, 40.021573571238697 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134447, 39.972327 ] } }, +{ "type": "Feature", "properties": { "location": "230 LOCUST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145512, 39.945237 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154695, 39.931342 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155088, 39.929608 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174975, 39.947222 ] } }, +{ "type": "Feature", "properties": { "location": "201 W SPENCER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.124151287526601, 40.043486914662999 ] } }, +{ "type": "Feature", "properties": { "location": "700 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151948, 39.940433 ] } }, +{ "type": "Feature", "properties": { "location": "401 MARKLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.210929433560295, 40.0243918884754 ] } }, +{ "type": "Feature", "properties": { "location": "2400 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177042, 39.967448 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16091, 39.951307 ] } }, +{ "type": "Feature", "properties": { "location": "2200 CORAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131429925480006, 39.982300413634398 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153007, 39.921758 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153715, 39.921123 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153486617622207, 39.9220569546072 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134332, 39.972378 ] } }, +{ "type": "Feature", "properties": { "location": "400 S WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16437, 39.945723 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15306, 39.950195 ] } }, +{ "type": "Feature", "properties": { "location": "3900 CLARIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104304196443707, 40.007140860325997 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177555, 39.942275 ] } }, +{ "type": "Feature", "properties": { "location": "2500 KIMBALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184817, 39.9409 ] } }, +{ "type": "Feature", "properties": { "location": "6800 BUIST AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233286425901596, 39.917966129545299 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160073, 39.953313 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157885, 39.924965 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167852, 39.936628 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157645, 39.949415 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15777, 39.949367 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157597, 39.949345 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157418, 39.949432 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15788, 39.949223 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157347, 39.949325 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157647, 39.94947 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159006273738697, 39.949470545935398 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157682, 39.94935 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155458, 39.954095 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15618, 39.961203 ] } }, +{ "type": "Feature", "properties": { "location": "219 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205205, 39.953702 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17334, 39.937503 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17359, 39.936245 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164412, 39.93127 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163973, 39.93351 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 4TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147307, 39.949552 ] } }, +{ "type": "Feature", "properties": { "location": "1099 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138647, 39.966513 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176075, 39.945947 ] } }, +{ "type": "Feature", "properties": { "location": "1300 PRATT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.081253, 40.024418 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160728, 39.953525 ] } }, +{ "type": "Feature", "properties": { "location": "800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160035, 39.921917 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WINTER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155742, 39.956693 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144482, 39.968318 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161497, 39.929702 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WHARTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163878, 39.933613 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16388, 39.933597 ] } }, +{ "type": "Feature", "properties": { "location": "1833 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152893520563197, 39.924897769306902 ] } }, +{ "type": "Feature", "properties": { "location": "977 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144573, 39.967997 ] } }, +{ "type": "Feature", "properties": { "location": "1620 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16442, 39.967903 ] } }, +{ "type": "Feature", "properties": { "location": "900 N BODINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141258, 39.96566 ] } }, +{ "type": "Feature", "properties": { "location": "900 N BODINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141342, 39.965607 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15655, 39.97422 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JEFFERSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159488, 39.975938 ] } }, +{ "type": "Feature", "properties": { "location": "400 ROXBOROUGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214613238467905, 40.028512966070998 ] } }, +{ "type": "Feature", "properties": { "location": "834 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181781036282402, 39.971356849451297 ] } }, +{ "type": "Feature", "properties": { "location": "5400 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230724647340907, 39.955816752728801 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RIDGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185290807265801, 39.991138447621204 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12788, 39.969855 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144037, 39.955188 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218508, 40.023515 ] } }, +{ "type": "Feature", "properties": { "location": "1501 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150235, 39.929252 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155873, 39.926345 ] } }, +{ "type": "Feature", "properties": { "location": "400 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151930129375302, 39.932893846230201 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152707, 39.942472 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168985, 39.931617 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 25TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178043, 39.970107 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 39TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.199944479011606, 39.959946261519299 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155667, 39.929247 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154308, 39.92621 ] } }, +{ "type": "Feature", "properties": { "location": "300 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143488, 39.961438 ] } }, +{ "type": "Feature", "properties": { "location": "116 DURFOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149776944048597, 39.918809227849799 ] } }, +{ "type": "Feature", "properties": { "location": "5900 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14371, 40.043147 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177988, 39.940503 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166052, 39.923983 ] } }, +{ "type": "Feature", "properties": { "location": "3200 E THOMPSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102927, 39.984825 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154853, 39.95437 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.09089, 40.00745 ] } }, +{ "type": "Feature", "properties": { "location": "900 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155442, 39.937303 ] } }, +{ "type": "Feature", "properties": { "location": "900 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15547, 39.937288 ] } }, +{ "type": "Feature", "properties": { "location": "800 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160283787752306, 39.921892706210997 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174202, 39.933752 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15517, 39.920832 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1533, 39.931012 ] } }, +{ "type": "Feature", "properties": { "location": "6229 MERSHON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065584229748794, 40.0300327527519 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170652, 39.943482 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17037, 39.943408 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170503, 39.943353 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175348, 39.943403 ] } }, +{ "type": "Feature", "properties": { "location": "2300 GAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1248109414406, 39.976746766390598 ] } }, +{ "type": "Feature", "properties": { "location": "851 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183840665721505, 39.972910020788802 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195443, 39.950813 ] } }, +{ "type": "Feature", "properties": { "location": "1100 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161483, 39.941295 ] } }, +{ "type": "Feature", "properties": { "location": "4500 RITCHIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22542, 40.028688 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166665, 39.965233 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166848, 39.965228 ] } }, +{ "type": "Feature", "properties": { "location": "4216 CHESTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207982, 39.94835 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167085, 39.965302 ] } }, +{ "type": "Feature", "properties": { "location": "3700 CRESSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213057, 40.0187 ] } }, +{ "type": "Feature", "properties": { "location": "3468 CRYSTAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118014427427099, 40.001045983065403 ] } }, +{ "type": "Feature", "properties": { "location": "600 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118095923580299, 40.001848406580002 ] } }, +{ "type": "Feature", "properties": { "location": "3468 CRYSTAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118014427427099, 40.001045983065403 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153898, 39.929068 ] } }, +{ "type": "Feature", "properties": { "location": "2900 SALMON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109092370602795, 39.979803440229098 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162482, 39.965323 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WALLACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162477, 39.965398 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WALLACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162472, 39.965387 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175237, 39.947098 ] } }, +{ "type": "Feature", "properties": { "location": "2600 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233394290358703, 39.916809360825901 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 26TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179475, 39.971477 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154043, 39.927895 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154173, 39.927832 ] } }, +{ "type": "Feature", "properties": { "location": "700 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154155, 39.927817 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129065, 39.972095 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MIFFLIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179915, 39.928178 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 24TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182387, 39.943408 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153355, 39.942438 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141557, 39.969673 ] } }, +{ "type": "Feature", "properties": { "location": "1100 OXFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13106, 39.969912 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170563, 39.943425 ] } }, +{ "type": "Feature", "properties": { "location": "1000 DALY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164103852945601, 39.921572117598302 ] } }, +{ "type": "Feature", "properties": { "location": "700 W SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141890842925804, 40.004463299879397 ] } }, +{ "type": "Feature", "properties": { "location": "800 CHRISTIAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157838, 39.938867 ] } }, +{ "type": "Feature", "properties": { "location": "500 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155417, 39.921863 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155772, 39.928958 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171245448620297, 39.966784715197598 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 9TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15476, 39.953437 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 54TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231014085081398, 39.949174753672899 ] } }, +{ "type": "Feature", "properties": { "location": "1328 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16447, 39.944047 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127298235565505, 39.995328587683701 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196925, 39.96011 ] } }, +{ "type": "Feature", "properties": { "location": "200 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142457, 39.964897 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TYSON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.069733, 40.046623 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E COLUMBIA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129787, 39.969062 ] } }, +{ "type": "Feature", "properties": { "location": "500 W CHELTEN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182343, 40.027562 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 38TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197733, 39.957433 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "300 MONASTERY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217640426211005, 40.029120525284299 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "5541 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232145324628306, 39.959337449758003 ] } }, +{ "type": "Feature", "properties": { "location": "500 S YEWDALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231112918926996, 39.951776824072098 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 3RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143142, 39.962072 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 42ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206225, 39.955457 ] } }, +{ "type": "Feature", "properties": { "location": "6426 RISING SUN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.094713, 40.050428 ] } }, +{ "type": "Feature", "properties": { "location": "1500 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159428, 39.976382 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140377, 39.968572 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155905, 39.940605 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "1710 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170723, 39.945042 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166625, 39.956578 ] } }, +{ "type": "Feature", "properties": { "location": "1428 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134177427366296, 39.972661331934901 ] } }, +{ "type": "Feature", "properties": { "location": "1600 SPRUCE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167962, 39.94745 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175117, 39.96846 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160815, 39.924945 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14674, 39.931203 ] } }, +{ "type": "Feature", "properties": { "location": "100 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146692, 39.931378 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154643, 39.954338 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17613, 39.939932 ] } }, +{ "type": "Feature", "properties": { "location": "1418 MASTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159842, 39.97465 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 23RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179142, 39.948075 ] } }, +{ "type": "Feature", "properties": { "location": "3200 W YORK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1846600827744, 39.9931254551122 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184523583821601, 39.942014625338203 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15516, 39.929517 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153493, 39.92934 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15486, 39.929542 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "799 HUTCHINSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158363, 39.939917 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "5422 MULBERRY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070804757076502, 40.021720881286903 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158706400253195, 39.927760757295502 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S SALFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228943301849299, 39.932395025751099 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S SALFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228943301849299, 39.932395025751099 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORKNEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143995, 39.97067 ] } }, +{ "type": "Feature", "properties": { "location": "5400 N 6TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132733, 40.035238 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1413, 39.968653 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141268, 39.968715 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143398, 40.039658 ] } }, +{ "type": "Feature", "properties": { "location": "501 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155852, 39.921302 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155813, 39.921293 ] } }, +{ "type": "Feature", "properties": { "location": "6376 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078237, 40.038735 ] } }, +{ "type": "Feature", "properties": { "location": "3219 WILLITS RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.013808465981199, 40.057009536019201 ] } }, +{ "type": "Feature", "properties": { "location": "200 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126988509800597, 39.997705560079602 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152538, 39.942432 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 2ND ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145498, 39.94187 ] } }, +{ "type": "Feature", "properties": { "location": "1700 TYSON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.066848737602101, 40.044910213049498 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182758, 39.970612 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156607, 39.922742 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158272, 39.923432 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158293, 39.923418 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158197, 39.923365 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161168, 39.937005 ] } }, +{ "type": "Feature", "properties": { "location": "7200 CRISPIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.04575, 40.037072 ] } }, +{ "type": "Feature", "properties": { "location": "5452 STEWART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231141416693006, 39.978447410406197 ] } }, +{ "type": "Feature", "properties": { "location": "1800 DELANCEY PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172307, 39.947102 ] } }, +{ "type": "Feature", "properties": { "location": "700 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154675, 39.942717 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149492, 40.005243 ] } }, +{ "type": "Feature", "properties": { "location": "4230 GRISCOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091903611425096, 40.009621523468098 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170943, 39.921937 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1875100852873, 39.959154514589798 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171588, 39.944697 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ROMAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171695, 39.94486 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155253, 39.928685 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155272, 39.928695 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163347, 39.949663 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150893, 39.949883 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151043, 39.949788 ] } }, +{ "type": "Feature", "properties": { "location": "426 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121908, 39.997527 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167072, 39.950667 ] } }, +{ "type": "Feature", "properties": { "location": "700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152994650392401, 39.950092836193903 ] } }, +{ "type": "Feature", "properties": { "location": "3300 F ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116992, 39.998677 ] } }, +{ "type": "Feature", "properties": { "location": "1300 W TABOR RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143778, 40.038143 ] } }, +{ "type": "Feature", "properties": { "location": "600 BRILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101953081320005, 40.0391123899295 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154183, 39.92698 ] } }, +{ "type": "Feature", "properties": { "location": "2600 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179316285193295, 39.972663577942598 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SCHUBERT ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170042, 39.948573 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157713941470007, 39.9250979552831 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176787, 39.951645 ] } }, +{ "type": "Feature", "properties": { "location": "2600 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179316285193295, 39.972663577942598 ] } }, +{ "type": "Feature", "properties": { "location": "1100 W CHAMPLOST AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138377, 40.043643 ] } }, +{ "type": "Feature", "properties": { "location": "1300 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166282, 39.932738 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143017, 39.966727 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149722, 39.946855 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149815, 39.947098 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149648, 39.947048 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150108, 39.946918 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149657, 39.946678 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149888, 39.946863 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153497, 39.946077 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149737, 39.946902 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149688, 39.946762 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149955, 39.946783 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149597, 39.946787 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149477, 39.94663 ] } }, +{ "type": "Feature", "properties": { "location": "800 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155169240967794, 39.945782215866402 ] } }, +{ "type": "Feature", "properties": { "location": "4862 D ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115983740234995, 40.023260934867203 ] } }, +{ "type": "Feature", "properties": { "location": "4862 D ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.115983740234995, 40.023260934867203 ] } }, +{ "type": "Feature", "properties": { "location": "4800 D ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116065948667199, 40.022493557439198 ] } }, +{ "type": "Feature", "properties": { "location": "1400 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169477, 39.930612 ] } }, +{ "type": "Feature", "properties": { "location": "1400 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167325, 39.935757 ] } }, +{ "type": "Feature", "properties": { "location": "1800 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173465, 39.936983 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176608, 39.947988 ] } }, +{ "type": "Feature", "properties": { "location": "2555 CARPENTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186237, 39.941477 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176235, 39.941705 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WALLACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170477, 39.966263 ] } }, +{ "type": "Feature", "properties": { "location": "900 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154627271757306, 39.958003745633199 ] } }, +{ "type": "Feature", "properties": { "location": "300 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142435, 39.969125 ] } }, +{ "type": "Feature", "properties": { "location": "300 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142487, 39.969098 ] } }, +{ "type": "Feature", "properties": { "location": "4000 GLENDALE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101202194041093, 40.008260715641597 ] } }, +{ "type": "Feature", "properties": { "location": "599 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.222833456938503, 39.950366060771799 ] } }, +{ "type": "Feature", "properties": { "location": "2300 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179617, 39.947898 ] } }, +{ "type": "Feature", "properties": { "location": "810 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169557, 39.940787 ] } }, +{ "type": "Feature", "properties": { "location": "100 W ROOSEVELT BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12729, 40.024702 ] } }, +{ "type": "Feature", "properties": { "location": "4600 LANSING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.028379903127501, 40.034258017585699 ] } }, +{ "type": "Feature", "properties": { "location": "5600 N FAIRHILL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131248, 40.038048 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E SUSQUEHANNA AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12736, 39.976983 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CEDAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12759, 39.976765 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169805, 39.943267 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 4TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146537, 39.952738 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154975, 39.93718 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CHRISTIAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172738, 39.940862 ] } }, +{ "type": "Feature", "properties": { "location": "3821 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197888, 39.960122 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "2500 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117908125346702, 39.975192728916497 ] } }, +{ "type": "Feature", "properties": { "location": "2529 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117908125346702, 39.975192728916497 ] } }, +{ "type": "Feature", "properties": { "location": "2529 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117908125346702, 39.975192728916497 ] } }, +{ "type": "Feature", "properties": { "location": "2527 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117908125346702, 39.975192728916497 ] } }, +{ "type": "Feature", "properties": { "location": "600 E PASSYUNK AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150413, 39.941738 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FEDERAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161463, 39.934662 ] } }, +{ "type": "Feature", "properties": { "location": "1000 FEDERAL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161457, 39.934695 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153547, 39.928883 ] } }, +{ "type": "Feature", "properties": { "location": "1599 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150355, 39.928882 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164005128440806, 39.975154517520998 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163608, 39.934782 ] } }, +{ "type": "Feature", "properties": { "location": "500 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15108, 39.941023 ] } }, +{ "type": "Feature", "properties": { "location": "519 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157598, 39.923263 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157652, 39.923285 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157453, 39.923343 ] } }, +{ "type": "Feature", "properties": { "location": "3845 PEARL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198755, 39.960068 ] } }, +{ "type": "Feature", "properties": { "location": "4000 ALDINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.038735846347095, 40.0367072984454 ] } }, +{ "type": "Feature", "properties": { "location": "3701 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196073, 39.957172 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170936384558502, 39.9526308179598 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 2ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143162, 39.95415 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WALLACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159248, 39.96503 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166027, 39.964367 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165965, 39.964433 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N REESE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136055476295695, 40.014344838483602 ] } }, +{ "type": "Feature", "properties": { "location": "500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151673, 39.941542 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175135, 39.92254 ] } }, +{ "type": "Feature", "properties": { "location": "1400 LARDNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0795396301408, 40.035554269592197 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15037, 39.928815 ] } }, +{ "type": "Feature", "properties": { "location": "500 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154183, 39.931262 ] } }, +{ "type": "Feature", "properties": { "location": "700 MARLYN RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.248214229017094, 39.974371071217298 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161015, 39.968473 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "900 ANNIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158962, 39.934795 ] } }, +{ "type": "Feature", "properties": { "location": "799 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180678, 39.969208 ] } }, +{ "type": "Feature", "properties": { "location": "700 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180788, 39.969158 ] } }, +{ "type": "Feature", "properties": { "location": "799 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180738, 39.969333 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178057, 39.945183 ] } }, +{ "type": "Feature", "properties": { "location": "9000 SYCAMORE LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.247289348934402, 40.067231636949401 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHRISTIAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169573, 39.940502 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217477482523407, 39.936511638760997 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17971, 39.974048 ] } }, +{ "type": "Feature", "properties": { "location": "607 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156168, 39.926833 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191365, 39.95724 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191293, 39.95725 ] } }, +{ "type": "Feature", "properties": { "location": "5900 PALMETTO ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.0999523206833, 40.043419523349399 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156327, 39.959702 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162457752653694, 39.949902437251701 ] } }, +{ "type": "Feature", "properties": { "location": "1201 JACKSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166701332138999, 39.922723791243598 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137528, 39.968102 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134235, 39.972417 ] } }, +{ "type": "Feature", "properties": { "location": "3401 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192967, 39.95693 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189668, 39.955037 ] } }, +{ "type": "Feature", "properties": { "location": "4700 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148172, 40.02487 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157298450452998, 39.919587715279 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153445, 39.928928 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153438, 39.928983 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153378, 39.92894 ] } }, +{ "type": "Feature", "properties": { "location": "2130 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17846, 39.942055 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128065, 39.96735 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.12817, 39.967207 ] } }, +{ "type": "Feature", "properties": { "location": "2200 E FIRTH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1235012156544, 39.981661141933003 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163453, 39.949862 ] } }, +{ "type": "Feature", "properties": { "location": "1000 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141968, 39.967735 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159132, 39.920543 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22632, 40.027772 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160767, 39.921197 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16078, 39.921155 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183619473665203, 39.975309191876697 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154943, 39.949158 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146207, 39.938475 ] } }, +{ "type": "Feature", "properties": { "location": "3400 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192482, 39.95864 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179338, 39.971382 ] } }, +{ "type": "Feature", "properties": { "location": "1309 S REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153625042229507, 39.931686964491902 ] } }, +{ "type": "Feature", "properties": { "location": "1200 BUTTONWOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158063, 39.961015 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170332, 39.949992 ] } }, +{ "type": "Feature", "properties": { "location": "6056 LOCUST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243268230710598, 39.9579802564771 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.207125, 39.951142 ] } }, +{ "type": "Feature", "properties": { "location": "900 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161508, 39.929592 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166848, 39.937232 ] } }, +{ "type": "Feature", "properties": { "location": "1700 DELANCEY PL", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171328, 39.947085 ] } }, +{ "type": "Feature", "properties": { "location": "500 LOMBARD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150948, 39.942878 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170588, 39.928282 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15983, 39.974725 ] } }, +{ "type": "Feature", "properties": { "location": "2100 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172610973840904, 39.970493961414697 ] } }, +{ "type": "Feature", "properties": { "location": "205 W LAVEER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124512083998198, 40.045678415904099 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165162, 39.96504 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165138, 39.964972 ] } }, +{ "type": "Feature", "properties": { "location": "4700 ELLA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.121458, 40.021317 ] } }, +{ "type": "Feature", "properties": { "location": "200 VINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143892, 39.955895 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E COLUMBIA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129785, 39.969067 ] } }, +{ "type": "Feature", "properties": { "location": "4600 PAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.083925, 40.015915 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177412, 39.951095 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151882, 39.949778 ] } }, +{ "type": "Feature", "properties": { "location": "900 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.111633, 39.999443 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S MOLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173792, 39.918488 ] } }, +{ "type": "Feature", "properties": { "location": "3500 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192683, 39.958078 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "4800 OGLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "4821 OGLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232576220785205, 40.033491745804298 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182828, 39.942157 ] } }, +{ "type": "Feature", "properties": { "location": "2400 CHRISTIAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182822, 39.942055 ] } }, +{ "type": "Feature", "properties": { "location": "2000 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172047, 39.967207 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179611091672996, 39.9405092826443 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183702050635304, 39.973542504934699 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1913, 39.957637 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142337, 39.97026 ] } }, +{ "type": "Feature", "properties": { "location": "1432 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "1432 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "1432 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "1432 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174275, 39.918488 ] } }, +{ "type": "Feature", "properties": { "location": "2833 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182959668383006, 39.973116229474499 ] } }, +{ "type": "Feature", "properties": { "location": "2800 POPLAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182959668383006, 39.973116229474499 ] } }, +{ "type": "Feature", "properties": { "location": "2539 MEREDITH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179246934559202, 39.968403499901598 ] } }, +{ "type": "Feature", "properties": { "location": "100 LOMBARD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145202, 39.942117 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150922, 39.94977 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17411, 39.92448 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156823, 39.960823 ] } }, +{ "type": "Feature", "properties": { "location": "4300 FLEMING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.218418514643105, 40.0271391879539 ] } }, +{ "type": "Feature", "properties": { "location": "1515 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16797, 39.943505 ] } }, +{ "type": "Feature", "properties": { "location": "629 S 51ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225125548176393, 39.949086755611901 ] } }, +{ "type": "Feature", "properties": { "location": "2000 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17704, 39.937362 ] } }, +{ "type": "Feature", "properties": { "location": "1200 DIAMOND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15288, 39.984197 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148688, 39.939397 ] } }, +{ "type": "Feature", "properties": { "location": "1200 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167495, 39.918895 ] } }, +{ "type": "Feature", "properties": { "location": "500 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156127, 39.925113 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176048, 39.941702 ] } }, +{ "type": "Feature", "properties": { "location": "1138 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132898, 39.968825 ] } }, +{ "type": "Feature", "properties": { "location": "1900 PLYMOUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148280061441994, 40.064492167381502 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156455, 39.953203 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15788, 39.92496 ] } }, +{ "type": "Feature", "properties": { "location": "5000 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132313, 40.027893 ] } }, +{ "type": "Feature", "properties": { "location": "800 W OLNEY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135286915455495, 40.037051641862803 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178089557315005, 39.971246140363597 ] } }, +{ "type": "Feature", "properties": { "location": "664 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117937534522895, 39.999147255209003 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163692, 39.950012 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16388, 39.950303 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164107, 39.945143 ] } }, +{ "type": "Feature", "properties": { "location": "400 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163712, 39.944965 ] } }, +{ "type": "Feature", "properties": { "location": "835 S 49TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219444438724196, 39.946637890101201 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155265, 39.954327 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155228, 39.954402 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155233, 39.954352 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155373, 39.954345 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155187, 39.954332 ] } }, +{ "type": "Feature", "properties": { "location": "5300 SAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080013, 40.025522 ] } }, +{ "type": "Feature", "properties": { "location": "5301 SAUL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079918, 40.02562 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162353, 39.943853 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158965, 39.949498 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158862, 39.9494 ] } }, +{ "type": "Feature", "properties": { "location": "1976 STERLING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149464295844496, 40.067772126999103 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160543, 39.919342 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154035, 39.927853 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16426, 39.91729 ] } }, +{ "type": "Feature", "properties": { "location": "1100 EARL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128823, 39.969532 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "2599 CARPENTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186177, 39.941525 ] } }, +{ "type": "Feature", "properties": { "location": "2599 CARPENTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18625, 39.941505 ] } }, +{ "type": "Feature", "properties": { "location": "2599 CARPENTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186155, 39.941487 ] } }, +{ "type": "Feature", "properties": { "location": "400 FULTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151378, 39.938662 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 67TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2538426734735, 39.976438678095903 ] } }, +{ "type": "Feature", "properties": { "location": "600 AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142207, 39.961725 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168645, 39.92855 ] } }, +{ "type": "Feature", "properties": { "location": "5700 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.102948834310993, 40.039386907656599 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154155, 40.003367 ] } }, +{ "type": "Feature", "properties": { "location": "3700 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195322, 39.955583 ] } }, +{ "type": "Feature", "properties": { "location": "3300 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189587, 39.960352 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182507815898106, 39.942707927609703 ] } }, +{ "type": "Feature", "properties": { "location": "1000 DICKINSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16201, 39.930913 ] } }, +{ "type": "Feature", "properties": { "location": "741 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157192, 39.933453 ] } }, +{ "type": "Feature", "properties": { "location": "615 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153067, 39.941698 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191443324436705, 39.963213814021799 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214557, 40.023922 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128153, 39.967397 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "3901 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200316548392394, 39.960534383626403 ] } }, +{ "type": "Feature", "properties": { "location": "3900 BARING ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200316548392394, 39.960534383626403 ] } }, +{ "type": "Feature", "properties": { "location": "3700 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19602, 39.963025 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152545, 39.942388 ] } }, +{ "type": "Feature", "properties": { "location": "906 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177918, 39.941022 ] } }, +{ "type": "Feature", "properties": { "location": "5921 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126479546253506, 40.041422672272702 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174937, 39.947112 ] } }, +{ "type": "Feature", "properties": { "location": "2000 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170785, 39.967273 ] } }, +{ "type": "Feature", "properties": { "location": "400 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127847, 39.969805 ] } }, +{ "type": "Feature", "properties": { "location": "1100 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127852, 39.969763 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165214800896507, 39.978908408510499 ] } }, +{ "type": "Feature", "properties": { "location": "1922 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174138, 39.945248 ] } }, +{ "type": "Feature", "properties": { "location": "2019 E BOSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1292057093588, 39.984172688489899 ] } }, +{ "type": "Feature", "properties": { "location": "300 S FELTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.247021657716004, 39.957819039401599 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146592, 39.936342 ] } }, +{ "type": "Feature", "properties": { "location": "600 OREGON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158745, 39.915278 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160935, 39.92093 ] } }, +{ "type": "Feature", "properties": { "location": "1700 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172994257574501, 39.935731232886901 ] } }, +{ "type": "Feature", "properties": { "location": "4223 GRISCOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091903611425096, 40.009621523468098 ] } }, +{ "type": "Feature", "properties": { "location": "1226 S SHERIDAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155387, 39.933062 ] } }, +{ "type": "Feature", "properties": { "location": "2600 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148053, 39.992397 ] } }, +{ "type": "Feature", "properties": { "location": "200 S SAINT BERNARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.221077, 39.954108 ] } }, +{ "type": "Feature", "properties": { "location": "400 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131789173017694, 39.973209756288298 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16967, 39.928085 ] } }, +{ "type": "Feature", "properties": { "location": "1300 N 30TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184582781306304, 39.977154032369498 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "5835 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.237150525007095, 39.964689349221899 ] } }, +{ "type": "Feature", "properties": { "location": "715 W MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159192, 39.920628 ] } }, +{ "type": "Feature", "properties": { "location": "600 WHARTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154727, 39.932413 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154935, 39.932817 ] } }, +{ "type": "Feature", "properties": { "location": "26 CHURCH LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171003627298603, 40.034921817857303 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157312, 39.959017 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155442, 39.984508 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164593, 39.96291 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149202, 40.005283 ] } }, +{ "type": "Feature", "properties": { "location": "3100 G ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1157129466242, 39.9954894751273 ] } }, +{ "type": "Feature", "properties": { "location": "4400 WALNUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.210177, 39.955112 ] } }, +{ "type": "Feature", "properties": { "location": "900 N LAWRENCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14447, 39.967618 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11701, 39.976178 ] } }, +{ "type": "Feature", "properties": { "location": "619 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153195, 39.941535 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1579, 39.924925 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154137, 39.948113 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154197, 39.94805 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154168, 39.948145 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154107, 39.948195 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154753, 39.960618 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "600 S CLIFTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159898, 39.94259 ] } }, +{ "type": "Feature", "properties": { "location": "4100 WORRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090845, 40.006967 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177435, 39.942718 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141947, 39.967717 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171257, 39.939615 ] } }, +{ "type": "Feature", "properties": { "location": "1900 SPRUCE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174207, 39.948287 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17146, 39.939738 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BUTTONWOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162392, 39.96211 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174903, 39.950105 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189653, 39.954827 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189833, 39.954318 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158668, 39.920745 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163645, 39.950285 ] } }, +{ "type": "Feature", "properties": { "location": "265 W ALBANUS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128847189448294, 40.026279760722602 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212392, 39.951715 ] } }, +{ "type": "Feature", "properties": { "location": "837 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157568531559093, 39.936566484472003 ] } }, +{ "type": "Feature", "properties": { "location": "900 MOUNTAIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160217, 39.928638 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161598, 39.929477 ] } }, +{ "type": "Feature", "properties": { "location": "3200 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187538, 39.9537 ] } }, +{ "type": "Feature", "properties": { "location": "5400 DISCHER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080774113352902, 40.028712277559798 ] } }, +{ "type": "Feature", "properties": { "location": "1445 N VOGDES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231855899987394, 39.974449988033001 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158355, 39.938457 ] } }, +{ "type": "Feature", "properties": { "location": "1 QUEEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143205, 39.936268 ] } }, +{ "type": "Feature", "properties": { "location": "1 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142428, 39.936967 ] } }, +{ "type": "Feature", "properties": { "location": "6700 LEEDS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.254565239951106, 39.975033297803897 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CANTRELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166093, 39.923427 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155338, 39.92871 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151647, 39.925832 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1549, 39.948723 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155048, 39.947888 ] } }, +{ "type": "Feature", "properties": { "location": "500 SPRUCE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150092, 39.945117 ] } }, +{ "type": "Feature", "properties": { "location": "199 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14459, 39.944498 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CLAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156613867079102, 39.963181756428298 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172187, 39.920908 ] } }, +{ "type": "Feature", "properties": { "location": "5843 ADDISON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.239358129497901, 39.954141056685202 ] } }, +{ "type": "Feature", "properties": { "location": "1700 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170623, 39.94493 ] } }, +{ "type": "Feature", "properties": { "location": "300 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144418, 39.963808 ] } }, +{ "type": "Feature", "properties": { "location": "4001 PINE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.203683333010503, 39.9507315175427 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S CAMAC ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165837, 39.927553 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16651, 39.921495 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154803, 39.929593 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1517, 39.949818 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170855, 39.965778 ] } }, +{ "type": "Feature", "properties": { "location": "100 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136508060246001, 39.968936809660299 ] } }, +{ "type": "Feature", "properties": { "location": "1000 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16319, 39.922323 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BUTTONWOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154715, 39.96082 ] } }, +{ "type": "Feature", "properties": { "location": "599 S 4TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14505, 39.961298 ] } }, +{ "type": "Feature", "properties": { "location": "1 N EDGEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241239615418706, 39.962827249863999 ] } }, +{ "type": "Feature", "properties": { "location": "2100 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178062, 39.945435 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 67TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.253740843501205, 39.974773830525599 ] } }, +{ "type": "Feature", "properties": { "location": "355 KRAMS AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221032342641394, 40.0328599036282 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22801, 40.028277 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168122, 39.939735 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168078, 39.939757 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16813, 39.939815 ] } }, +{ "type": "Feature", "properties": { "location": "6200 REEDLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227625596527005, 39.924901286655498 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 20TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173667, 39.952282 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 10TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158147, 39.9448 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156718, 39.952652 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SCHUBERT ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16977, 39.948265 ] } }, +{ "type": "Feature", "properties": { "location": "2200 WATTS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155322, 39.98635 ] } }, +{ "type": "Feature", "properties": { "location": "2199 S CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174055, 39.924273 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158227, 39.923737 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156348, 39.923962 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172197, 39.920837 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15353, 39.928972 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1226863543109, 40.037813356052098 ] } }, +{ "type": "Feature", "properties": { "location": "1 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.134785, 39.971755 ] } }, +{ "type": "Feature", "properties": { "location": "2600 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135044012724094, 39.9906079587645 ] } }, +{ "type": "Feature", "properties": { "location": "1200 KENILWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163453, 39.94199 ] } }, +{ "type": "Feature", "properties": { "location": "931 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159619137927507, 39.938276477637899 ] } }, +{ "type": "Feature", "properties": { "location": "301 WASHINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150014815216196, 39.934185081815301 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159673, 39.951577 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159462, 39.975972 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "2200 TAGGERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126385, 39.97649 ] } }, +{ "type": "Feature", "properties": { "location": "4000 HOWLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103383380316203, 40.008545817658799 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173847, 39.928657 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RITTENHOUSE SQ", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176073, 39.949015 ] } }, +{ "type": "Feature", "properties": { "location": "4700 LOCUST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216875948554403, 39.954711398206904 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191443324436705, 39.963213814021799 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163372, 39.946595 ] } }, +{ "type": "Feature", "properties": { "location": "1028 N LEITHGOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143892, 39.968668 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173268, 39.925738 ] } }, +{ "type": "Feature", "properties": { "location": "1 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139513, 39.956917 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153532, 39.92937 ] } }, +{ "type": "Feature", "properties": { "location": "1517 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153588, 39.929423 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157395, 39.963587 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CHURCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087995, 40.010632 ] } }, +{ "type": "Feature", "properties": { "location": "951 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163055, 39.922287 ] } }, +{ "type": "Feature", "properties": { "location": "100 GREEN LN", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226688, 40.027137 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 19TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170917, 39.955987 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157117, 39.92025 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154802, 39.929512 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155043, 39.929455 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155787, 39.926747 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15622, 39.961203 ] } }, +{ "type": "Feature", "properties": { "location": "1608 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169343, 39.943255 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188508, 39.958995 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18852, 39.958897 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.188482, 39.958948 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170968, 39.952463 ] } }, +{ "type": "Feature", "properties": { "location": "1812 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171217, 39.95255 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160258, 39.950773 ] } }, +{ "type": "Feature", "properties": { "location": "400 BUDD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202995, 39.960508 ] } }, +{ "type": "Feature", "properties": { "location": "1800 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175865, 39.926425 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221767, 40.030472 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221768, 40.030425 ] } }, +{ "type": "Feature", "properties": { "location": "4200 LOCUST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20896, 39.953668 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S WATTS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169747, 39.920438 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 62ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.245899885599101, 39.956773283905399 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158233, 39.962828 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180814394467703, 39.942758722938201 ] } }, +{ "type": "Feature", "properties": { "location": "608 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152642, 39.94246 ] } }, +{ "type": "Feature", "properties": { "location": "300 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222512, 40.029463 ] } }, +{ "type": "Feature", "properties": { "location": "200 HERMIT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212413, 40.021637 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163688, 39.950128 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149612, 39.939995 ] } }, +{ "type": "Feature", "properties": { "location": "1000 ARCH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156317, 39.95363 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179249308647201, 39.9670232703834 ] } }, +{ "type": "Feature", "properties": { "location": "3756 N PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143160572971993, 40.0090212659629 ] } }, +{ "type": "Feature", "properties": { "location": "2022 MCKEAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17965, 39.926918 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156807, 39.958037 ] } }, +{ "type": "Feature", "properties": { "location": "2042 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172195, 39.965918 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168207, 39.939718 ] } }, +{ "type": "Feature", "properties": { "location": "100 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228478365010005, 40.028997375942502 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 44TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.209785696662493, 39.956338134242998 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15735, 39.91898 ] } }, +{ "type": "Feature", "properties": { "location": "499 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197153, 39.961522 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167147, 39.940515 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 58TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2382199431093, 39.954746095388501 ] } }, +{ "type": "Feature", "properties": { "location": "500 THOMPSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144792, 39.97147 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169005, 39.917963 ] } }, +{ "type": "Feature", "properties": { "location": "100 SPRING GARDEN ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139552, 39.960627 ] } }, +{ "type": "Feature", "properties": { "location": "931 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159619137927507, 39.938276477637899 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164227082120902, 39.918553165112598 ] } }, +{ "type": "Feature", "properties": { "location": "4900 N 5TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132597, 40.026465 ] } }, +{ "type": "Feature", "properties": { "location": "920 N FRONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137838, 39.963435 ] } }, +{ "type": "Feature", "properties": { "location": "400 UNION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.201198071992295, 39.961008416040798 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1601631151768, 39.958044170338397 ] } }, +{ "type": "Feature", "properties": { "location": "900 DALY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16327, 39.921517 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157701049622901, 39.974338009766001 ] } }, +{ "type": "Feature", "properties": { "location": "6141 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226582568443902, 39.926219003183597 ] } }, +{ "type": "Feature", "properties": { "location": "6100 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226582568443902, 39.926219003183597 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146787, 39.931257 ] } }, +{ "type": "Feature", "properties": { "location": "2900 W FLORA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184181216295201, 39.975145038392498 ] } }, +{ "type": "Feature", "properties": { "location": "1800 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173648, 39.936813 ] } }, +{ "type": "Feature", "properties": { "location": "2800 PARRISH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.182682852272904, 39.971818113177903 ] } }, +{ "type": "Feature", "properties": { "location": "200 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142497, 39.964945 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142897, 39.961312 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170512, 39.96562 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150785, 39.94982 ] } }, +{ "type": "Feature", "properties": { "location": "5914 CALLOWHILL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.237761980646994, 39.967884951402702 ] } }, +{ "type": "Feature", "properties": { "location": "638 S CONESTOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232210200476104, 39.950357757358702 ] } }, +{ "type": "Feature", "properties": { "location": "1000 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161695, 39.933328 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160202, 39.953857 ] } }, +{ "type": "Feature", "properties": { "location": "199 S BROAD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162098, 39.958147 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143715, 39.966797 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143698, 39.966825 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155272, 39.98448 ] } }, +{ "type": "Feature", "properties": { "location": "600 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156122, 39.92678 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 7TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153873, 39.94219 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181008, 39.971677 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 38TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199127, 39.952052 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160816253736897, 39.925506610276301 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173545, 39.929995 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171985930870306, 39.925520908107202 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 21ST ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175668, 39.950687 ] } }, +{ "type": "Feature", "properties": { "location": "3300 F ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.117011306597504, 39.998810500751901 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163413, 39.949973 ] } }, +{ "type": "Feature", "properties": { "location": "1400 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161947, 39.963898 ] } }, +{ "type": "Feature", "properties": { "location": "3000 S SMEDLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175724069905101, 39.913192057699298 ] } }, +{ "type": "Feature", "properties": { "location": "1500 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130782, 39.974445 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147613, 39.935467 ] } }, +{ "type": "Feature", "properties": { "location": "899 N RINGGOLD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176482, 39.972307 ] } }, +{ "type": "Feature", "properties": { "location": "2611 S CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168057698764599, 39.917054632990599 ] } }, +{ "type": "Feature", "properties": { "location": "1500 E HEWSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127640852296196, 39.976165501362601 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S PHILIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150761423599505, 39.921304865152301 ] } }, +{ "type": "Feature", "properties": { "location": "900 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160919825913894, 39.928689558008898 ] } }, +{ "type": "Feature", "properties": { "location": "200 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150547, 39.919418 ] } }, +{ "type": "Feature", "properties": { "location": "921 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183702050635304, 39.973542504934699 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152138, 39.950048 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164658498483007, 39.981444208252597 ] } }, +{ "type": "Feature", "properties": { "location": "2100 GREEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174145, 39.965423 ] } }, +{ "type": "Feature", "properties": { "location": "600 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152703, 39.941658 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153202, 39.93813 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090892, 40.007418 ] } }, +{ "type": "Feature", "properties": { "location": "35 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151622, 39.950588 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "1899 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176339292780298, 39.930253317838897 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180922, 39.942698 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154893, 39.94896 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S FRONT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146243, 39.931255 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161347, 39.964507 ] } }, +{ "type": "Feature", "properties": { "location": "2100 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1807967282909, 39.931269215072099 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152936829495303, 39.935681033067901 ] } }, +{ "type": "Feature", "properties": { "location": "112 FARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221420774466196, 39.9619588223958 ] } }, +{ "type": "Feature", "properties": { "location": "400 N AMERICAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142827, 39.958812 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155933, 39.954412 ] } }, +{ "type": "Feature", "properties": { "location": "800 RANSTEAD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155308, 39.95055 ] } }, +{ "type": "Feature", "properties": { "location": "126 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173938611328893, 40.038159691523902 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170608603382604, 39.929515963689603 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155243, 39.95444 ] } }, +{ "type": "Feature", "properties": { "location": "2800 S 66TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227625700981903, 39.918005333597101 ] } }, +{ "type": "Feature", "properties": { "location": "700 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155775, 39.933918 ] } }, +{ "type": "Feature", "properties": { "location": "4300 TOWER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2201, 40.026427 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154945, 39.92953 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153322, 39.933748 ] } }, +{ "type": "Feature", "properties": { "location": "1400 REED ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169387, 39.93315 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128083, 39.967303 ] } }, +{ "type": "Feature", "properties": { "location": "2961 N BAILEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173657893828306, 40.0003389929796 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172427759617506, 39.928492793845301 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARPENTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159585, 39.938162 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15036, 39.928805 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150302, 39.92871 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169562, 39.940787 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169505, 39.940832 ] } }, +{ "type": "Feature", "properties": { "location": "1515 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173249329533803, 39.919712402387098 ] } }, +{ "type": "Feature", "properties": { "location": "1860 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "2800 PARRISH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182682852272904, 39.971818113177903 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151666914140307, 39.920563788661497 ] } }, +{ "type": "Feature", "properties": { "location": "623 S 52ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226949787890803, 39.950082769751901 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 20TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173482, 39.952523 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 20TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17374, 39.952177 ] } }, +{ "type": "Feature", "properties": { "location": "400 E FLORA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.130692, 39.970652 ] } }, +{ "type": "Feature", "properties": { "location": "500 RANDOLPH CT", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151527, 39.942125 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165307, 39.967223 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHEW AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143327, 40.039672 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W GRANGE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141925, 40.041078 ] } }, +{ "type": "Feature", "properties": { "location": "937 N 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140555, 39.965228 ] } }, +{ "type": "Feature", "properties": { "location": "5225 BURTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070410386993501, 40.014999479923702 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227353, 40.031425 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180902, 39.9446 ] } }, +{ "type": "Feature", "properties": { "location": "1700 OLIVE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166060128182494, 39.967579189213403 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104553, 39.99667 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10458, 39.996618 ] } }, +{ "type": "Feature", "properties": { "location": "3900 LANKENAU AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207480038010601, 40.001037446233397 ] } }, +{ "type": "Feature", "properties": { "location": "2600 DAPHNE RD", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208650470071106, 39.999848351961099 ] } }, +{ "type": "Feature", "properties": { "location": "4200 E RIVER RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196515, 40.009165 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159292, 39.920522 ] } }, +{ "type": "Feature", "properties": { "location": "1811 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170218, 39.950518 ] } }, +{ "type": "Feature", "properties": { "location": "500 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127905, 39.969768 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WARREN ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191907, 39.956838 ] } }, +{ "type": "Feature", "properties": { "location": "5200 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070571837352503, 40.015432619831302 ] } }, +{ "type": "Feature", "properties": { "location": "2700 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166283, 39.916017 ] } }, +{ "type": "Feature", "properties": { "location": "600 S RANDOLPH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151547, 39.941725 ] } }, +{ "type": "Feature", "properties": { "location": "317 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124861067352498, 39.997974517684597 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176915, 39.953773 ] } }, +{ "type": "Feature", "properties": { "location": "1200 NECTARINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15917, 39.961552 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S ALDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228246109533799, 39.936858316644901 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176095, 39.94169 ] } }, +{ "type": "Feature", "properties": { "location": "400 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202987447586494, 39.960949236462199 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105953, 39.996417 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105903, 39.996448 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105868, 39.996487 ] } }, +{ "type": "Feature", "properties": { "location": "1915 NORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16921, 39.966862 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N CLEVELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162011456973502, 39.992502984392701 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14369, 39.969617 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132992, 39.968985 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1826912513027, 39.9418637544034 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "131 S 56TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233295, 39.958678 ] } }, +{ "type": "Feature", "properties": { "location": "15014 LIBERTY LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -74.990944351590798, 40.125105001122499 ] } }, +{ "type": "Feature", "properties": { "location": "3300 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114822, 39.999362 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160315, 39.962647 ] } }, +{ "type": "Feature", "properties": { "location": "600 TREE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158382, 39.921312 ] } }, +{ "type": "Feature", "properties": { "location": "400 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202987447586494, 39.960949236462199 ] } }, +{ "type": "Feature", "properties": { "location": "1325 S REESE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153625042229507, 39.931686964491902 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128262, 39.96717 ] } }, +{ "type": "Feature", "properties": { "location": "600 VAN KIRK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099281813445302, 40.042100223624701 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179375, 39.9419 ] } }, +{ "type": "Feature", "properties": { "location": "1511 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16755, 39.944202 ] } }, +{ "type": "Feature", "properties": { "location": "5700 HUNTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "5700 HUNTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "600 W JOHNSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194922130445406, 40.034194798394502 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228153, 40.028362 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2282, 40.028352 ] } }, +{ "type": "Feature", "properties": { "location": "5200 FILBERT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224838, 39.96084 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138662, 39.964325 ] } }, +{ "type": "Feature", "properties": { "location": "1200 PORTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167463, 39.918988 ] } }, +{ "type": "Feature", "properties": { "location": "1128 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157185, 39.934962 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182473, 39.957258 ] } }, +{ "type": "Feature", "properties": { "location": "162 E WALNUT LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175640254225797, 40.043141257328202 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 53RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.228512, 39.952237 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161970851488803, 39.9807846433824 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153355, 39.928915 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N BAILEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173383218315195, 40.001501772481298 ] } }, +{ "type": "Feature", "properties": { "location": "5700 HEGERMAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.062273721725802, 40.014668967166301 ] } }, +{ "type": "Feature", "properties": { "location": "1300 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166293, 39.930265 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165487, 39.967213 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 16TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168833, 39.943628 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162063, 39.958845 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164067, 39.940507 ] } }, +{ "type": "Feature", "properties": { "location": "1300 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163768909327601, 39.943880565987399 ] } }, +{ "type": "Feature", "properties": { "location": "271 HARVEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181664058564607, 40.035302267256903 ] } }, +{ "type": "Feature", "properties": { "location": "200 WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161792, 39.956805 ] } }, +{ "type": "Feature", "properties": { "location": "137 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216442, 40.023412 ] } }, +{ "type": "Feature", "properties": { "location": "100 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.216462, 40.023267 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167888, 39.936725 ] } }, +{ "type": "Feature", "properties": { "location": "5300 HADFIELD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227993214652301, 39.945027257083296 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15663, 39.958997 ] } }, +{ "type": "Feature", "properties": { "location": "200 QUARRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143353, 39.953333 ] } }, +{ "type": "Feature", "properties": { "location": "1630 RODMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169479702617195, 39.944471303251397 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168175, 39.943683 ] } }, +{ "type": "Feature", "properties": { "location": "1 N DEWEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.243192297524203, 39.963073641085103 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181258, 39.970593 ] } }, +{ "type": "Feature", "properties": { "location": "1800 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171778, 39.947447 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 3RD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147007, 39.944577 ] } }, +{ "type": "Feature", "properties": { "location": "800 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "878 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "300 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16411, 39.945557 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154177, 39.926972 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 7TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153848, 39.941758 ] } }, +{ "type": "Feature", "properties": { "location": "4400 CRESSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225395, 40.027205 ] } }, +{ "type": "Feature", "properties": { "location": "913 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156473, 39.948293 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15361, 39.928928 ] } }, +{ "type": "Feature", "properties": { "location": "2500 ALDER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164782, 39.917373 ] } }, +{ "type": "Feature", "properties": { "location": "400 UNION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.201337, 39.960852 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S JUNIPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16818, 39.925775 ] } }, +{ "type": "Feature", "properties": { "location": "100 GAY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22439, 40.026658 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171717, 39.92335 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157345, 39.926523 ] } }, +{ "type": "Feature", "properties": { "location": "300 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131443785731804, 39.969843175205398 ] } }, +{ "type": "Feature", "properties": { "location": "2000 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176533, 39.945575 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206215, 39.955448 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172765, 39.920933 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172758, 39.92096 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154917, 39.929535 ] } }, +{ "type": "Feature", "properties": { "location": "500 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152945, 39.934365 ] } }, +{ "type": "Feature", "properties": { "location": "500 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152865, 39.934308 ] } }, +{ "type": "Feature", "properties": { "location": "500 ELLSWORTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153097, 39.934382 ] } }, +{ "type": "Feature", "properties": { "location": "3000 W SCHOOL HOUSE LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186732, 40.0237 ] } }, +{ "type": "Feature", "properties": { "location": "1700 BLAIR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133497, 39.97527 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "623 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191774818114197, 39.964938538267504 ] } }, +{ "type": "Feature", "properties": { "location": "834 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162109489381905, 39.918276867871597 ] } }, +{ "type": "Feature", "properties": { "location": "800 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161095414317003, 39.918148430685697 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174865, 39.93819 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1798, 39.973617 ] } }, +{ "type": "Feature", "properties": { "location": "5700 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229939961484007, 39.937980140993801 ] } }, +{ "type": "Feature", "properties": { "location": "5700 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229939961484007, 39.937980140993801 ] } }, +{ "type": "Feature", "properties": { "location": "500 OREGON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157097360423407, 39.914915449824697 ] } }, +{ "type": "Feature", "properties": { "location": "900 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155422, 39.937222 ] } }, +{ "type": "Feature", "properties": { "location": "4800 RORER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114553469862898, 40.022871308627899 ] } }, +{ "type": "Feature", "properties": { "location": "4856 RORER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114553469862898, 40.022871308627899 ] } }, +{ "type": "Feature", "properties": { "location": "2700 HOPE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131266217413199, 39.991752396303198 ] } }, +{ "type": "Feature", "properties": { "location": "101 W LEHIGH AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131168510724905, 39.9909262877255 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E JOHNSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167776182979296, 40.059807642199402 ] } }, +{ "type": "Feature", "properties": { "location": "1815 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163733, 39.926925 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159425, 39.923935 ] } }, +{ "type": "Feature", "properties": { "location": "2200 PENNSYLVANIA AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174915, 39.963135 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 39.953752 ] } }, +{ "type": "Feature", "properties": { "location": "1400 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170897324707695, 39.920694676626198 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 40TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20185, 39.957762 ] } }, +{ "type": "Feature", "properties": { "location": "100 JAMESTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21899, 40.023153 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137567, 39.9681 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137543, 39.96808 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137508, 39.968208 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18764, 39.958705 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W BERKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162438804761706, 39.982378840837796 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170752, 39.938153 ] } }, +{ "type": "Feature", "properties": { "location": "169 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WISHART ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118463779973595, 39.996643697457102 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15559, 39.927592 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165385, 39.919532 ] } }, +{ "type": "Feature", "properties": { "location": "400 UNION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.201198071992295, 39.961008416040798 ] } }, +{ "type": "Feature", "properties": { "location": "1913 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178473318287104, 39.922957168176403 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175047, 39.922532 ] } }, +{ "type": "Feature", "properties": { "location": "1800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176453, 39.923953 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157072792076093, 39.930879069225902 ] } }, +{ "type": "Feature", "properties": { "location": "200 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147858803980995, 39.9323537569365 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18108, 39.971555 ] } }, +{ "type": "Feature", "properties": { "location": "700 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158895, 39.926713 ] } }, +{ "type": "Feature", "properties": { "location": "5200 N AMERICAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127713595637005, 40.030312754005699 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163423, 39.94878 ] } }, +{ "type": "Feature", "properties": { "location": "700 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153312, 39.950487 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164227, 39.930987 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162386322830002, 39.925712992903101 ] } }, +{ "type": "Feature", "properties": { "location": "1800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176458, 39.92391 ] } }, +{ "type": "Feature", "properties": { "location": "1000 DALY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164103852945601, 39.921572117598302 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GUYER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230382381546093, 39.917111764473503 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155602, 39.92945 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165172, 39.919935 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165383, 39.919458 ] } }, +{ "type": "Feature", "properties": { "location": "2499 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165403, 39.919383 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163437273571901, 39.939270976189697 ] } }, +{ "type": "Feature", "properties": { "location": "100 W LOUDON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124542, 40.023203 ] } }, +{ "type": "Feature", "properties": { "location": "200 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142797, 39.963478 ] } }, +{ "type": "Feature", "properties": { "location": "800 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161362509413294, 39.916902066690703 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163288354647193, 39.972905150418597 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178128, 39.945167 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170633, 39.949873 ] } }, +{ "type": "Feature", "properties": { "location": "4931 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116665744294906, 40.024392716328002 ] } }, +{ "type": "Feature", "properties": { "location": "1300 IRVING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163392, 39.947337 ] } }, +{ "type": "Feature", "properties": { "location": "900 N AMERICAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.141272, 39.96539 ] } }, +{ "type": "Feature", "properties": { "location": "2700 SOUTH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184797, 39.945832 ] } }, +{ "type": "Feature", "properties": { "location": "2100 BEACH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118387479568597, 39.971960067234498 ] } }, +{ "type": "Feature", "properties": { "location": "1799 TULIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130837, 39.975707 ] } }, +{ "type": "Feature", "properties": { "location": "1400 W LOUDON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147742, 40.0261 ] } }, +{ "type": "Feature", "properties": { "location": "2800 SALMON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.110590181937596, 39.979025175435098 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167413, 39.917762 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SCHUBERT ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170388, 39.948407 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SCHUBERT ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169832, 39.948557 ] } }, +{ "type": "Feature", "properties": { "location": "2529 S 59TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221705818409802, 39.927862141501599 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166657, 39.921902 ] } }, +{ "type": "Feature", "properties": { "location": "2326 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166742, 39.920598 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E LUZERNE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.101885, 40.007642 ] } }, +{ "type": "Feature", "properties": { "location": "200 BALDWIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "200 WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161922, 39.956622 ] } }, +{ "type": "Feature", "properties": { "location": "200 WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162083, 39.956598 ] } }, +{ "type": "Feature", "properties": { "location": "200 WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162278, 39.957047 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SUMMER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160215, 39.957048 ] } }, +{ "type": "Feature", "properties": { "location": "3600 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195468, 39.955592 ] } }, +{ "type": "Feature", "properties": { "location": "1500 BLE MONTROSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168073, 39.939767 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128552110984401, 39.971098778936202 ] } }, +{ "type": "Feature", "properties": { "location": "100 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150633, 39.918097 ] } }, +{ "type": "Feature", "properties": { "location": "1344 KERBAUGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148941846037403, 40.014652030748898 ] } }, +{ "type": "Feature", "properties": { "location": "100 W HEWSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13501, 39.979752 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151055, 39.933313 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227322, 40.031438 ] } }, +{ "type": "Feature", "properties": { "location": "1900 SPRUCE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174202, 39.94826 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16101, 39.920805 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174168, 39.91981 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 22ND ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178132, 39.947562 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "400 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129943766628102, 39.9703675029781 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "2700 E SERGEANT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117778154384794, 39.9759587737571 ] } }, +{ "type": "Feature", "properties": { "location": "4800 N 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13097, 40.025212 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175683, 39.952807 ] } }, +{ "type": "Feature", "properties": { "location": "714 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152013, 39.940447 ] } }, +{ "type": "Feature", "properties": { "location": "700 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15199, 39.940447 ] } }, +{ "type": "Feature", "properties": { "location": "708 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15199, 39.940442 ] } }, +{ "type": "Feature", "properties": { "location": "1600 OLIVE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164223588473305, 39.967546160167501 ] } }, +{ "type": "Feature", "properties": { "location": "1400 OAKMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072502897548205, 40.060467672498199 ] } }, +{ "type": "Feature", "properties": { "location": "3500 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192563, 39.957997 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161022, 39.920848 ] } }, +{ "type": "Feature", "properties": { "location": "1800 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176918, 39.921472 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N HOWARD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130147003518999, 39.999473548668703 ] } }, +{ "type": "Feature", "properties": { "location": "13 JEFFERSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1347118268543, 39.973022241003697 ] } }, +{ "type": "Feature", "properties": { "location": "632 S 55TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.233062298614399, 39.949953586736598 ] } }, +{ "type": "Feature", "properties": { "location": "3400 ORMES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123963183298102, 40.001817288000602 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170842, 39.927127 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BELMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225294978211593, 39.940625097825198 ] } }, +{ "type": "Feature", "properties": { "location": "5431 BELMAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225294978211593, 39.940625097825198 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201455, 39.955138 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "199 N 20TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172473, 39.957515 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154677, 39.932003 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178138, 39.945207 ] } }, +{ "type": "Feature", "properties": { "location": "800 N TAYLOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177528, 39.970028 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178089557315005, 39.971246140363597 ] } }, +{ "type": "Feature", "properties": { "location": "418 TITAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152026695332097, 39.932482806189597 ] } }, +{ "type": "Feature", "properties": { "location": "300 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150322453054201, 39.926409714725899 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161127, 39.958653 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153517, 39.921833 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "273 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "200 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "2722 S MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158796085709895, 39.914496545690298 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 22ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177257, 39.951157 ] } }, +{ "type": "Feature", "properties": { "location": "500 PIERCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15568, 39.926717 ] } }, +{ "type": "Feature", "properties": { "location": "500 PIERCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155633, 39.926723 ] } }, +{ "type": "Feature", "properties": { "location": "200 VINE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142865, 39.955682 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15344, 39.933792 ] } }, +{ "type": "Feature", "properties": { "location": "3700 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1514, 40.010818 ] } }, +{ "type": "Feature", "properties": { "location": "114 E STERNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129830078458298, 39.991274775372297 ] } }, +{ "type": "Feature", "properties": { "location": "300 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143193, 39.969297 ] } }, +{ "type": "Feature", "properties": { "location": "2000 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174003, 39.953402 ] } }, +{ "type": "Feature", "properties": { "location": "2500 BROWN ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178331543988193, 39.970147694148501 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231272, 39.927577 ] } }, +{ "type": "Feature", "properties": { "location": "5558 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231991619159004, 39.960082144561703 ] } }, +{ "type": "Feature", "properties": { "location": "5558 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231991619159004, 39.960082144561703 ] } }, +{ "type": "Feature", "properties": { "location": "6000 BINGHAM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.097776051600903, 40.044112209618397 ] } }, +{ "type": "Feature", "properties": { "location": "500 ROSALIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103038964594006, 40.042908121223199 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15008, 39.946973 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175522, 39.943002 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17531, 39.928032 ] } }, +{ "type": "Feature", "properties": { "location": "3751 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130677397545796, 40.0109056145983 ] } }, +{ "type": "Feature", "properties": { "location": "2844 W ALBERT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177944663218597, 39.9961246504839 ] } }, +{ "type": "Feature", "properties": { "location": "541 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14088, 39.964147 ] } }, +{ "type": "Feature", "properties": { "location": "1 JACKSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146340023950003, 39.920090222294398 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S WILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217348447121694, 39.938485532708398 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158073, 39.958245 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "5218 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226862903027097, 39.955339304556396 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160858, 39.918085 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177413, 39.953785 ] } }, +{ "type": "Feature", "properties": { "location": "2700 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189962494254999, 39.933260230417403 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167378, 39.917697 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167142, 39.942803 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152733, 39.942447 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155298, 39.943885 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22131, 40.02982 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221328, 40.029815 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221317, 40.029863 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221358, 40.029868 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16789, 39.94108 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179608, 39.970587 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134308, 39.972328 ] } }, +{ "type": "Feature", "properties": { "location": "400 DURFOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154874097386497, 39.9194664364557 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DRURY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162888, 39.950568 ] } }, +{ "type": "Feature", "properties": { "location": "400 GASKILL ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149587, 39.942252 ] } }, +{ "type": "Feature", "properties": { "location": "2300 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175492, 39.967325 ] } }, +{ "type": "Feature", "properties": { "location": "627 S 2ND ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145758518732507, 39.9407420953167 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163882, 39.95014 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163188852548998, 39.9220487382116 ] } }, +{ "type": "Feature", "properties": { "location": "4811 GERMANTOWN AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1612047261779, 40.027510148376898 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154018246213298, 39.919580634062001 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130497649603896, 39.972492989740303 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16113, 39.91675 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DRURY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162805, 39.949903 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159772388436295, 39.985340213142798 ] } }, +{ "type": "Feature", "properties": { "location": "800 SNYDER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159755, 39.923165 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156733, 39.960823 ] } }, +{ "type": "Feature", "properties": { "location": "1 E ABBOTTSFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159936119021097, 40.026658824420302 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 26TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183207, 39.945587 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15479, 39.937437 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1549, 39.93732 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154817, 39.937465 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154668, 39.937527 ] } }, +{ "type": "Feature", "properties": { "location": "699 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154777, 39.937463 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169472, 39.91801 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.191075, 39.960795 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 23RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179017, 39.948272 ] } }, +{ "type": "Feature", "properties": { "location": "800 S CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142423, 39.936728 ] } }, +{ "type": "Feature", "properties": { "location": "800 S CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142213, 39.936518 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17983, 39.973277 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N DARIEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142086189519006, 40.008884611696601 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S HICKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173478, 39.917235 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 39TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199348, 39.961523 ] } }, +{ "type": "Feature", "properties": { "location": "700 W BUTLER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140456790540597, 40.009491413250203 ] } }, +{ "type": "Feature", "properties": { "location": "1300 AIRDRIE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149988, 40.009863 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S WARNOCK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16366, 39.924882 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 32ND ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187585, 39.96003 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187588, 39.95999 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 32ND ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187585, 39.960012 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 32ND ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18763, 39.960023 ] } }, +{ "type": "Feature", "properties": { "location": "4100 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204455, 39.956715 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154912, 39.929757 ] } }, +{ "type": "Feature", "properties": { "location": "1600 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169773, 39.943295 ] } }, +{ "type": "Feature", "properties": { "location": "300 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214197519509298, 40.024607249323999 ] } }, +{ "type": "Feature", "properties": { "location": "535 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153502227031296, 39.933105053217403 ] } }, +{ "type": "Feature", "properties": { "location": "500 W LUZERNE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136198231987507, 40.012026523666897 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159033, 39.949575 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.22586, 40.02959 ] } }, +{ "type": "Feature", "properties": { "location": "1631 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170192, 39.942373 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152908, 39.954667 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152787, 39.95453 ] } }, +{ "type": "Feature", "properties": { "location": "2000 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172152, 39.965887 ] } }, +{ "type": "Feature", "properties": { "location": "4029 CLARIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103990037983806, 40.008625827814598 ] } }, +{ "type": "Feature", "properties": { "location": "163 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214617, 40.022207 ] } }, +{ "type": "Feature", "properties": { "location": "163 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "431 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "102 DURFOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149776944048597, 39.918809227849799 ] } }, +{ "type": "Feature", "properties": { "location": "353 SNYDER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153207, 39.922308 ] } }, +{ "type": "Feature", "properties": { "location": "300 SNYDER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153152, 39.922237 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "200 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961776704595, 40.0318986600317 ] } }, +{ "type": "Feature", "properties": { "location": "3469 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1175767096166, 40.000987289979797 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155728, 39.92893 ] } }, +{ "type": "Feature", "properties": { "location": "2400 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177772968472098, 39.965645049350996 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17272, 39.948452 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15956, 39.923922 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159457, 39.923777 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156845, 39.928152 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156817, 39.928188 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078015, 40.02229 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157903, 39.961165 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176115672548605, 39.993999707249202 ] } }, +{ "type": "Feature", "properties": { "location": "400 WIOTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202987447586494, 39.960949236462199 ] } }, +{ "type": "Feature", "properties": { "location": "1200 NOBLE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15823, 39.95998 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155733, 39.929007 ] } }, +{ "type": "Feature", "properties": { "location": "3100 CEDAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.108308, 39.986763 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "200 LOCUST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145447, 39.945292 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "3300 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114982, 39.999313 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113962, 39.999157 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114142, 39.999275 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160908, 39.921042 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 67TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238503129118001, 39.925135658913497 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 67TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238503129118001, 39.925135658913497 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 67TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2378427961238, 39.924571000137803 ] } }, +{ "type": "Feature", "properties": { "location": "200 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "1200 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167645, 39.918888 ] } }, +{ "type": "Feature", "properties": { "location": "4100 L ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10249, 40.009263 ] } }, +{ "type": "Feature", "properties": { "location": "300 N WATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139705, 39.956693 ] } }, +{ "type": "Feature", "properties": { "location": "4700 N PENN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.084892, 40.018227 ] } }, +{ "type": "Feature", "properties": { "location": "231 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149123318507705, 39.929612050273597 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151637, 40.001548 ] } }, +{ "type": "Feature", "properties": { "location": "2619 S DEWEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.223262325963105, 39.923931877858998 ] } }, +{ "type": "Feature", "properties": { "location": "1100 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161472, 39.941282 ] } }, +{ "type": "Feature", "properties": { "location": "300 CAMBRIDGE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142437, 39.96908 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BFE SANSOM ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165008, 39.950662 ] } }, +{ "type": "Feature", "properties": { "location": "6800 GUYER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231966479437006, 39.916001945501797 ] } }, +{ "type": "Feature", "properties": { "location": "500 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155941315198902, 39.922141348588099 ] } }, +{ "type": "Feature", "properties": { "location": "2600 WEBSTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18851, 39.943253 ] } }, +{ "type": "Feature", "properties": { "location": "300 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152917232308994, 39.917092675955402 ] } }, +{ "type": "Feature", "properties": { "location": "300 PORTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152917232308994, 39.917092675955402 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 55TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232553259729798, 39.952358940270202 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 12TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158258, 39.959873 ] } }, +{ "type": "Feature", "properties": { "location": "1700 REED ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172931545813796, 39.933577847589902 ] } }, +{ "type": "Feature", "properties": { "location": "6500 THEODORE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230045163023405, 39.921006059095497 ] } }, +{ "type": "Feature", "properties": { "location": "5300 N 10TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.139502287838596, 40.033563631153797 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180946166820704, 39.968480251838898 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16875, 39.949505 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163677, 39.94988 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15488, 39.929498 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138362, 39.964205 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151666914140307, 39.920563788661497 ] } }, +{ "type": "Feature", "properties": { "location": "300 DALY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152889930306898, 39.920112631853598 ] } }, +{ "type": "Feature", "properties": { "location": "1100 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162033, 39.939847 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "600 WILLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149792, 39.958682 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1426, 39.9685 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142515, 39.968535 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S FRONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145892, 39.932527 ] } }, +{ "type": "Feature", "properties": { "location": "OPPO1021 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15955, 39.942047 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159585, 39.942083 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154653, 39.931945 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154598, 39.932012 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166542, 39.956465 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077792, 40.022003 ] } }, +{ "type": "Feature", "properties": { "location": "190 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169270469598899, 39.956578875057801 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187357739993004, 39.920924832483102 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128153, 39.967232 ] } }, +{ "type": "Feature", "properties": { "location": "400 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152555, 39.92723 ] } }, +{ "type": "Feature", "properties": { "location": "400 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152680331688401, 39.927166807090401 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 36TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193485, 39.958552 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FAIRHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156528, 39.92019 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1764513179712, 39.999164819440303 ] } }, +{ "type": "Feature", "properties": { "location": "700 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160988, 39.916832 ] } }, +{ "type": "Feature", "properties": { "location": "1212 GREEBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.080249206869198, 40.043556619249998 ] } }, +{ "type": "Feature", "properties": { "location": "10 HALL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147919736208905, 39.935213488363999 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152233, 39.972365 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155297, 39.984523 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155415, 39.984495 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150462, 39.928907 ] } }, +{ "type": "Feature", "properties": { "location": "1514 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150462, 39.928892 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S COLORADO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172105, 39.938818 ] } }, +{ "type": "Feature", "properties": { "location": "799 TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180432, 39.970355 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181292, 39.9705 ] } }, +{ "type": "Feature", "properties": { "location": "799 TANEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180445, 39.970333 ] } }, +{ "type": "Feature", "properties": { "location": "784 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181361883320605, 39.969955674450802 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "400 QUINCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160608, 39.944632 ] } }, +{ "type": "Feature", "properties": { "location": "2100 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17668, 39.953502 ] } }, +{ "type": "Feature", "properties": { "location": "3400 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149538, 40.005298 ] } }, +{ "type": "Feature", "properties": { "location": "1900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171463, 39.956237 ] } }, +{ "type": "Feature", "properties": { "location": "300 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214197519509298, 40.024607249323999 ] } }, +{ "type": "Feature", "properties": { "location": "1601 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "1601 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "200 BELGRADE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.134255, 39.972445 ] } }, +{ "type": "Feature", "properties": { "location": "1211 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.133437, 39.96963 ] } }, +{ "type": "Feature", "properties": { "location": "900 BODINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141387, 39.965615 ] } }, +{ "type": "Feature", "properties": { "location": "900 BODINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141342, 39.965652 ] } }, +{ "type": "Feature", "properties": { "location": "900 BODINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14132, 39.965648 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N CLEVELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1637173499618, 39.984545012623798 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N CLEVELAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1637173499618, 39.984545012623798 ] } }, +{ "type": "Feature", "properties": { "location": "2500 ASPEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178358, 39.968913 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175968, 39.972198 ] } }, +{ "type": "Feature", "properties": { "location": "2400 POPLAR ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176245551049803, 39.972272557773401 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CASTOR AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.073475, 40.043728 ] } }, +{ "type": "Feature", "properties": { "location": "3500 BOWMAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188955203229995, 40.011062364854901 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153945060507994, 39.982820771933397 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 16TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159772388436295, 39.985340213142798 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154018246213298, 39.919580634062001 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARSHALL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154917, 39.932518 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156675551221397, 39.922466295618399 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156815, 39.921438 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 31ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187722, 39.96454 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21525, 40.02184 ] } }, +{ "type": "Feature", "properties": { "location": "139 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215307, 40.021875 ] } }, +{ "type": "Feature", "properties": { "location": "2034 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17364, 39.957877 ] } }, +{ "type": "Feature", "properties": { "location": "2034 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17348, 39.958312 ] } }, +{ "type": "Feature", "properties": { "location": "2034 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173765, 39.957762 ] } }, +{ "type": "Feature", "properties": { "location": "2034 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17377, 39.957818 ] } }, +{ "type": "Feature", "properties": { "location": "2034 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173743, 39.957808 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173963, 39.948605 ] } }, +{ "type": "Feature", "properties": { "location": "2034 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17372, 39.957757 ] } }, +{ "type": "Feature", "properties": { "location": "2034 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17372, 39.957833 ] } }, +{ "type": "Feature", "properties": { "location": "2034 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173873, 39.95757 ] } }, +{ "type": "Feature", "properties": { "location": "2034 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173747, 39.957877 ] } }, +{ "type": "Feature", "properties": { "location": "2034 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173783, 39.95782 ] } }, +{ "type": "Feature", "properties": { "location": "1860 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 38TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.197688, 39.957413 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183419604886694, 39.974802665553199 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154918, 39.929602 ] } }, +{ "type": "Feature", "properties": { "location": "500 MARTIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211922972373998, 40.033076280601001 ] } }, +{ "type": "Feature", "properties": { "location": "4218 CHESTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.208028, 39.94838 ] } }, +{ "type": "Feature", "properties": { "location": "500 CHRISTIAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15191, 39.937325 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "2300 BROWN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1751383544606, 39.969745383431302 ] } }, +{ "type": "Feature", "properties": { "location": "1721 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158823285304507, 39.927203263434102 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161068, 39.968292 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17529, 39.94721 ] } }, +{ "type": "Feature", "properties": { "location": "4001 BALTIMORE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204029307656697, 39.949900869790298 ] } }, +{ "type": "Feature", "properties": { "location": "3965 BALTIMORE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.202523212277399, 39.949951546984501 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156867, 39.928132 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "3600 POWELTON AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.193888, 39.9599 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151027067414901, 39.999911503974303 ] } }, +{ "type": "Feature", "properties": { "location": "1100 FEDERAL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162137, 39.934862 ] } }, +{ "type": "Feature", "properties": { "location": "3947 N DELHI ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142962814842207, 40.012115162115002 ] } }, +{ "type": "Feature", "properties": { "location": "1000 HAMILTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155657, 39.96029 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156288, 39.96009 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174545, 39.955213 ] } }, +{ "type": "Feature", "properties": { "location": "4199 APPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218718, 40.024182 ] } }, +{ "type": "Feature", "properties": { "location": "199 PENSDALE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219077, 40.024493 ] } }, +{ "type": "Feature", "properties": { "location": "4199 APPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21868, 40.024242 ] } }, +{ "type": "Feature", "properties": { "location": "4199 APPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218727, 40.024228 ] } }, +{ "type": "Feature", "properties": { "location": "4199 APPLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.218765, 40.024198 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PARRISH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172307, 39.970505 ] } }, +{ "type": "Feature", "properties": { "location": "4200 KENSINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.089685, 40.00969 ] } }, +{ "type": "Feature", "properties": { "location": "6700 GREENWAY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238533384396703, 39.9245827080466 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168892733653493, 39.999730978045299 ] } }, +{ "type": "Feature", "properties": { "location": "1600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173339040144498, 39.924323270472797 ] } }, +{ "type": "Feature", "properties": { "location": "2300 RIDGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172852216052107, 39.9808750523828 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156835, 39.929028 ] } }, +{ "type": "Feature", "properties": { "location": "1200 E PALMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129002, 39.972 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.222357980954996, 39.952661428730103 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170852, 39.95002 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158586236202098, 39.9384364580173 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16465, 39.922372 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 45TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212377, 39.95181 ] } }, +{ "type": "Feature", "properties": { "location": "900 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153562, 39.959585 ] } }, +{ "type": "Feature", "properties": { "location": "2301 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176773335667306, 39.922087351171101 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176628, 39.922668 ] } }, +{ "type": "Feature", "properties": { "location": "600 SEARS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15455, 39.932018 ] } }, +{ "type": "Feature", "properties": { "location": "1500 GREEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164332, 39.964122 ] } }, +{ "type": "Feature", "properties": { "location": "1300 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1305, 39.972262 ] } }, +{ "type": "Feature", "properties": { "location": "1200 VAN KIRK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086470468387802, 40.034965745539701 ] } }, +{ "type": "Feature", "properties": { "location": "6500 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235163, 39.925033 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163837, 39.933768 ] } }, +{ "type": "Feature", "properties": { "location": "1400 FRIENDSHIP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068437, 40.048785 ] } }, +{ "type": "Feature", "properties": { "location": "2400 W HAROLD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171793385482303, 39.9950758319969 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17613, 39.941795 ] } }, +{ "type": "Feature", "properties": { "location": "899 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153618, 39.937932 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162463, 39.965295 ] } }, +{ "type": "Feature", "properties": { "location": "500 BUDD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.204713808159795, 39.962042074735798 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15986, 39.966925 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N 52ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2259150677246, 39.971827555072601 ] } }, +{ "type": "Feature", "properties": { "location": "1100 HALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161970577316396, 39.938892154075901 ] } }, +{ "type": "Feature", "properties": { "location": "5900 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240728233996407, 39.957251822233303 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173543132545106, 39.934282448518097 ] } }, +{ "type": "Feature", "properties": { "location": "1800 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1745592450647, 39.935958819506297 ] } }, +{ "type": "Feature", "properties": { "location": "1721 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171083, 39.944293 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16959, 39.951162 ] } }, +{ "type": "Feature", "properties": { "location": "1700 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169655, 39.950587 ] } }, +{ "type": "Feature", "properties": { "location": "1599 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150295, 39.92884 ] } }, +{ "type": "Feature", "properties": { "location": "2034 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176983, 39.940905 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160393, 39.94216 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170865, 39.938285 ] } }, +{ "type": "Feature", "properties": { "location": "1200 DIAMOND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153638, 39.98419 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168137, 39.943773 ] } }, +{ "type": "Feature", "properties": { "location": "1500 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168077, 39.943525 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167345, 39.917672 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176912, 39.953705 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166643, 39.959285 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156241458550298, 39.928063370512 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179587780004894, 39.971431611038 ] } }, +{ "type": "Feature", "properties": { "location": "144 MALLORY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227362413769299, 40.0297860559456 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155017, 39.929488 ] } }, +{ "type": "Feature", "properties": { "location": "1326 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168148, 39.92535 ] } }, +{ "type": "Feature", "properties": { "location": "2355 S LEE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148461911030395, 39.918444330441197 ] } }, +{ "type": "Feature", "properties": { "location": "5300 MORSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228951320337998, 39.985120433269898 ] } }, +{ "type": "Feature", "properties": { "location": "1000 TREE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164733, 39.922003 ] } }, +{ "type": "Feature", "properties": { "location": "137 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122676584184106, 40.043817504728999 ] } }, +{ "type": "Feature", "properties": { "location": "300 POPLAR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142642, 39.965105 ] } }, +{ "type": "Feature", "properties": { "location": "300 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142622, 39.96512 ] } }, +{ "type": "Feature", "properties": { "location": "4200 REGENT SQ", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207377, 39.947545 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160288, 39.920608 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159252, 39.920547 ] } }, +{ "type": "Feature", "properties": { "location": "874 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "800 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "100 N CARLISLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164647, 39.955422 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 42ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207192, 39.948363 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181114576860494, 39.971056082780301 ] } }, +{ "type": "Feature", "properties": { "location": "246 W CLAPIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167738455206802, 40.024263692138398 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARLBOROUGH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13247, 39.971005 ] } }, +{ "type": "Feature", "properties": { "location": "1200 GERRITT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164253, 39.932042 ] } }, +{ "type": "Feature", "properties": { "location": "4700 GRISCOM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.083908, 40.017867 ] } }, +{ "type": "Feature", "properties": { "location": "100 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148899734855902, 39.920424418815401 ] } }, +{ "type": "Feature", "properties": { "location": "100 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.148899734855902, 39.920424418815401 ] } }, +{ "type": "Feature", "properties": { "location": "1800 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173653, 39.93673 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163612, 39.94508 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 66TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231115361025104, 39.920951834904102 ] } }, +{ "type": "Feature", "properties": { "location": "1418 MASTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1598, 39.974607 ] } }, +{ "type": "Feature", "properties": { "location": "2541 GRAYS FERRY AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18593, 39.941597 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186136097478496, 39.942254499882097 ] } }, +{ "type": "Feature", "properties": { "location": "1399 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155522, 39.98452 ] } }, +{ "type": "Feature", "properties": { "location": "4615 OAKMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.030647370995496, 40.033035126307901 ] } }, +{ "type": "Feature", "properties": { "location": "500 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152895, 39.936072 ] } }, +{ "type": "Feature", "properties": { "location": "1928 N 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16192, 39.983332 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163745, 39.949873 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162058, 39.927103 ] } }, +{ "type": "Feature", "properties": { "location": "5800 MONTROSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2405297448299, 39.948518816909697 ] } }, +{ "type": "Feature", "properties": { "location": "2300 ASPEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176695, 39.968677 ] } }, +{ "type": "Feature", "properties": { "location": "2300 ASPEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17563, 39.968615 ] } }, +{ "type": "Feature", "properties": { "location": "799 N 25TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17802, 39.96999 ] } }, +{ "type": "Feature", "properties": { "location": "1760 MARKET ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169868, 39.953507 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170327, 39.9294 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219316926361003, 39.942212560662902 ] } }, +{ "type": "Feature", "properties": { "location": "326 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132537, 39.973057 ] } }, +{ "type": "Feature", "properties": { "location": "2400 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178022, 39.970102 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 66TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232732559218704, 39.9223113872699 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155685, 39.959505 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17244, 39.919703 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173213, 39.923392 ] } }, +{ "type": "Feature", "properties": { "location": "1503 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17263, 39.91965 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S BROAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17015, 39.923093 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171137, 39.918167 ] } }, +{ "type": "Feature", "properties": { "location": "6227 MERSHON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065584229748794, 40.0300327527519 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196945, 39.96037 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171972, 39.939632 ] } }, +{ "type": "Feature", "properties": { "location": "6100 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "6100 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226187993694893, 39.925897313773703 ] } }, +{ "type": "Feature", "properties": { "location": "300 WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130148, 39.968897 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16105, 39.920787 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160973, 39.920768 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176018, 39.953138 ] } }, +{ "type": "Feature", "properties": { "location": "1700 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173468975528905, 39.931141701056603 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173285, 39.931095 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173240089075804, 39.930896151650501 ] } }, +{ "type": "Feature", "properties": { "location": "600 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154163, 39.93361 ] } }, +{ "type": "Feature", "properties": { "location": "2416 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159672571765, 39.918604543700397 ] } }, +{ "type": "Feature", "properties": { "location": "1900 WHARTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17614, 39.935237 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "4830 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147388022542003, 40.026892380218598 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163707, 39.934725 ] } }, +{ "type": "Feature", "properties": { "location": "300 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154753, 39.92368 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "800 ALMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.124333, 39.974895 ] } }, +{ "type": "Feature", "properties": { "location": "5101 SPRUCE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225015604926796, 39.954468422602098 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175442, 39.94789 ] } }, +{ "type": "Feature", "properties": { "location": "2500 JESSUP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166083, 39.918833 ] } }, +{ "type": "Feature", "properties": { "location": "300 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150882, 39.933332 ] } }, +{ "type": "Feature", "properties": { "location": "1700 TASKER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173232, 39.931237 ] } }, +{ "type": "Feature", "properties": { "location": "3600 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195417, 39.95546 ] } }, +{ "type": "Feature", "properties": { "location": "2100 ARCH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174845, 39.95577 ] } }, +{ "type": "Feature", "properties": { "location": "3700 FILBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197253, 39.957287 ] } }, +{ "type": "Feature", "properties": { "location": "1000 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164107, 39.918578 ] } }, +{ "type": "Feature", "properties": { "location": "4032 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214368, 40.023737 ] } }, +{ "type": "Feature", "properties": { "location": "1600 E BERKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129573765602899, 39.9769151296506 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N FELTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.244265073578006, 39.9730740991834 ] } }, +{ "type": "Feature", "properties": { "location": "815 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157405, 39.93652 ] } }, +{ "type": "Feature", "properties": { "location": "100 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.211407994077206, 39.956538793198 ] } }, +{ "type": "Feature", "properties": { "location": "400 S HUTCHINSON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157498, 39.944168 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191317, 39.957398 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "1608 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169322, 39.943235 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158232, 39.923707 ] } }, +{ "type": "Feature", "properties": { "location": "200 N WATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140163, 39.955175 ] } }, +{ "type": "Feature", "properties": { "location": "200 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142008, 39.962092 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N GRATZ ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164195010476107, 39.984602365249103 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187989848690293, 39.9588431484175 ] } }, +{ "type": "Feature", "properties": { "location": "2300 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.184071432821, 39.931688877464403 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163505, 39.94503 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ROSEBERRY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17711, 39.920635 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161087, 39.938695 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158485, 39.921562 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155875, 39.921418 ] } }, +{ "type": "Feature", "properties": { "location": "4700 VISTA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.030852021310295, 40.0313241791889 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155263, 39.928702 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155657, 39.929225 ] } }, +{ "type": "Feature", "properties": { "location": "300 SAINT MARKS SQ", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.20801, 39.951723 ] } }, +{ "type": "Feature", "properties": { "location": "200 GRAPE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219627, 40.027615 ] } }, +{ "type": "Feature", "properties": { "location": "300 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150350538387002, 39.932698520020601 ] } }, +{ "type": "Feature", "properties": { "location": "1100 BODINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.141215, 39.968685 ] } }, +{ "type": "Feature", "properties": { "location": "800 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15936, 39.925532 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.201677, 39.954823 ] } }, +{ "type": "Feature", "properties": { "location": "2100 BRANDYWINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174267, 39.964762 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 21ST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175095, 39.95352 ] } }, +{ "type": "Feature", "properties": { "location": "614 AMERICAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146782, 39.940852 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "2100 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177087, 39.945368 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154781369644894, 39.9309962592964 ] } }, +{ "type": "Feature", "properties": { "location": "700 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154442, 39.940747 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175955, 39.94165 ] } }, +{ "type": "Feature", "properties": { "location": "500 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156062, 39.925053 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173507, 39.922385 ] } }, +{ "type": "Feature", "properties": { "location": "3037 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185893122079094, 39.974878321914801 ] } }, +{ "type": "Feature", "properties": { "location": "3037 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185893122079094, 39.974878321914801 ] } }, +{ "type": "Feature", "properties": { "location": "3037 W GIRARD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185893122079094, 39.974878321914801 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157072792076093, 39.930879069225902 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 13TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1644, 39.938833 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160833, 39.921215 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226218, 40.027768 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154668, 39.954358 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154755, 39.95428 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154965, 39.954322 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154833, 39.954312 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155237, 39.954462 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15488, 39.954325 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154818, 39.954267 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15532, 39.954438 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154657, 39.954288 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1552, 39.954457 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1554, 39.954345 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155178, 39.954292 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154805, 39.95438 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154737, 39.954267 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156475, 39.953273 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154905, 39.954408 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157854190602805, 39.9556196638149 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155255, 39.954482 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155207, 39.954545 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155142, 39.954368 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154808, 39.954345 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155025, 39.954328 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155177, 39.95456 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159435153904695, 39.955815940348501 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154787, 39.954292 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154822, 39.954317 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154783, 39.954258 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154795, 39.954448 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154837, 39.954347 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154713, 39.954365 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154883, 39.954413 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154792, 39.954433 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15476, 39.954408 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157854190602805, 39.9556196638149 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154702, 39.954337 ] } }, +{ "type": "Feature", "properties": { "location": "800 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15364, 39.954198 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159435153904695, 39.955815940348501 ] } }, +{ "type": "Feature", "properties": { "location": "800 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153695, 39.954167 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154685, 39.954502 ] } }, +{ "type": "Feature", "properties": { "location": "800 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153622, 39.95426 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155157, 39.954277 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15531, 39.9544 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15522, 39.954327 ] } }, +{ "type": "Feature", "properties": { "location": "800 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153875, 39.95424 ] } }, +{ "type": "Feature", "properties": { "location": "800 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153755, 39.954222 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154928211480396, 39.9543332574506 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155148, 39.954337 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154928211480396, 39.9543332574506 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15485, 39.954205 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154928211480396, 39.9543332574506 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154708, 39.954395 ] } }, +{ "type": "Feature", "properties": { "location": "800 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153832, 39.953832 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155233, 39.954523 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155187, 39.954467 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155152, 39.954267 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15589, 39.95317 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155187, 39.954372 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155242, 39.954318 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157854190602805, 39.9556196638149 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15516, 39.954248 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155315, 39.954442 ] } }, +{ "type": "Feature", "properties": { "location": "800 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1539, 39.953848 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155185, 39.954307 ] } }, +{ "type": "Feature", "properties": { "location": "800 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15387, 39.954343 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155192, 39.95434 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155252, 39.954375 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155245, 39.954367 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155233, 39.954328 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155148, 39.954348 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155272, 39.954402 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155178, 39.954302 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155223, 39.954347 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15518, 39.954278 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 9TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154318, 39.955155 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155127, 39.954445 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155153, 39.95427 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 4TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148552, 39.944493 ] } }, +{ "type": "Feature", "properties": { "location": "2100 W PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182556448709803, 39.923120843335099 ] } }, +{ "type": "Feature", "properties": { "location": "6157 N FAIRHILL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.129659506888999, 40.044993805574002 ] } }, +{ "type": "Feature", "properties": { "location": "100 SHURS LN", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217418, 40.022822 ] } }, +{ "type": "Feature", "properties": { "location": "5613 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.234330675958901, 39.955624115473803 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159815, 39.922633 ] } }, +{ "type": "Feature", "properties": { "location": "27 S ASHMEAD PL", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167248859240104, 40.029629386812701 ] } }, +{ "type": "Feature", "properties": { "location": "1000 NOBLE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155315, 39.959688 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151148, 39.940198 ] } }, +{ "type": "Feature", "properties": { "location": "800 S CHRISTOPHER COLUMBUS BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1423075061047, 39.936513875860101 ] } }, +{ "type": "Feature", "properties": { "location": "1523 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1523 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1523 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "399 YORK AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146045457553498, 39.956353111054 ] } }, +{ "type": "Feature", "properties": { "location": "4200 REGENT SQ", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207945741322604, 39.947544417172701 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171312, 39.93957 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157153, 39.935745 ] } }, +{ "type": "Feature", "properties": { "location": "900 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162934457696096, 39.917104372865801 ] } }, +{ "type": "Feature", "properties": { "location": "1700 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175715, 39.920062 ] } }, +{ "type": "Feature", "properties": { "location": "3425 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1175767096166, 40.000987289979797 ] } }, +{ "type": "Feature", "properties": { "location": "3420 RACE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192377, 39.958717 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARLBOROUGH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.13261, 39.97101 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172237, 39.920773 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156102, 39.925153 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158058, 39.92496 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157732, 39.924817 ] } }, +{ "type": "Feature", "properties": { "location": "100 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.128286657062503, 40.001581418141598 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159, 39.94948 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158933, 39.949593 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158878, 39.949527 ] } }, +{ "type": "Feature", "properties": { "location": "400 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15584, 39.91879 ] } }, +{ "type": "Feature", "properties": { "location": "400 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154529043453806, 39.918582992812397 ] } }, +{ "type": "Feature", "properties": { "location": "400 RITNER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154529043453806, 39.918582992812397 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161772083382701, 39.923764960639403 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 61ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.245115470179996, 39.950799713715803 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175067, 39.922535 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 4TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14447, 39.963807 ] } }, +{ "type": "Feature", "properties": { "location": "400 BELGRADE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131775, 39.973165 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "1800 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176502, 39.923933 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 13TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159118, 39.963008 ] } }, +{ "type": "Feature", "properties": { "location": "4600 PINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215361932764694, 39.952179331038899 ] } }, +{ "type": "Feature", "properties": { "location": "4600 PINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214445, 39.95213 ] } }, +{ "type": "Feature", "properties": { "location": "400 S 9TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156668, 39.943928 ] } }, +{ "type": "Feature", "properties": { "location": "35 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "800 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161018, 39.924525 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16083, 39.925633 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160785, 39.925635 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228145, 40.028342 ] } }, +{ "type": "Feature", "properties": { "location": "1744 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196865, 39.960857 ] } }, +{ "type": "Feature", "properties": { "location": "3899 BARING ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19798, 39.960845 ] } }, +{ "type": "Feature", "properties": { "location": "7342 GARMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240952190343293, 39.911827512040297 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152813, 39.97661 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113814658675807, 39.999171380647297 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113942, 39.999323 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114392, 39.999288 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E ANN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.112115, 39.986507 ] } }, +{ "type": "Feature", "properties": { "location": "118 N LAMBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173693138385403, 39.957134671069802 ] } }, +{ "type": "Feature", "properties": { "location": "700 LATONA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15743, 39.933398 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W GRANGE AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140537, 40.04095 ] } }, +{ "type": "Feature", "properties": { "location": "200 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163174777779105, 39.949033689181903 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156033, 39.925117 ] } }, +{ "type": "Feature", "properties": { "location": "5216 OSAGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227323744569901, 39.953131496004502 ] } }, +{ "type": "Feature", "properties": { "location": "3144 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1700685563127, 40.002994439038702 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163412, 39.951932 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157147, 39.9201 ] } }, +{ "type": "Feature", "properties": { "location": "1500 W OLNEY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147483, 40.03911 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 24TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186293, 39.926445 ] } }, +{ "type": "Feature", "properties": { "location": "2700 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181275, 39.970507 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S BROAD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171077, 39.917538 ] } }, +{ "type": "Feature", "properties": { "location": "1500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171712, 39.923357 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 38TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.196827, 39.960042 ] } }, +{ "type": "Feature", "properties": { "location": "500 OREGON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157097360423407, 39.914915449824697 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16743, 39.917702 ] } }, +{ "type": "Feature", "properties": { "location": "2600 JESSUP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166377, 39.917523 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N TAYLOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1700685563127, 40.002994439038702 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154903, 39.929373 ] } }, +{ "type": "Feature", "properties": { "location": "800 N BAMBREY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178802, 39.97134 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 11TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161552, 39.936763 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 11TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161448, 39.936893 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230698, 39.918517 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.232248012542499, 39.936745311179003 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16811, 39.929185 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163236774265201, 39.984253901258199 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N MARSTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179818, 39.980517 ] } }, +{ "type": "Feature", "properties": { "location": "300 QUINCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160415, 39.945793 ] } }, +{ "type": "Feature", "properties": { "location": "400 S CAPITOL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17561, 39.946765 ] } }, +{ "type": "Feature", "properties": { "location": "503 PIERCE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "1310 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16362, 39.944102 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152828242509699, 39.928870076451503 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153523, 39.92898 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N DOVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1760749057037, 40.005396373413603 ] } }, +{ "type": "Feature", "properties": { "location": "200 RUBICAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961164957796, 40.029263654389503 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169802, 39.926892 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16988, 39.926892 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179214045664594, 39.942299776753799 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E ESTAUGH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.10976, 39.999993 ] } }, +{ "type": "Feature", "properties": { "location": "200 TROTTERS ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144363, 39.94888 ] } }, +{ "type": "Feature", "properties": { "location": "200 TROTTERS ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14453, 39.9489 ] } }, +{ "type": "Feature", "properties": { "location": "1500 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1698673520592, 39.935253223220997 ] } }, +{ "type": "Feature", "properties": { "location": "100 DUPONT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227750074937902, 40.028285816233797 ] } }, +{ "type": "Feature", "properties": { "location": "215 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224978854150393, 40.029976752046998 ] } }, +{ "type": "Feature", "properties": { "location": "200 DUPONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224978854150393, 40.029976752046998 ] } }, +{ "type": "Feature", "properties": { "location": "5100 CHESTER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219316926361003, 39.942212560662902 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132943, 39.968967 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DAY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132952, 39.968955 ] } }, +{ "type": "Feature", "properties": { "location": "6100 LUDLOW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.243243866227303, 39.961476011197398 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172238, 39.928465 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 23RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180864860096406, 39.942508322481601 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155498, 39.929873 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15572, 39.92984 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155577, 39.92989 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154913, 39.929543 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1055, 39.996668 ] } }, +{ "type": "Feature", "properties": { "location": "700 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159233, 39.923503 ] } }, +{ "type": "Feature", "properties": { "location": "2500 TILTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.11746, 39.975915 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155483, 39.927608 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156423, 39.916337 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 34TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190918, 39.958613 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S CLARION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166828, 39.930215 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163560476881699, 39.982791234811401 ] } }, +{ "type": "Feature", "properties": { "location": "3500 JANNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099833519642601, 39.994700297769803 ] } }, +{ "type": "Feature", "properties": { "location": "600 GREENWICH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155672, 39.929643 ] } }, +{ "type": "Feature", "properties": { "location": "200 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150807, 39.918115 ] } }, +{ "type": "Feature", "properties": { "location": "1000 JOHNSTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164968, 39.914585 ] } }, +{ "type": "Feature", "properties": { "location": "40 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164298523013301, 40.030578741590404 ] } }, +{ "type": "Feature", "properties": { "location": "1400 STEVENS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079196185666703, 40.035921510669297 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167073, 39.95646 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166827, 39.955967 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166817, 39.955993 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166797181182105, 39.956741061530899 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167018, 39.95656 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16694, 39.956357 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 24TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.180702, 39.946105 ] } }, +{ "type": "Feature", "properties": { "location": "229 S FRAZIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234890303804207, 39.957529120091102 ] } }, +{ "type": "Feature", "properties": { "location": "1100 ELLSWORTH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163313, 39.936078 ] } }, +{ "type": "Feature", "properties": { "location": "200 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961776704595, 40.0318986600317 ] } }, +{ "type": "Feature", "properties": { "location": "200 DELPHINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127961776704595, 40.0318986600317 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162647, 39.943888 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15323, 39.938122 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153135, 39.938063 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158068, 39.925038 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155032, 39.929525 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224485, 40.028122 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165904169643795, 39.967160512503497 ] } }, +{ "type": "Feature", "properties": { "location": "100 W ROOSEVELT BLVD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127173, 40.024788 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 21ST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17419, 39.957902 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15537, 39.921202 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.166123, 39.92309 ] } }, +{ "type": "Feature", "properties": { "location": "1154 N 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143165743051796, 39.969631278052297 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S WARNOCK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16494, 39.919585 ] } }, +{ "type": "Feature", "properties": { "location": "4500 HIGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228175, 40.028477 ] } }, +{ "type": "Feature", "properties": { "location": "2000 DARIEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160477, 39.924345 ] } }, +{ "type": "Feature", "properties": { "location": "1800 N 11TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.152079598092897, 39.980278880820201 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174230275617404, 39.941222439495903 ] } }, +{ "type": "Feature", "properties": { "location": "1050 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138635, 39.966637 ] } }, +{ "type": "Feature", "properties": { "location": "100 W WILDEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.136946456217501, 39.967327634254502 ] } }, +{ "type": "Feature", "properties": { "location": "4129 GREEBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.054518379160896, 40.028532519457002 ] } }, +{ "type": "Feature", "properties": { "location": "4100 GREEBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.054518379160896, 40.028532519457002 ] } }, +{ "type": "Feature", "properties": { "location": "10750 GIFFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.024964787473493, 40.111674395098703 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153468, 39.929765 ] } }, +{ "type": "Feature", "properties": { "location": "450 N 18TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168002, 39.962467 ] } }, +{ "type": "Feature", "properties": { "location": "4500 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.085812, 40.014455 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166825, 39.920112 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16684, 39.920093 ] } }, +{ "type": "Feature", "properties": { "location": "3700 CRESSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.212784684631004, 40.018356957214301 ] } }, +{ "type": "Feature", "properties": { "location": "699 N 16TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164242, 39.964993 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16521, 39.964915 ] } }, +{ "type": "Feature", "properties": { "location": "1400 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166587, 39.94248 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178293, 39.93923 ] } }, +{ "type": "Feature", "properties": { "location": "3900 SPRING GARDEN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199918, 39.961893 ] } }, +{ "type": "Feature", "properties": { "location": "616 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153048, 39.941735 ] } }, +{ "type": "Feature", "properties": { "location": "100 W HEWSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.135187, 39.97988 ] } }, +{ "type": "Feature", "properties": { "location": "1600 WALLACE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164870235389301, 39.965656741764498 ] } }, +{ "type": "Feature", "properties": { "location": "5100 RANSTEAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224673, 39.959157 ] } }, +{ "type": "Feature", "properties": { "location": "600 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152338, 39.944428 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S MOLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171202680219693, 39.9302186466291 ] } }, +{ "type": "Feature", "properties": { "location": "200 NEW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143046514553305, 39.955143513987899 ] } }, +{ "type": "Feature", "properties": { "location": "5000 LOCUST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.222787312603998, 39.955443893626999 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174403, 39.940477 ] } }, +{ "type": "Feature", "properties": { "location": "2500 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178089557315005, 39.971246140363597 ] } }, +{ "type": "Feature", "properties": { "location": "1500 ORTHODOX ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086613, 40.015253 ] } }, +{ "type": "Feature", "properties": { "location": "2419 W LEHIGH AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171557959469197, 39.996143309629304 ] } }, +{ "type": "Feature", "properties": { "location": "1530 SUSQUEHANNA AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127177, 39.976672 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168662, 39.933755 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W RUSSELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149402, 40.005203 ] } }, +{ "type": "Feature", "properties": { "location": "800 DUDLEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160166865287906, 39.924822582971203 ] } }, +{ "type": "Feature", "properties": { "location": "729 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160042473615405, 39.918014934810998 ] } }, +{ "type": "Feature", "properties": { "location": "2600 SHIELDS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.230129822325495, 39.919097764043002 ] } }, +{ "type": "Feature", "properties": { "location": "1700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175305, 39.922627 ] } }, +{ "type": "Feature", "properties": { "location": "600 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151753, 39.945005 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156693, 39.960968 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174535, 39.955352 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157613851112103, 39.932671851056099 ] } }, +{ "type": "Feature", "properties": { "location": "6600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236328265977804, 39.924866610348701 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S JESSUP ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165778, 39.919248 ] } }, +{ "type": "Feature", "properties": { "location": "6400 WOODLAND AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234347, 39.925672 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153225, 39.938138 ] } }, +{ "type": "Feature", "properties": { "location": "622 S 2ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145758518732507, 39.9407420953167 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177292, 39.953568 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 57TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236595558098003, 39.952983628431298 ] } }, +{ "type": "Feature", "properties": { "location": "501 S 57TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236595558098003, 39.952983628431298 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198418, 39.951162 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14598, 39.939817 ] } }, +{ "type": "Feature", "properties": { "location": "3800 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197277010237499, 39.960467515074001 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15578, 39.928963 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 32ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187608, 39.96001 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 16TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174168370335394, 39.919186938896402 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15922, 39.920547 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17662, 39.922657 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157822, 39.949672 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157905, 39.949203 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157978, 39.949067 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157602, 39.947227 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157908, 39.948863 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159073, 39.948917 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157782, 39.949215 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157495, 39.949647 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157908, 39.94916 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157967, 39.949437 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157893, 39.94926 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157635, 39.9493 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15793, 39.949072 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15817, 39.948672 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158013, 39.949277 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15794, 39.949205 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158122, 39.949293 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157655, 39.948733 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158418, 39.950008 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157768, 39.949232 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158007, 39.94919 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157695, 39.94943 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157972, 39.949383 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157958, 39.949198 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157962, 39.949197 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157958, 39.949648 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15782, 39.949562 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157912, 39.949408 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157783, 39.949327 ] } }, +{ "type": "Feature", "properties": { "location": "1132 S 46TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211487, 39.945885 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PASSYUNK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173923, 39.92489 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 19TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.174915, 39.937907 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175372, 39.943543 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S GARNET ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176252884879901, 39.9346372680467 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WEIKEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.101853855160599, 39.993180355723297 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160325, 39.9515 ] } }, +{ "type": "Feature", "properties": { "location": "5900 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232811858843803, 39.9359672527439 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173587, 39.955465 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173628, 39.955203 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153503, 39.929233 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153557, 39.929348 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153528, 39.929207 ] } }, +{ "type": "Feature", "properties": { "location": "500 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127529782160295, 39.9699148527218 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176975, 39.921348 ] } }, +{ "type": "Feature", "properties": { "location": "3600 FREELAND AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.206277587557295, 40.018020776558899 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155455, 39.927145 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "6139 MARKET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.244371245132299, 39.962408991001602 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MASSEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234788011345998, 39.9179860542299 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153635, 39.96015 ] } }, +{ "type": "Feature", "properties": { "location": "1500 NAUDAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167105, 39.944457 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154443, 39.932462 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171863, 39.939792 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164642, 39.929963 ] } }, +{ "type": "Feature", "properties": { "location": "5700 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142313, 40.03961 ] } }, +{ "type": "Feature", "properties": { "location": "1158 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157295, 39.934138 ] } }, +{ "type": "Feature", "properties": { "location": "600 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157507155260802, 39.922341778429498 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179214045664594, 39.942299776753799 ] } }, +{ "type": "Feature", "properties": { "location": "1120 LEMON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1564394028522, 39.963951684719397 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157352, 39.926603 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 7TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157445, 39.926573 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176608, 39.922687 ] } }, +{ "type": "Feature", "properties": { "location": "801 N 21ST ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.172381888351893, 39.969933675077201 ] } }, +{ "type": "Feature", "properties": { "location": "5214 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070571837352503, 40.015432619831302 ] } }, +{ "type": "Feature", "properties": { "location": "5200 GLENLOCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.070571837352503, 40.015432619831302 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168661902492602, 39.998157881655402 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FRENCH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161934454288996, 39.986521854316699 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174895, 39.947102 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175088, 39.947063 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17499, 39.947185 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17535, 39.947167 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175327, 39.947192 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175303, 39.947173 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1754, 39.947198 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174862, 39.947075 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SIGEL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175428, 39.928105 ] } }, +{ "type": "Feature", "properties": { "location": "3024 N BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168569719977, 40.001224136667098 ] } }, +{ "type": "Feature", "properties": { "location": "740 CHURCH LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1614922972351, 40.043128423595398 ] } }, +{ "type": "Feature", "properties": { "location": "1729 S 20TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.178397974977003, 39.929487894781403 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SHUNK ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164747, 39.917375 ] } }, +{ "type": "Feature", "properties": { "location": "616 S 57TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236918584374195, 39.951423607853997 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BERKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125447, 39.970683 ] } }, +{ "type": "Feature", "properties": { "location": "1100 EARL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129447, 39.970355 ] } }, +{ "type": "Feature", "properties": { "location": "5101 HAZEL AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225712909647299, 39.951124241254298 ] } }, +{ "type": "Feature", "properties": { "location": "5100 HAZEL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225712909647299, 39.951124241254298 ] } }, +{ "type": "Feature", "properties": { "location": "2200 WINTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183753078188701, 39.925339060813002 ] } }, +{ "type": "Feature", "properties": { "location": "1907 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137327909677893, 39.979903856842803 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "1300 HOWELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.081881568059103, 40.033527780180201 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179587780004894, 39.971431611038 ] } }, +{ "type": "Feature", "properties": { "location": "5500 LAURENS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179554377727996, 40.025586820252201 ] } }, +{ "type": "Feature", "properties": { "location": "1200 W ROCKLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143853090305498, 40.027205553484698 ] } }, +{ "type": "Feature", "properties": { "location": "1200 OREGON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167678, 39.916493 ] } }, +{ "type": "Feature", "properties": { "location": "2142 S SIMPSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234067, 39.926287 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 30TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18252, 39.95753 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158211866833994, 40.010971387071102 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160183, 39.920575 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159002067893297, 39.9204471213273 ] } }, +{ "type": "Feature", "properties": { "location": "300 S FAWN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161742, 39.945463 ] } }, +{ "type": "Feature", "properties": { "location": "1100 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164822, 39.922583 ] } }, +{ "type": "Feature", "properties": { "location": "748 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14982, 39.93896 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147819299671497, 39.940446935552302 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148727, 39.940425 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14924, 39.940455 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149688, 39.938932 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158982, 39.942013 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149755, 39.939218 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168377, 39.947432 ] } }, +{ "type": "Feature", "properties": { "location": "266 S 16TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168083, 39.947567 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 67TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235491657138397, 39.922595659158098 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "700 SIGEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158334695615395, 39.925834606298999 ] } }, +{ "type": "Feature", "properties": { "location": "1404 BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164247, 39.975722 ] } }, +{ "type": "Feature", "properties": { "location": "1300 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162697, 39.948523 ] } }, +{ "type": "Feature", "properties": { "location": "1700 W MONTGOMERY AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161970851488803, 39.9807846433824 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173953, 39.92745 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.19106, 39.960783 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 34TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1909465059735, 39.960522887391697 ] } }, +{ "type": "Feature", "properties": { "location": "2600 OAKFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187864982724605, 39.937895902634999 ] } }, +{ "type": "Feature", "properties": { "location": "3417 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193933, 39.95056 ] } }, +{ "type": "Feature", "properties": { "location": "3417 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193897, 39.950697 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193835, 39.951015 ] } }, +{ "type": "Feature", "properties": { "location": "3417 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193853, 39.9504 ] } }, +{ "type": "Feature", "properties": { "location": "3417 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19393, 39.950567 ] } }, +{ "type": "Feature", "properties": { "location": "3417 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193677, 39.950808 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194172, 39.951138 ] } }, +{ "type": "Feature", "properties": { "location": "3417 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19394, 39.950492 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195322, 39.950645 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179455, 39.924338 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BEACH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128297, 39.967145 ] } }, +{ "type": "Feature", "properties": { "location": "700 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153978, 39.946035 ] } }, +{ "type": "Feature", "properties": { "location": "635 E TIOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117186132536304, 40.001720989813499 ] } }, +{ "type": "Feature", "properties": { "location": "3469 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1175767096166, 40.000987289979797 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142203, 39.9704 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177607, 39.954087 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157155, 39.954598 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163862, 39.950403 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163687, 39.95025 ] } }, +{ "type": "Feature", "properties": { "location": "135 S 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154585, 39.954697 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156752, 39.952603 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152165, 39.94276 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CALLOWHILL ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157357, 39.959037 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SCHUBERT ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16991, 39.948608 ] } }, +{ "type": "Feature", "properties": { "location": "1 N 52ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224697, 39.960693 ] } }, +{ "type": "Feature", "properties": { "location": "300 VINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145337, 39.956015 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173178, 39.926003 ] } }, +{ "type": "Feature", "properties": { "location": "1000 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155795, 39.936042 ] } }, +{ "type": "Feature", "properties": { "location": "500 WATKINS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154856105418801, 39.9270184895189 ] } }, +{ "type": "Feature", "properties": { "location": "400 N PERCY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153688, 39.960008 ] } }, +{ "type": "Feature", "properties": { "location": "200 GRAPE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219927137791004, 40.027418020654501 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.132563, 39.969512 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165477, 39.918735 ] } }, +{ "type": "Feature", "properties": { "location": "1904 KIMBALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174868, 39.939697 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E EYRE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1289636395461, 39.973316444922702 ] } }, +{ "type": "Feature", "properties": { "location": "1905 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176120743923605, 39.9362210772357 ] } }, +{ "type": "Feature", "properties": { "location": "4500 SPRUCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.212721791651305, 39.952943597658198 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177068, 39.947917 ] } }, +{ "type": "Feature", "properties": { "location": "600 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157173, 39.923597 ] } }, +{ "type": "Feature", "properties": { "location": "600 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157175, 39.923578 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16395, 39.947263 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160475, 39.926907 ] } }, +{ "type": "Feature", "properties": { "location": "6700 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238278047178198, 39.923771572903703 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CARPENTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171937, 39.939617 ] } }, +{ "type": "Feature", "properties": { "location": "1516 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15203, 39.92912 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.150325, 39.92882 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 4TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.151798, 39.929483 ] } }, +{ "type": "Feature", "properties": { "location": "1728 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166852, 39.965267 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163943, 39.950307 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164038, 39.950072 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163792, 39.949757 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163847, 39.949343 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163395, 39.950815 ] } }, +{ "type": "Feature", "properties": { "location": "1819 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17383, 39.928252 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MONUMENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162719581551002, 39.982950735098498 ] } }, +{ "type": "Feature", "properties": { "location": "200 SHURS LN", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214197519509298, 40.024607249323999 ] } }, +{ "type": "Feature", "properties": { "location": "3900 PINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.203325, 39.950783 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205582, 39.948212 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 42ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.207057, 39.948457 ] } }, +{ "type": "Feature", "properties": { "location": "906 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17797, 39.941048 ] } }, +{ "type": "Feature", "properties": { "location": "100 S VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176503, 39.951048 ] } }, +{ "type": "Feature", "properties": { "location": "200 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142165, 39.962132 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166413, 39.954217 ] } }, +{ "type": "Feature", "properties": { "location": "1300 BKL S 18TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174278, 39.933793 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "5700 WINDSOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229939961484007, 39.937980140993801 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LONGSHORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064697, 40.04185 ] } }, +{ "type": "Feature", "properties": { "location": "2000 LONGSHORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064693, 40.041932 ] } }, +{ "type": "Feature", "properties": { "location": "3399 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150892, 40.004638 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S CECIL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224751960665202, 39.933283826582397 ] } }, +{ "type": "Feature", "properties": { "location": "1200 BUTTONWOOD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159475, 39.96116 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164897, 39.947065 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16475, 39.946995 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165008, 39.94718 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SCHUBERT ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170287, 39.948587 ] } }, +{ "type": "Feature", "properties": { "location": "1200 N ORIANNA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142317, 39.970262 ] } }, +{ "type": "Feature", "properties": { "location": "400 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143827, 39.96973 ] } }, +{ "type": "Feature", "properties": { "location": "2100 N 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15788, 39.986442 ] } }, +{ "type": "Feature", "properties": { "location": "2300 POPLAR ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175882, 39.972342 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225090148463295, 40.028901944853203 ] } }, +{ "type": "Feature", "properties": { "location": "700 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159457, 39.92436 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138793, 39.964365 ] } }, +{ "type": "Feature", "properties": { "location": "100 ELLEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138907, 39.964323 ] } }, +{ "type": "Feature", "properties": { "location": "3175 WEIKEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108950568311698, 39.9894441862184 ] } }, +{ "type": "Feature", "properties": { "location": "3175 WEIKEL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.108950568311698, 39.9894441862184 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.133420233558496, 39.969159471226902 ] } }, +{ "type": "Feature", "properties": { "location": "1599 S 31ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195837461156003, 39.934642413886898 ] } }, +{ "type": "Feature", "properties": { "location": "1700 ELLSWORTH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173315, 39.937662 ] } }, +{ "type": "Feature", "properties": { "location": "900 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163877, 39.918523 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 26TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186327, 39.941543 ] } }, +{ "type": "Feature", "properties": { "location": "353 SNYDER AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15314, 39.922318 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17528, 39.928762 ] } }, +{ "type": "Feature", "properties": { "location": "3409 BARING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191775, 39.96141 ] } }, +{ "type": "Feature", "properties": { "location": "800 N CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160845, 39.968858 ] } }, +{ "type": "Feature", "properties": { "location": "2300 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179132, 39.95282 ] } }, +{ "type": "Feature", "properties": { "location": "3815 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19771, 39.960018 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15334, 39.93397 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15562, 39.925857 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155525, 39.926048 ] } }, +{ "type": "Feature", "properties": { "location": "500 MCCLELLAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155693, 39.925937 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15737, 39.949363 ] } }, +{ "type": "Feature", "properties": { "location": "3300 N PARK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15123, 40.003027 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "3400 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "3401 N LEE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127809646064307, 40.002288165074702 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156387, 39.93861 ] } }, +{ "type": "Feature", "properties": { "location": "1900 CALLOWHILL ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170045, 39.960617 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 45TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.21245, 39.951832 ] } }, +{ "type": "Feature", "properties": { "location": "3965 BALTIMORE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.202523212277399, 39.949951546984501 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1600 MOUNT VERNON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165675, 39.965145 ] } }, +{ "type": "Feature", "properties": { "location": "900 HOFFMAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162362, 39.925522 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155762, 39.926305 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155763, 39.92633 ] } }, +{ "type": "Feature", "properties": { "location": "2500 MASSEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234788011345998, 39.9179860542299 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "200 E WILDEY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131942, 39.968327 ] } }, +{ "type": "Feature", "properties": { "location": "2000 TITAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.177023, 39.935902 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155105, 39.929997 ] } }, +{ "type": "Feature", "properties": { "location": "1300 MOUNT VERNON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158987, 39.963692 ] } }, +{ "type": "Feature", "properties": { "location": "100 VAN PELT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176175, 39.953925 ] } }, +{ "type": "Feature", "properties": { "location": "2100 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17805, 39.945242 ] } }, +{ "type": "Feature", "properties": { "location": "1453 N VOGDES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.231855899987394, 39.974449988033001 ] } }, +{ "type": "Feature", "properties": { "location": "1720 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172015621389406, 39.940242970575298 ] } }, +{ "type": "Feature", "properties": { "location": "1720 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172015621389406, 39.940242970575298 ] } }, +{ "type": "Feature", "properties": { "location": "5200 LUDLOW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225127, 39.959272 ] } }, +{ "type": "Feature", "properties": { "location": "6000 WASHINGTON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.244686548463406, 39.948013969098099 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S CLARION ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168442, 39.922928 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 27TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.181058, 39.971568 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157017801052902, 39.9576419838642 ] } }, +{ "type": "Feature", "properties": { "location": "500 JACKSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156013, 39.921363 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SEYBERT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160788, 39.973777 ] } }, +{ "type": "Feature", "properties": { "location": "500 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155992, 39.925048 ] } }, +{ "type": "Feature", "properties": { "location": "1800 WILDER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175188342070001, 39.933061952330704 ] } }, +{ "type": "Feature", "properties": { "location": "300 DICKINSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15051, 39.929472 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176457, 39.938527 ] } }, +{ "type": "Feature", "properties": { "location": "3000 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111803, 39.986422 ] } }, +{ "type": "Feature", "properties": { "location": "4500 N 19TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156346957061103, 40.023245894636801 ] } }, +{ "type": "Feature", "properties": { "location": "3000 JASPER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117208163425403, 39.992559916119198 ] } }, +{ "type": "Feature", "properties": { "location": "400 E ALLEGHENY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122958876818601, 39.997721475109799 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197367, 39.95448 ] } }, +{ "type": "Feature", "properties": { "location": "2025 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172103, 39.963807 ] } }, +{ "type": "Feature", "properties": { "location": "2000 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171987, 39.963818 ] } }, +{ "type": "Feature", "properties": { "location": "2000 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172038, 39.963775 ] } }, +{ "type": "Feature", "properties": { "location": "1800 TASKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175044592870194, 39.931345358857598 ] } }, +{ "type": "Feature", "properties": { "location": "413 SLOAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.201272788692194, 39.960689636170898 ] } }, +{ "type": "Feature", "properties": { "location": "500 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153803, 39.929185 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153365, 39.928913 ] } }, +{ "type": "Feature", "properties": { "location": "400 CROSS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153395, 39.92865 ] } }, +{ "type": "Feature", "properties": { "location": "100 WASHINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14655, 39.933695 ] } }, +{ "type": "Feature", "properties": { "location": "100 WASHINGTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14674, 39.933625 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156888567679303, 39.928758871064701 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S BOUVIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175243, 39.9265 ] } }, +{ "type": "Feature", "properties": { "location": "2528 S 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168743, 39.918398 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160393, 39.95113 ] } }, +{ "type": "Feature", "properties": { "location": "200 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "300 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152323, 39.92707 ] } }, +{ "type": "Feature", "properties": { "location": "300 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152382, 39.927087 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157355, 39.9266 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BUTTONWOOD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1562, 39.960837 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MONTROSE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160024679166796, 39.9385882945326 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189501427014207, 39.9606704625037 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189501427014207, 39.9606704625037 ] } }, +{ "type": "Feature", "properties": { "location": "2100 WOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170962834311496, 39.959926427997097 ] } }, +{ "type": "Feature", "properties": { "location": "3865 N GRATZ ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157868428971199, 40.0125124206468 ] } }, +{ "type": "Feature", "properties": { "location": "1000 BAINBRIDGE ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160248, 39.942063 ] } }, +{ "type": "Feature", "properties": { "location": "1100 DALY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165678357127007, 39.921755397296998 ] } }, +{ "type": "Feature", "properties": { "location": "700 EARP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157712, 39.932102 ] } }, +{ "type": "Feature", "properties": { "location": "1100 E PALMER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127903, 39.969815 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SCHUBERT ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170155, 39.948365 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1596, 39.966813 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DRURY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162605, 39.950348 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DRURY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162525, 39.950327 ] } }, +{ "type": "Feature", "properties": { "location": "2233 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S 24TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1861, 39.941328 ] } }, +{ "type": "Feature", "properties": { "location": "2549 KIMBALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185496519750998, 39.941028206072602 ] } }, +{ "type": "Feature", "properties": { "location": "2599 GRAYS FERRY AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.186117, 39.941385 ] } }, +{ "type": "Feature", "properties": { "location": "700 N 25TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178462, 39.968125 ] } }, +{ "type": "Feature", "properties": { "location": "1300 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167062, 39.935725 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155177, 39.954315 ] } }, +{ "type": "Feature", "properties": { "location": "1215 WOOD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159005, 39.958653 ] } }, +{ "type": "Feature", "properties": { "location": "800 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153167, 39.95367 ] } }, +{ "type": "Feature", "properties": { "location": "1100 CARLTON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158117, 39.958357 ] } }, +{ "type": "Feature", "properties": { "location": "800 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15401, 39.95431 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158365, 39.95862 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155515, 39.954422 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.158608, 39.958592 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RACE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157808, 39.955718 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154697, 39.952543 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155438, 39.954418 ] } }, +{ "type": "Feature", "properties": { "location": "1000 RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145952, 39.970118 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MARLBOROUGH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131027, 39.968248 ] } }, +{ "type": "Feature", "properties": { "location": "799 S JESSUP ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161233, 39.940615 ] } }, +{ "type": "Feature", "properties": { "location": "700 S JESSUP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161021210395504, 39.9417047506318 ] } }, +{ "type": "Feature", "properties": { "location": "700 S JESSUP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161021210395504, 39.9417047506318 ] } }, +{ "type": "Feature", "properties": { "location": "1 LETITIA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143253, 39.948457 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S RUBY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222829128404001, 39.940675664596696 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 28TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.182622, 39.970592 ] } }, +{ "type": "Feature", "properties": { "location": "2700 BROWN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181587881561299, 39.9705499375074 ] } }, +{ "type": "Feature", "properties": { "location": "1400 BACH PL", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165752, 39.947587 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127347, 39.976902 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 11TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165507, 39.918618 ] } }, +{ "type": "Feature", "properties": { "location": "1813 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175313, 39.92841 ] } }, +{ "type": "Feature", "properties": { "location": "300 PEMBERTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149287, 39.939577 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S ORKNEY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155454096055195, 39.918067856108799 ] } }, +{ "type": "Feature", "properties": { "location": "1399 WAGNER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145792, 40.031242 ] } }, +{ "type": "Feature", "properties": { "location": "170 MANHEIM ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.168625628047906, 40.026819381357903 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156787, 39.928157 ] } }, +{ "type": "Feature", "properties": { "location": "200 W CLAPIER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167738455206802, 40.024263692138398 ] } }, +{ "type": "Feature", "properties": { "location": "899 N RINGGOLD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176555, 39.972277 ] } }, +{ "type": "Feature", "properties": { "location": "899 N RINGGOLD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176537, 39.972237 ] } }, +{ "type": "Feature", "properties": { "location": "700 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N PARK AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151693, 40.001505 ] } }, +{ "type": "Feature", "properties": { "location": "6000 N 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126244193166599, 40.042464853983702 ] } }, +{ "type": "Feature", "properties": { "location": "2000 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S HICKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17222, 39.923413 ] } }, +{ "type": "Feature", "properties": { "location": "1500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171728, 39.923375 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152643, 39.942458 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "1100 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.137487, 39.968158 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157412, 39.926552 ] } }, +{ "type": "Feature", "properties": { "location": "1100 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16115, 39.941225 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N BAILEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173993049904297, 39.998850896576698 ] } }, +{ "type": "Feature", "properties": { "location": "2826 N BAILEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173993049904297, 39.998850896576698 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N BAILEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173657893828306, 40.0003389929796 ] } }, +{ "type": "Feature", "properties": { "location": "3813 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197778, 39.959812 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S ROSEWOOD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169499104577596, 39.9284318387203 ] } }, +{ "type": "Feature", "properties": { "location": "2100 GOULD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.235764520071896, 39.92554626706 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160002, 39.921827 ] } }, +{ "type": "Feature", "properties": { "location": "400 S WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164367, 39.945515 ] } }, +{ "type": "Feature", "properties": { "location": "400 S WATTS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164363, 39.945533 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151802, 39.949762 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152055, 39.94991 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151912, 39.949887 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149812, 39.946843 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151795, 39.949848 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155242, 39.954085 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155257, 39.954568 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155192, 39.954408 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151817, 39.949942 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152055, 39.949618 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151818, 39.949493 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154745, 39.954272 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151411966648396, 39.949845293803897 ] } }, +{ "type": "Feature", "properties": { "location": "4500 FRANKFORD AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.086207, 40.013888 ] } }, +{ "type": "Feature", "properties": { "location": "500 W MOYAMENSING AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155572, 39.921235 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159963, 39.920467 ] } }, +{ "type": "Feature", "properties": { "location": "700 HOFFMAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157908, 39.924955 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224555, 39.972525 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157752, 39.91779 ] } }, +{ "type": "Feature", "properties": { "location": "2400 POPLAR ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176245551049803, 39.972272557773401 ] } }, +{ "type": "Feature", "properties": { "location": "4500 WILDE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.225090148463295, 40.028901944853203 ] } }, +{ "type": "Feature", "properties": { "location": "233 N 20TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173488, 39.949682 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SCHUBERT ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169963, 39.948377 ] } }, +{ "type": "Feature", "properties": { "location": "1700 SCHUBERT ALY", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17012, 39.948337 ] } }, +{ "type": "Feature", "properties": { "location": "1635 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170108, 39.943757 ] } }, +{ "type": "Feature", "properties": { "location": "799 PENNOCK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181995, 39.970623 ] } }, +{ "type": "Feature", "properties": { "location": "2635 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E SCHILLER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.104458, 39.996605 ] } }, +{ "type": "Feature", "properties": { "location": "5100 VIOLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.222389606258105, 39.980273704307002 ] } }, +{ "type": "Feature", "properties": { "location": "4601 PINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.215361932764694, 39.952179331038899 ] } }, +{ "type": "Feature", "properties": { "location": "4400 BAKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.224458945027905, 40.026937996021402 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 17TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174583076546696, 39.9247705912409 ] } }, +{ "type": "Feature", "properties": { "location": "3800 PEARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197838363486795, 39.960033986899496 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N CAMAC ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153100862886802, 39.986694892521001 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16391, 39.926167 ] } }, +{ "type": "Feature", "properties": { "location": "3200 N NEWKIRK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175516428937001, 40.005323661629902 ] } }, +{ "type": "Feature", "properties": { "location": "1400 WOLF ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170923, 39.922058 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WAVERLY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163185, 39.945108 ] } }, +{ "type": "Feature", "properties": { "location": "1400 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1703460992792, 39.923182946705701 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167597, 39.944185 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.090978, 40.007478 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 21ST ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177863, 39.94146 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176932, 39.953668 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165993380336701, 39.967911778007199 ] } }, +{ "type": "Feature", "properties": { "location": "700 E CORNWALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115954389462203, 39.999083869689898 ] } }, +{ "type": "Feature", "properties": { "location": "967 N 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14547, 39.968268 ] } }, +{ "type": "Feature", "properties": { "location": "1500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17172, 39.923335 ] } }, +{ "type": "Feature", "properties": { "location": "1500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1717, 39.923407 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065792835191004, 40.016496713809801 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.065792835191004, 40.016496713809801 ] } }, +{ "type": "Feature", "properties": { "location": "500 S SARTAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161326072550807, 39.943394058802198 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15525, 39.92865 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155322115779896, 39.928551260953803 ] } }, +{ "type": "Feature", "properties": { "location": "400 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153945, 39.927308 ] } }, +{ "type": "Feature", "properties": { "location": "500 MORRIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15394, 39.927347 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 64TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232523, 39.92586 ] } }, +{ "type": "Feature", "properties": { "location": "4500 MARKET ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211087, 39.958322 ] } }, +{ "type": "Feature", "properties": { "location": "800 MIFFLIN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159308, 39.925458 ] } }, +{ "type": "Feature", "properties": { "location": "6100 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226582568443902, 39.926219003183597 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S GARNET ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178662984364294, 39.923414973128502 ] } }, +{ "type": "Feature", "properties": { "location": "799 S 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179075, 39.942787 ] } }, +{ "type": "Feature", "properties": { "location": "3400 FILBERT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192453, 39.95691 ] } }, +{ "type": "Feature", "properties": { "location": "400 VOLLMER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155474293425698, 39.916665681953397 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176623, 39.922722 ] } }, +{ "type": "Feature", "properties": { "location": "1200 ALTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163775748443996, 39.9369371381934 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 22ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17401, 39.966207 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19281, 39.950775 ] } }, +{ "type": "Feature", "properties": { "location": "599 N 13TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159202, 39.96295 ] } }, +{ "type": "Feature", "properties": { "location": "1100 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157458, 39.961642 ] } }, +{ "type": "Feature", "properties": { "location": "2300 CARLISLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171473, 39.921467 ] } }, +{ "type": "Feature", "properties": { "location": "1400 N ITHAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233808319234996, 39.974235027769303 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155358, 39.92866 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155232, 39.928718 ] } }, +{ "type": "Feature", "properties": { "location": "3900 N 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140930275007506, 40.011861859392901 ] } }, +{ "type": "Feature", "properties": { "location": "5555 CHESTNUT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232145324628306, 39.959337449758003 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "300 CANTRELL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152399996688402, 39.921682175267001 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17747, 39.953698 ] } }, +{ "type": "Feature", "properties": { "location": "1600 ELLSWORTH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170335, 39.93728 ] } }, +{ "type": "Feature", "properties": { "location": "2100 LOCUST ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17402, 39.949327 ] } }, +{ "type": "Feature", "properties": { "location": "600 S 12TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.161828, 39.942733 ] } }, +{ "type": "Feature", "properties": { "location": "600 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152728, 39.941608 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 9TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161622, 39.921967 ] } }, +{ "type": "Feature", "properties": { "location": "442 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131112148426098, 39.974473839710697 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 33RD ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.189688, 39.95476 ] } }, +{ "type": "Feature", "properties": { "location": "1300 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157828, 39.931605 ] } }, +{ "type": "Feature", "properties": { "location": "1700 EDGLEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162029828913603, 39.986088752043003 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S PERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163366086579003, 39.916443594277197 ] } }, +{ "type": "Feature", "properties": { "location": "800 E THAYER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.113903, 39.999257 ] } }, +{ "type": "Feature", "properties": { "location": "299 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163523, 39.94705 ] } }, +{ "type": "Feature", "properties": { "location": "299 S JUNIPER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163435, 39.946915 ] } }, +{ "type": "Feature", "properties": { "location": "2400 POPLAR ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176245551049803, 39.972272557773401 ] } }, +{ "type": "Feature", "properties": { "location": "2400 POPLAR ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176245551049803, 39.972272557773401 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S JUNIPER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.169187, 39.922062 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 15TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167803, 39.94062 ] } }, +{ "type": "Feature", "properties": { "location": "5800 N HOWARD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122366259239996, 40.039351508605201 ] } }, +{ "type": "Feature", "properties": { "location": "4600 YOCUM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211166128814298, 39.945192055643801 ] } }, +{ "type": "Feature", "properties": { "location": "300 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.131443785731804, 39.969843175205398 ] } }, +{ "type": "Feature", "properties": { "location": "2300 FERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183989334270194, 39.932059867899603 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156543, 39.93007 ] } }, +{ "type": "Feature", "properties": { "location": "2000 ADDISON ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176213, 39.946262 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MOORE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169702, 39.92808 ] } }, +{ "type": "Feature", "properties": { "location": "731 KATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154794167967495, 39.941879665199998 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155708, 39.929392 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155613, 39.930023 ] } }, +{ "type": "Feature", "properties": { "location": "799 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180693, 39.969292 ] } }, +{ "type": "Feature", "properties": { "location": "700 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180727, 39.969315 ] } }, +{ "type": "Feature", "properties": { "location": "600 BAINBRIDGE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154103, 39.941305 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154827, 39.954242 ] } }, +{ "type": "Feature", "properties": { "location": "6500 EDMUND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.047876995918401, 40.021360554403003 ] } }, +{ "type": "Feature", "properties": { "location": "1800 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173585, 39.936787 ] } }, +{ "type": "Feature", "properties": { "location": "4500 BAKER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226227, 40.027722 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189501427014207, 39.9606704625037 ] } }, +{ "type": "Feature", "properties": { "location": "3300 WATERLOO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130284327203995, 40.001074927250599 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SWAIN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162812635065094, 39.967698710414702 ] } }, +{ "type": "Feature", "properties": { "location": "6500 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232792966578799, 39.923318525425003 ] } }, +{ "type": "Feature", "properties": { "location": "6500 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232792966578799, 39.923318525425003 ] } }, +{ "type": "Feature", "properties": { "location": "6508 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232792966578799, 39.923318525425003 ] } }, +{ "type": "Feature", "properties": { "location": "3819 FOLSOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.199261097978706, 39.967249460370503 ] } }, +{ "type": "Feature", "properties": { "location": "199 ROSELYN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122938193073097, 40.042310174034199 ] } }, +{ "type": "Feature", "properties": { "location": "199 ROSELYN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.122938193073097, 40.042310174034199 ] } }, +{ "type": "Feature", "properties": { "location": "899 S SWANSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.143297, 39.936263 ] } }, +{ "type": "Feature", "properties": { "location": "1600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168933, 39.944395 ] } }, +{ "type": "Feature", "properties": { "location": "900 SHACKAMAXON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13201, 39.96605 ] } }, +{ "type": "Feature", "properties": { "location": "1500 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170335932913702, 39.930733155947102 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E ANN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1122386083035, 39.986841194637897 ] } }, +{ "type": "Feature", "properties": { "location": "2300 E ANN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1122386083035, 39.986841194637897 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "1700 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162163, 39.927067 ] } }, +{ "type": "Feature", "properties": { "location": "2600 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "2500 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233186011450002, 39.919113482363798 ] } }, +{ "type": "Feature", "properties": { "location": "2615 CARROLL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232874905236898, 39.917178113438197 ] } }, +{ "type": "Feature", "properties": { "location": "400 TREE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155183, 39.92077 ] } }, +{ "type": "Feature", "properties": { "location": "2500 N PATTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.183309296178095, 39.995253935154302 ] } }, +{ "type": "Feature", "properties": { "location": "400 MEMPHIS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132245770484502, 39.974113825685102 ] } }, +{ "type": "Feature", "properties": { "location": "400 MOYER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.13084, 39.971053 ] } }, +{ "type": "Feature", "properties": { "location": "3120 DEFENSE TER", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179450986701596, 40.011465501160799 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171413, 39.927203 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S HICKS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171529307727397, 39.926497961230901 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155553, 39.929507 ] } }, +{ "type": "Feature", "properties": { "location": "2300 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176142, 39.965202 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "181 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "880 ANCHOR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.090636588553096, 40.034685532014699 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224535, 40.028067 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224092207625802, 40.0283116846323 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156892, 39.921517 ] } }, +{ "type": "Feature", "properties": { "location": "5600 HADFIELD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.2317950948228, 39.942357061142502 ] } }, +{ "type": "Feature", "properties": { "location": "157 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "141 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215247, 40.021903 ] } }, +{ "type": "Feature", "properties": { "location": "151 ROSEMAR ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.122676584184106, 40.043817504728999 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S MILDRED ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160962, 39.921085 ] } }, +{ "type": "Feature", "properties": { "location": "1100 GERMANTOWN AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.140418, 39.968943 ] } }, +{ "type": "Feature", "properties": { "location": "5801 MALVERN AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238832737451006, 39.987447427215997 ] } }, +{ "type": "Feature", "properties": { "location": "1900 ASHLEY RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147948829992998, 40.066012650425399 ] } }, +{ "type": "Feature", "properties": { "location": "1900 ASHLEY RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147948829992998, 40.066012650425399 ] } }, +{ "type": "Feature", "properties": { "location": "1800 ASHLEY RD", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146233543872398, 40.065790377754603 ] } }, +{ "type": "Feature", "properties": { "location": "211 S 50TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221623809056894, 39.956159122193299 ] } }, +{ "type": "Feature", "properties": { "location": "606 S DELHI ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158065, 39.942477 ] } }, +{ "type": "Feature", "properties": { "location": "599 N PERCY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153538, 39.962448 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153312, 39.9425 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157655, 39.92523 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157685, 39.925212 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.184497702464697, 39.933592303179303 ] } }, +{ "type": "Feature", "properties": { "location": "600 N 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170527, 39.965638 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 56TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.226258865879402, 39.9382660361685 ] } }, +{ "type": "Feature", "properties": { "location": "1400 CHESTNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163957, 39.950593 ] } }, +{ "type": "Feature", "properties": { "location": "2050 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180024115646404, 39.926542786514901 ] } }, +{ "type": "Feature", "properties": { "location": "900 S 59TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.241774448422206, 39.947387490466802 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105475, 39.996662 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105862, 39.996512 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10558, 39.996625 ] } }, +{ "type": "Feature", "properties": { "location": "969 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088179755099404, 40.032672571545 ] } }, +{ "type": "Feature", "properties": { "location": "900 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.089493502317296, 40.033440277255202 ] } }, +{ "type": "Feature", "properties": { "location": "969 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.088179755099404, 40.032672571545 ] } }, +{ "type": "Feature", "properties": { "location": "35 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "248 SOUTH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.147323, 39.941467 ] } }, +{ "type": "Feature", "properties": { "location": "1627 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163754556967206, 39.970079056239499 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16128, 39.951062 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161197, 39.950915 ] } }, +{ "type": "Feature", "properties": { "location": "2000 S CHADWICK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173723, 39.926128 ] } }, +{ "type": "Feature", "properties": { "location": "800 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151722, 39.937395 ] } }, +{ "type": "Feature", "properties": { "location": "300 VINE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.145335, 39.955892 ] } }, +{ "type": "Feature", "properties": { "location": "2000 N 18TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163236774265201, 39.984253901258199 ] } }, +{ "type": "Feature", "properties": { "location": "1400 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.169555937214795, 39.9268611600002 ] } }, +{ "type": "Feature", "properties": { "location": "1 S VAN PELT ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176342, 39.952252 ] } }, +{ "type": "Feature", "properties": { "location": "417 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "600 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15124, 39.948443 ] } }, +{ "type": "Feature", "properties": { "location": "2642 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317923606129, 39.917938822517002 ] } }, +{ "type": "Feature", "properties": { "location": "2600 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317923606129, 39.917938822517002 ] } }, +{ "type": "Feature", "properties": { "location": "2600 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317923606129, 39.917938822517002 ] } }, +{ "type": "Feature", "properties": { "location": "2600 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317923606129, 39.917938822517002 ] } }, +{ "type": "Feature", "properties": { "location": "2600 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317923606129, 39.917938822517002 ] } }, +{ "type": "Feature", "properties": { "location": "2600 HOBSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2317923606129, 39.917938822517002 ] } }, +{ "type": "Feature", "properties": { "location": "6700 DOREL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229944109033795, 39.916753760948701 ] } }, +{ "type": "Feature", "properties": { "location": "1400 SPARKS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144255706174107, 40.046602409397003 ] } }, +{ "type": "Feature", "properties": { "location": "1500 OGDEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.162330121276298, 39.969907045523101 ] } }, +{ "type": "Feature", "properties": { "location": "3847 MELON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198844894182002, 39.965019260880602 ] } }, +{ "type": "Feature", "properties": { "location": "1 E PRICE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174948486192207, 40.037212943908699 ] } }, +{ "type": "Feature", "properties": { "location": "400 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151930129375302, 39.932893846230201 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RIDGE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158265, 39.962812 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 21ST ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17515, 39.953293 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154953, 39.94912 ] } }, +{ "type": "Feature", "properties": { "location": "600 ALCOTT ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.099266372023294, 40.041400272881503 ] } }, +{ "type": "Feature", "properties": { "location": "500 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157688, 39.923312 ] } }, +{ "type": "Feature", "properties": { "location": "600 MERCY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157687, 39.923295 ] } }, +{ "type": "Feature", "properties": { "location": "199 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144608, 39.944423 ] } }, +{ "type": "Feature", "properties": { "location": "3800 MELON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198844894182002, 39.965019260880602 ] } }, +{ "type": "Feature", "properties": { "location": "6100 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227529884946094, 39.926954104333802 ] } }, +{ "type": "Feature", "properties": { "location": "6330 REGENT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.236871199504506, 39.928633872123797 ] } }, +{ "type": "Feature", "properties": { "location": "4400 OSAGE AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211027, 39.950908 ] } }, +{ "type": "Feature", "properties": { "location": "2400 E CLEMENTINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.107553, 39.987187 ] } }, +{ "type": "Feature", "properties": { "location": "902 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158425, 39.938407 ] } }, +{ "type": "Feature", "properties": { "location": "900 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15838, 39.938492 ] } }, +{ "type": "Feature", "properties": { "location": "904 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158337, 39.938422 ] } }, +{ "type": "Feature", "properties": { "location": "904 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158337, 39.938457 ] } }, +{ "type": "Feature", "properties": { "location": "2200 W 65TH AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.234212, 39.925493 ] } }, +{ "type": "Feature", "properties": { "location": "600 WOLF ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157315, 39.920272 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149543, 39.94714 ] } }, +{ "type": "Feature", "properties": { "location": "1299 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178818, 39.936782 ] } }, +{ "type": "Feature", "properties": { "location": "1228 S 21ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178830603500003, 39.9365416148948 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215168, 40.021985 ] } }, +{ "type": "Feature", "properties": { "location": "143 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215078, 40.021962 ] } }, +{ "type": "Feature", "properties": { "location": "143 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215213, 40.021868 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215103, 40.021902 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "145 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215133, 40.021892 ] } }, +{ "type": "Feature", "properties": { "location": "200 E GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1332, 39.969382 ] } }, +{ "type": "Feature", "properties": { "location": "1248 N CONESTOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229847593186605, 39.971769654472403 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156412, 39.916328 ] } }, +{ "type": "Feature", "properties": { "location": "5100 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225475, 39.972378 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "800 N N FRNT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.137122, 39.96502 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173852, 39.955167 ] } }, +{ "type": "Feature", "properties": { "location": "200 MONROE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14801, 39.939667 ] } }, +{ "type": "Feature", "properties": { "location": "1313 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078220703432194, 40.0430232889412 ] } }, +{ "type": "Feature", "properties": { "location": "900 N 29TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.183702050635304, 39.973542504934699 ] } }, +{ "type": "Feature", "properties": { "location": "1300 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16732, 39.930375 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.17935, 39.925213 ] } }, +{ "type": "Feature", "properties": { "location": "200 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.22453, 40.028057 ] } }, +{ "type": "Feature", "properties": { "location": "100 CARSON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225642185816497, 40.026659511348399 ] } }, +{ "type": "Feature", "properties": { "location": "2100 S BANCROFT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173681509071301, 39.923993053768399 ] } }, +{ "type": "Feature", "properties": { "location": "2119 S BANCROFT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.173681509071301, 39.923993053768399 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RITNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.172460411711995, 39.920892767826999 ] } }, +{ "type": "Feature", "properties": { "location": "1500 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17166, 39.923327 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 15TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171733, 39.923238 ] } }, +{ "type": "Feature", "properties": { "location": "100 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "200 BALDWIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224637186556606, 40.029555777156403 ] } }, +{ "type": "Feature", "properties": { "location": "7500 LEON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.037089287633904, 40.040261151336303 ] } }, +{ "type": "Feature", "properties": { "location": "300 N 13TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160032, 39.958395 ] } }, +{ "type": "Feature", "properties": { "location": "1 CHRISTIAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.144262, 39.935292 ] } }, +{ "type": "Feature", "properties": { "location": "899 S SWANSON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143365, 39.935738 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146653, 39.936635 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 2ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.145888173527496, 39.940142015857198 ] } }, +{ "type": "Feature", "properties": { "location": "500 S 4TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149018, 39.942157 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 3RD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14815, 39.938927 ] } }, +{ "type": "Feature", "properties": { "location": "2600 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.167383, 39.91772 ] } }, +{ "type": "Feature", "properties": { "location": "900 SPRING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154538, 39.955835 ] } }, +{ "type": "Feature", "properties": { "location": "1500 CAMBRIDGE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161798, 39.971088 ] } }, +{ "type": "Feature", "properties": { "location": "600 GERRITT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156353, 39.930988 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153617, 39.92933 ] } }, +{ "type": "Feature", "properties": { "location": "700 LATONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157158, 39.933323 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170327, 39.949715 ] } }, +{ "type": "Feature", "properties": { "location": "600 FITZWATER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152768, 39.94006 ] } }, +{ "type": "Feature", "properties": { "location": "3300 POWELTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19026, 39.960307 ] } }, +{ "type": "Feature", "properties": { "location": "3300 POWELTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190222, 39.960285 ] } }, +{ "type": "Feature", "properties": { "location": "1600 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165837, 39.964393 ] } }, +{ "type": "Feature", "properties": { "location": "899 N 26TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179332, 39.971372 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 26TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.179610415649293, 39.970483746178701 ] } }, +{ "type": "Feature", "properties": { "location": "5100 HAZEL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225712909647299, 39.951124241254298 ] } }, +{ "type": "Feature", "properties": { "location": "634 CARPENTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15468, 39.936675 ] } }, +{ "type": "Feature", "properties": { "location": "500 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155235, 39.928773 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164347, 39.931275 ] } }, +{ "type": "Feature", "properties": { "location": "2600 PARRISH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180962, 39.97158 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163757, 39.949965 ] } }, +{ "type": "Feature", "properties": { "location": "2000 CUTHBERT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174062, 39.95549 ] } }, +{ "type": "Feature", "properties": { "location": "700 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161083, 39.916875 ] } }, +{ "type": "Feature", "properties": { "location": "1000 JACKSON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163205, 39.92235 ] } }, +{ "type": "Feature", "properties": { "location": "1001 DALY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164103852945601, 39.921572117598302 ] } }, +{ "type": "Feature", "properties": { "location": "1200 DALY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167249841150195, 39.921957723835099 ] } }, +{ "type": "Feature", "properties": { "location": "1500 SELLERS ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.087518, 40.014378 ] } }, +{ "type": "Feature", "properties": { "location": "700 W MOYAMENSING AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159108, 39.92053 ] } }, +{ "type": "Feature", "properties": { "location": "700 WOLF ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159, 39.92064 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15867, 39.920712 ] } }, +{ "type": "Feature", "properties": { "location": "2200 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158653, 39.920757 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 8TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160315, 39.920373 ] } }, +{ "type": "Feature", "properties": { "location": "600 SANSOM ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1524, 39.945965 ] } }, +{ "type": "Feature", "properties": { "location": "1500 RANSTEAD ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166272028734994, 39.951753267343001 ] } }, +{ "type": "Feature", "properties": { "location": "100 EAST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.215025337247596, 40.021928550122098 ] } }, +{ "type": "Feature", "properties": { "location": "2100 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.064010298178701, 40.014484142812499 ] } }, +{ "type": "Feature", "properties": { "location": "26 STRAWBERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144412, 39.949023 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176545, 39.93672 ] } }, +{ "type": "Feature", "properties": { "location": "5400 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229144075156199, 39.959729986749799 ] } }, +{ "type": "Feature", "properties": { "location": "1712 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159643369713507, 39.9945595745289 ] } }, +{ "type": "Feature", "properties": { "location": "1712 W LEHIGH AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159643369713507, 39.9945595745289 ] } }, +{ "type": "Feature", "properties": { "location": "900 S DELHI ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159047, 39.939115 ] } }, +{ "type": "Feature", "properties": { "location": "1 CHRISTIAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.14434, 39.935285 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1773406216886, 39.953649911964597 ] } }, +{ "type": "Feature", "properties": { "location": "1612 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165020525835203, 39.964979171754898 ] } }, +{ "type": "Feature", "properties": { "location": "800 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156287, 39.940675 ] } }, +{ "type": "Feature", "properties": { "location": "1100 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158902, 39.94973 ] } }, +{ "type": "Feature", "properties": { "location": "400 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15465, 39.917287 ] } }, +{ "type": "Feature", "properties": { "location": "4100 FRANKFORD AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.09102, 40.00713 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196913, 39.960827 ] } }, +{ "type": "Feature", "properties": { "location": "499 N 38TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197177, 39.962205 ] } }, +{ "type": "Feature", "properties": { "location": "3800 SPRING GARDEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.198317405410506, 39.962165895704999 ] } }, +{ "type": "Feature", "properties": { "location": "6100 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226582568443902, 39.926219003183597 ] } }, +{ "type": "Feature", "properties": { "location": "189 W ONTARIO ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131897471578498, 40.002052328137403 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S CARLISLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16871, 39.933015 ] } }, +{ "type": "Feature", "properties": { "location": "1400 S CARLISLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168698, 39.932975 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221362, 40.029818 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221397, 40.029855 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.221407, 40.029923 ] } }, +{ "type": "Feature", "properties": { "location": "3700 LANCASTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196747, 39.960167 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191767, 39.95746 ] } }, +{ "type": "Feature", "properties": { "location": "1 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.143278, 39.937017 ] } }, +{ "type": "Feature", "properties": { "location": "889 PENNOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181569428095003, 39.972309809873899 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.174975, 39.947127 ] } }, +{ "type": "Feature", "properties": { "location": "6100 ARGYLE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.099146501500798, 40.047157885256603 ] } }, +{ "type": "Feature", "properties": { "location": "4700 SMICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229878733085599, 40.031896413725903 ] } }, +{ "type": "Feature", "properties": { "location": "700 MIFFLIN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.159187, 39.92546 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166917, 39.920185 ] } }, +{ "type": "Feature", "properties": { "location": "2900 N 23RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168340278154304, 39.999657792467197 ] } }, +{ "type": "Feature", "properties": { "location": "2000 PANAMA ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175045, 39.947162 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.17033, 39.949647 ] } }, +{ "type": "Feature", "properties": { "location": "1700 CHANCELLOR ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170152, 39.949543 ] } }, +{ "type": "Feature", "properties": { "location": "200 GRAPE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219927137791004, 40.027418020654501 ] } }, +{ "type": "Feature", "properties": { "location": "200 GRAPE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219927137791004, 40.027418020654501 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.176873, 39.953603 ] } }, +{ "type": "Feature", "properties": { "location": "4500 LUDLOW ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.211345, 39.957525 ] } }, +{ "type": "Feature", "properties": { "location": "2015 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177942293124204, 39.9370298333655 ] } }, +{ "type": "Feature", "properties": { "location": "2015 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177942293124204, 39.9370298333655 ] } }, +{ "type": "Feature", "properties": { "location": "2015 MANTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177942293124204, 39.9370298333655 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15559, 39.929547 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155683, 39.92929 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154815, 39.929515 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155672, 39.929237 ] } }, +{ "type": "Feature", "properties": { "location": "1500 MARSHALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155777, 39.928998 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142418, 39.961108 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.14239, 39.961272 ] } }, +{ "type": "Feature", "properties": { "location": "200 GREEN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142345, 39.961183 ] } }, +{ "type": "Feature", "properties": { "location": "2000 WEBSTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175932, 39.941653 ] } }, +{ "type": "Feature", "properties": { "location": "2800 N 12TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.150408835876405, 39.995306240013399 ] } }, +{ "type": "Feature", "properties": { "location": "800 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153997, 39.954223 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155055, 39.954398 ] } }, +{ "type": "Feature", "properties": { "location": "5216 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226862903027097, 39.955339304556396 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16681, 39.965213 ] } }, +{ "type": "Feature", "properties": { "location": "1700 MOUNT VERNON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167063, 39.965257 ] } }, +{ "type": "Feature", "properties": { "location": "900 CYPRESS ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157473, 39.945578 ] } }, +{ "type": "Feature", "properties": { "location": "6700 CHESTER AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.241658908483103, 39.926501138598098 ] } }, +{ "type": "Feature", "properties": { "location": "1600 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163638, 39.929868 ] } }, +{ "type": "Feature", "properties": { "location": "1600 E PASSYUNK AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163605, 39.929832 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164453, 39.930742 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157367, 39.954628 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1637, 39.950215 ] } }, +{ "type": "Feature", "properties": { "location": "1613 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168378, 39.947375 ] } }, +{ "type": "Feature", "properties": { "location": "910 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155348, 39.95451 ] } }, +{ "type": "Feature", "properties": { "location": "100 FARRAGUT ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.214555, 39.956328 ] } }, +{ "type": "Feature", "properties": { "location": "6400 CHELWYNDE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227404158794599, 39.920691487607897 ] } }, +{ "type": "Feature", "properties": { "location": "799 CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170258, 39.941482 ] } }, +{ "type": "Feature", "properties": { "location": "799 CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170203, 39.941522 ] } }, +{ "type": "Feature", "properties": { "location": "799 CHADWICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170292, 39.941567 ] } }, +{ "type": "Feature", "properties": { "location": "2200 PENNSYLVANIA AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1753703724996, 39.963639793892803 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154387, 39.940407 ] } }, +{ "type": "Feature", "properties": { "location": "6100 N 2ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.123734537075094, 40.043695749716903 ] } }, +{ "type": "Feature", "properties": { "location": "3300 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114937, 39.999405 ] } }, +{ "type": "Feature", "properties": { "location": "3300 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114895, 39.999497 ] } }, +{ "type": "Feature", "properties": { "location": "3300 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114888, 39.999502 ] } }, +{ "type": "Feature", "properties": { "location": "3300 G ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.114868, 39.999452 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155148, 39.95424 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 10TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.164003, 39.918598 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 10TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164033, 39.91852 ] } }, +{ "type": "Feature", "properties": { "location": "600 RANSTEAD ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151972, 39.950012 ] } }, +{ "type": "Feature", "properties": { "location": "199 S 8TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153988, 39.948823 ] } }, +{ "type": "Feature", "properties": { "location": "805 LEAGUE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157112, 39.936478 ] } }, +{ "type": "Feature", "properties": { "location": "1600 W NORRIS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.160933121139607, 39.983727267426097 ] } }, +{ "type": "Feature", "properties": { "location": "3217 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188693, 39.960472 ] } }, +{ "type": "Feature", "properties": { "location": "3217 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.188638, 39.960387 ] } }, +{ "type": "Feature", "properties": { "location": "3200 POWELTON AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.18866, 39.960455 ] } }, +{ "type": "Feature", "properties": { "location": "5841 NORFOLK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240309921115198, 39.949583748659897 ] } }, +{ "type": "Feature", "properties": { "location": "5800 WASHINGTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.240733664755197, 39.947531643213502 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 21ST ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.175352, 39.953427 ] } }, +{ "type": "Feature", "properties": { "location": "5600 N UBER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153315, 40.040513 ] } }, +{ "type": "Feature", "properties": { "location": "600 N BROAD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160675, 39.966133 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 2ND ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.144085, 39.94881 ] } }, +{ "type": "Feature", "properties": { "location": "1200 CLOVER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160298, 39.951625 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156082, 39.925133 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 7TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156888567679303, 39.928758871064701 ] } }, +{ "type": "Feature", "properties": { "location": "6138 GLENMORE AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227529884946094, 39.926954104333802 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 41ST ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.205641772576897, 39.951786057834497 ] } }, +{ "type": "Feature", "properties": { "location": "500 N 11TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.156002, 39.961227 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146443, 39.936955 ] } }, +{ "type": "Feature", "properties": { "location": "899 S 2ND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.146577, 39.936103 ] } }, +{ "type": "Feature", "properties": { "location": "400 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149898, 39.938315 ] } }, +{ "type": "Feature", "properties": { "location": "900 MOYAMENSING AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.147062, 39.935452 ] } }, +{ "type": "Feature", "properties": { "location": "300 FITZWATER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.149942, 39.939242 ] } }, +{ "type": "Feature", "properties": { "location": "317 LYCEUM AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.219956696157595, 40.029184889785903 ] } }, +{ "type": "Feature", "properties": { "location": "1644 N 57TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235592728091305, 39.977912098935803 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 57TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235378234071106, 39.976776618460498 ] } }, +{ "type": "Feature", "properties": { "location": "5700 HUNTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N 57TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.235378234071106, 39.976776618460498 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FAIRMOUNT AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165904169643795, 39.967160512503497 ] } }, +{ "type": "Feature", "properties": { "location": "3733 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19708, 39.951022 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192232, 39.952005 ] } }, +{ "type": "Feature", "properties": { "location": "800 RACE ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153527057126496, 39.955106048688599 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154465, 39.95414 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.192415, 39.951365 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163572, 39.949918 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163745, 39.950048 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16369, 39.950392 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163678, 39.949965 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163307, 39.949503 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163853, 39.949802 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163858, 39.94918 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163463, 39.949695 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163712, 39.950572 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16397, 39.949873 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163687, 39.949935 ] } }, +{ "type": "Feature", "properties": { "location": "1200 MARLBOROUGH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.132463, 39.971007 ] } }, +{ "type": "Feature", "properties": { "location": "4500 RITCHIE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225485, 40.028705 ] } }, +{ "type": "Feature", "properties": { "location": "2300 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181659253546499, 39.942730435679501 ] } }, +{ "type": "Feature", "properties": { "location": "2300 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.181659253546499, 39.942730435679501 ] } }, +{ "type": "Feature", "properties": { "location": "2200 CATHARINE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180011893626997, 39.942528653655998 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RIDGE AVE", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157702, 39.962053 ] } }, +{ "type": "Feature", "properties": { "location": "900 CHERRY ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155222, 39.954443 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.153682, 39.929043 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 5TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.15361, 39.929088 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1550454276165, 39.929768979897901 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154317197008496, 39.929446779271501 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154952, 39.929545 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154978, 39.929515 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163695, 39.949907 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163417, 39.950005 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 5TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149977, 39.94521 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15478, 39.946332 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154877, 39.946378 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154787, 39.946748 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163593, 39.95012 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154695, 39.946545 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163627, 39.950315 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15483, 39.946363 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154763, 39.946372 ] } }, +{ "type": "Feature", "properties": { "location": "299 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154727, 39.946417 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 9TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156788, 39.945162 ] } }, +{ "type": "Feature", "properties": { "location": "1200 SHUNK ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168923, 39.91789 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.21418, 40.02355 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214077, 40.023442 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.213992, 40.023233 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214188, 40.023507 ] } }, +{ "type": "Feature", "properties": { "location": "4000 SMICK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214125, 40.023587 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214132, 40.02349 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214087, 40.023447 ] } }, +{ "type": "Feature", "properties": { "location": "4000 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214047, 40.023392 ] } }, +{ "type": "Feature", "properties": { "location": "4500 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214213, 40.023517 ] } }, +{ "type": "Feature", "properties": { "location": "4018 DEXTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.214328751125194, 40.023652320031097 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154082, 39.927805 ] } }, +{ "type": "Feature", "properties": { "location": "400 MCKEAN ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.153283, 39.923478 ] } }, +{ "type": "Feature", "properties": { "location": "600 RODMAN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152628, 39.94246 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154155, 39.927833 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154085, 39.92777 ] } }, +{ "type": "Feature", "properties": { "location": "1600 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.155237, 39.928732 ] } }, +{ "type": "Feature", "properties": { "location": "500 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154143, 39.927835 ] } }, +{ "type": "Feature", "properties": { "location": "1300 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163615, 39.949928 ] } }, +{ "type": "Feature", "properties": { "location": "1014 BRANDYWINE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15512, 39.962217 ] } }, +{ "type": "Feature", "properties": { "location": "600 MOORE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157315, 39.926542 ] } }, +{ "type": "Feature", "properties": { "location": "500 GREENWICH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154897, 39.929525 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163535, 39.934592 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163535, 39.934655 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.163555, 39.934645 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S 12TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.16361, 39.934495 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138987682111505, 40.014720665919299 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.159, 39.91916 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BOWMAN ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1875826734002, 40.011989975262999 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163872, 39.950203 ] } }, +{ "type": "Feature", "properties": { "location": "1300 KATER ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.165352, 39.943207 ] } }, +{ "type": "Feature", "properties": { "location": "1900 S 20TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178745166534696, 39.927841134082897 ] } }, +{ "type": "Feature", "properties": { "location": "700 S 17TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.170738, 39.942495 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MCKEAN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177675572415396, 39.926661451651597 ] } }, +{ "type": "Feature", "properties": { "location": "1000 S BROAD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166812, 39.936735 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S MOLE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170933765143801, 39.931441113508399 ] } }, +{ "type": "Feature", "properties": { "location": "3340 WALNUT ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191248, 39.95289 ] } }, +{ "type": "Feature", "properties": { "location": "1900 MANNING ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173415, 39.94844 ] } }, +{ "type": "Feature", "properties": { "location": "1399 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.163762, 39.95009 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 4TH ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.148593, 39.944453 ] } }, +{ "type": "Feature", "properties": { "location": "5200 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226862903027097, 39.955339304556396 ] } }, +{ "type": "Feature", "properties": { "location": "5200 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226862903027097, 39.955339304556396 ] } }, +{ "type": "Feature", "properties": { "location": "3200 RACE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.187989848690293, 39.9588431484175 ] } }, +{ "type": "Feature", "properties": { "location": "2000 TASKER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.178184093304594, 39.931754689278499 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.162247995847906, 39.918941700167203 ] } }, +{ "type": "Feature", "properties": { "location": "2200 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177363, 39.953987 ] } }, +{ "type": "Feature", "properties": { "location": "700 PORTER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160842, 39.918122 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16076, 39.918033 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160817, 39.918065 ] } }, +{ "type": "Feature", "properties": { "location": "1000 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157733, 39.949198 ] } }, +{ "type": "Feature", "properties": { "location": "2200 FEDERAL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.180257, 39.937843 ] } }, +{ "type": "Feature", "properties": { "location": "3808 MELON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.198844894182002, 39.965019260880602 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197207, 39.951045 ] } }, +{ "type": "Feature", "properties": { "location": "3700 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.197062, 39.951093 ] } }, +{ "type": "Feature", "properties": { "location": "3700 LUDLOW ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.196332, 39.955793 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105843, 39.996383 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105828, 39.996477 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.10587, 39.996487 ] } }, +{ "type": "Feature", "properties": { "location": "3400 BRADDOCK ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.105577402362201, 39.996600409282102 ] } }, +{ "type": "Feature", "properties": { "location": "2000 E ONTARIO ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.106252, 39.996225 ] } }, +{ "type": "Feature", "properties": { "location": "915 SNYDER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.161586420520194, 39.923335447167801 ] } }, +{ "type": "Feature", "properties": { "location": "3417 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194062, 39.950827 ] } }, +{ "type": "Feature", "properties": { "location": "3417 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193943, 39.951008 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.189368, 39.958725 ] } }, +{ "type": "Feature", "properties": { "location": "3300 RACE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.190031803180901, 39.958790331931503 ] } }, +{ "type": "Feature", "properties": { "location": "200 N 33RD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.18934, 39.958835 ] } }, +{ "type": "Feature", "properties": { "location": "3417 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194068, 39.95064 ] } }, +{ "type": "Feature", "properties": { "location": "3417 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194147, 39.950553 ] } }, +{ "type": "Feature", "properties": { "location": "3417 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194082, 39.950407 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194347, 39.950417 ] } }, +{ "type": "Feature", "properties": { "location": "3417 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.194132, 39.950575 ] } }, +{ "type": "Feature", "properties": { "location": "146 TREE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.149500482281496, 39.920056224154997 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077660288847596, 40.021977457426999 ] } }, +{ "type": "Feature", "properties": { "location": "1600 PRATT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.077660288847596, 40.021977457426999 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "3100 B ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125668298158701, 39.996786067315703 ] } }, +{ "type": "Feature", "properties": { "location": "3100 CUSTER ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.116583532051706, 39.996088842932501 ] } }, +{ "type": "Feature", "properties": { "location": "1800 E CORNWALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109814916832406, 39.997439119271 ] } }, +{ "type": "Feature", "properties": { "location": "1800 S CONESTOGA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.219219828417394, 39.935287067315699 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 5TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156003078694098, 39.918136244446501 ] } }, +{ "type": "Feature", "properties": { "location": "7051 REEDLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.238704806655903, 39.917073900737897 ] } }, +{ "type": "Feature", "properties": { "location": "6300 DICKS AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225614498215606, 39.921207051079499 ] } }, +{ "type": "Feature", "properties": { "location": "100 N RUBY ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227539843246106, 39.962720501877797 ] } }, +{ "type": "Feature", "properties": { "location": "1900 N 63RD ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.247233086820899, 39.984325364875303 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "3100 STOUTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114730890792799, 39.994724919748798 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S BONSALL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.185653272253106, 39.923236076740501 ] } }, +{ "type": "Feature", "properties": { "location": "208 ERICA PL", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.042598191695504, 40.116141267442103 ] } }, +{ "type": "Feature", "properties": { "location": "3100 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128513717328204, 39.997152027281302 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "2100 MOUNTAIN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1807967282909, 39.931269215072099 ] } }, +{ "type": "Feature", "properties": { "location": "5300 WOODLAND AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.217841443550498, 39.937169053182799 ] } }, +{ "type": "Feature", "properties": { "location": "2499 N 50TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.227396297464495, 39.998928530614101 ] } }, +{ "type": "Feature", "properties": { "location": "5120 LUDLOW ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.224005057888206, 39.959313475732401 ] } }, +{ "type": "Feature", "properties": { "location": "3400 MASCHER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.130522002052999, 40.002258286060297 ] } }, +{ "type": "Feature", "properties": { "location": "5400 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227018414596103, 39.942084266968202 ] } }, +{ "type": "Feature", "properties": { "location": "5701 WINDSOR ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.229939961484007, 39.937980140993801 ] } }, +{ "type": "Feature", "properties": { "location": "4600 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.117729166988298, 40.019912280046697 ] } }, +{ "type": "Feature", "properties": { "location": "900 N TANEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179791040402904, 39.973406300405102 ] } }, +{ "type": "Feature", "properties": { "location": "1602 S BEULAH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157487072836801, 39.928644690288202 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187707, 39.958832 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 32ND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.187537, 39.958772 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E EYRE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.12941, 39.974038 ] } }, +{ "type": "Feature", "properties": { "location": "1300 E EYRE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.129357, 39.974045 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193956053929497, 39.950620726522203 ] } }, +{ "type": "Feature", "properties": { "location": "3400 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.193988, 39.950602 ] } }, +{ "type": "Feature", "properties": { "location": "1200 S MARKOE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.210257, 39.944157 ] } }, +{ "type": "Feature", "properties": { "location": "5218 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226583, 39.95535 ] } }, +{ "type": "Feature", "properties": { "location": "5220 IRVING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226862903027097, 39.955339304556396 ] } }, +{ "type": "Feature", "properties": { "location": "5800 COLGATE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102533230407104, 40.042298384526497 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHESTNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156848, 39.950068 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154345, 39.947928 ] } }, +{ "type": "Feature", "properties": { "location": "1000 CHESTNUT ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157092, 39.949952 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15419, 39.947693 ] } }, +{ "type": "Feature", "properties": { "location": "200 S 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.15414, 39.947693 ] } }, +{ "type": "Feature", "properties": { "location": "500 ALCOTT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.102608802946705, 40.043269834837197 ] } }, +{ "type": "Feature", "properties": { "location": "600 E WILDEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126316707691501, 39.970390943341698 ] } }, +{ "type": "Feature", "properties": { "location": "6600 LYNFORD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.07256, 40.042378 ] } }, +{ "type": "Feature", "properties": { "location": "6700 RUTLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.072454617014998, 40.043343221884101 ] } }, +{ "type": "Feature", "properties": { "location": "4561 STILES ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.079211527489406, 40.005890612097403 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 12TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16685, 39.920198 ] } }, +{ "type": "Feature", "properties": { "location": "1200 RITNER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.166862, 39.920205 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 6TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.157537, 39.918953 ] } }, +{ "type": "Feature", "properties": { "location": "3800 SANSOM ST", "violation_desc": "CORNER CLEARANCE CC", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.200115, 39.954513 ] } }, +{ "type": "Feature", "properties": { "location": "3300 POWELTON AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19025, 39.960235 ] } }, +{ "type": "Feature", "properties": { "location": "1600 GREEN ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.16581, 39.964392 ] } }, +{ "type": "Feature", "properties": { "location": "800 SANSOM ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154915, 39.949 ] } }, +{ "type": "Feature", "properties": { "location": "1100 S 7TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155773, 39.933953 ] } }, +{ "type": "Feature", "properties": { "location": "2400 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177828384313003, 39.967387015829999 ] } }, +{ "type": "Feature", "properties": { "location": "900 CATHARINE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157902, 39.939843 ] } }, +{ "type": "Feature", "properties": { "location": "2400 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177107, 39.967378 ] } }, +{ "type": "Feature", "properties": { "location": "533 S 17TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170277, 39.944268 ] } }, +{ "type": "Feature", "properties": { "location": "118 S 18TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170475099884499, 39.951025321189597 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 11TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158048, 39.95358 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156722, 39.952707 ] } }, +{ "type": "Feature", "properties": { "location": "300 S 10TH ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158192, 39.94477 ] } }, +{ "type": "Feature", "properties": { "location": "2400 FAIRMOUNT AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.177828384313003, 39.967387015829999 ] } }, +{ "type": "Feature", "properties": { "location": "99 N 10TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.156448, 39.952607 ] } }, +{ "type": "Feature", "properties": { "location": "5712 HUNTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237062788717495, 39.976909755761703 ] } }, +{ "type": "Feature", "properties": { "location": "6300 MEDIA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.245775878671296, 39.9737223116555 ] } }, +{ "type": "Feature", "properties": { "location": "800 W BRISTOL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.139999735901, 40.017309957302999 ] } }, +{ "type": "Feature", "properties": { "location": "700 E WILLARD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116167308773399, 39.998076481035 ] } }, +{ "type": "Feature", "properties": { "location": "1300 GILHAM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.078220703432194, 40.0430232889412 ] } }, +{ "type": "Feature", "properties": { "location": "2200 N 21ST ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.167461201237103, 39.988551873944999 ] } }, +{ "type": "Feature", "properties": { "location": "417 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "441 N 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206575189905806, 39.960623999308503 ] } }, +{ "type": "Feature", "properties": { "location": "2400 S 6TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.157571175938699, 39.918338403367997 ] } }, +{ "type": "Feature", "properties": { "location": "1300 WALNUT ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1626269596009, 39.949144266835603 ] } }, +{ "type": "Feature", "properties": { "location": "5100 HAZEL AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.225712909647299, 39.951124241254298 ] } }, +{ "type": "Feature", "properties": { "location": "3200 TAMPA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118408174851396, 39.997439361043902 ] } }, +{ "type": "Feature", "properties": { "location": "1600 N SYDENHAM ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.160500305150094, 39.978300283642703 ] } }, +{ "type": "Feature", "properties": { "location": "4231 GRISCOM ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091903611425096, 40.009621523468098 ] } }, +{ "type": "Feature", "properties": { "location": "2500 W STERNER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1730529298448, 39.996811830321903 ] } }, +{ "type": "Feature", "properties": { "location": "625 OREGON AVE", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158937372454403, 39.915169076478897 ] } }, +{ "type": "Feature", "properties": { "location": "3000 N BONSALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.168569719977, 40.001224136667098 ] } }, +{ "type": "Feature", "properties": { "location": "3300 ARGYLE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.111819206454001, 39.998691024209499 ] } }, +{ "type": "Feature", "properties": { "location": "3058 N WATER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.128788001943093, 39.996082865386803 ] } }, +{ "type": "Feature", "properties": { "location": "800 N 24TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.176338712637801, 39.970460408940099 ] } }, +{ "type": "Feature", "properties": { "location": "2900 JANNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.114805389329604, 39.986857444082197 ] } }, +{ "type": "Feature", "properties": { "location": "3100 JANNEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.109234090987698, 39.989766051176296 ] } }, +{ "type": "Feature", "properties": { "location": "2906 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "5800 MONTROSE ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.2405297448299, 39.948518816909697 ] } }, +{ "type": "Feature", "properties": { "location": "339 E ARMAT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1692538549555, 40.0384780477875 ] } }, +{ "type": "Feature", "properties": { "location": "4000 N MARSHALL ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.138491896493704, 40.013083229471299 ] } }, +{ "type": "Feature", "properties": { "location": "1000 MELON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.154356388912802, 39.964787892244097 ] } }, +{ "type": "Feature", "properties": { "location": "4941 BOUDINOT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116665744294906, 40.024392716328002 ] } }, +{ "type": "Feature", "properties": { "location": "5657 E WISTER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158381862660406, 40.041112812155497 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "100 N RUBY ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.227539843246106, 39.962720501877797 ] } }, +{ "type": "Feature", "properties": { "location": "3000 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127298235565505, 39.995328587683701 ] } }, +{ "type": "Feature", "properties": { "location": "400 N 21ST ST", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.173287, 39.962033 ] } }, +{ "type": "Feature", "properties": { "location": "800 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091025852555404, 40.034293984669098 ] } }, +{ "type": "Feature", "properties": { "location": "800 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091025852555404, 40.034293984669098 ] } }, +{ "type": "Feature", "properties": { "location": "861 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091025852555404, 40.034293984669098 ] } }, +{ "type": "Feature", "properties": { "location": "800 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091025852555404, 40.034293984669098 ] } }, +{ "type": "Feature", "properties": { "location": "800 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091025852555404, 40.034293984669098 ] } }, +{ "type": "Feature", "properties": { "location": "1500 S PATTON ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.196892085886901, 39.934779294599998 ] } }, +{ "type": "Feature", "properties": { "location": "300 MARKET ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.146462, 39.95047 ] } }, +{ "type": "Feature", "properties": { "location": "1700 DELANCEY PL", "violation_desc": "CROSSWALK CC", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.171293, 39.94716 ] } }, +{ "type": "Feature", "properties": { "location": "1 S 34TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.19184, 39.954737 ] } }, +{ "type": "Feature", "properties": { "location": "100 N 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152672, 39.954322 ] } }, +{ "type": "Feature", "properties": { "location": "199 N 8TH ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.152663, 39.95424 ] } }, +{ "type": "Feature", "properties": { "location": "200 SPRING GARDEN ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.142268, 39.960685 ] } }, +{ "type": "Feature", "properties": { "location": "3400 LANCASTER AVE", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.191582, 39.957603 ] } }, +{ "type": "Feature", "properties": { "location": "4200 S 42ND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.206805, 39.954763 ] } }, +{ "type": "Feature", "properties": { "location": "3600 SPRUCE ST", "violation_desc": "SIDEWALK CC", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.195547, 39.950948 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S 65TH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.232928932567106, 39.924388524068902 ] } }, +{ "type": "Feature", "properties": { "location": "6200 WHEELER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228080711070206, 39.925256005062799 ] } }, +{ "type": "Feature", "properties": { "location": "6100 WHEELER ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.226582568443902, 39.926219003183597 ] } }, +{ "type": "Feature", "properties": { "location": "2600 W ARIZONA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.175826160523599, 39.991601218261103 ] } }, +{ "type": "Feature", "properties": { "location": "5528 BEAUMONT ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.228389767404707, 39.941121856213996 ] } }, +{ "type": "Feature", "properties": { "location": "1700 FAIRMOUNT AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.165904169643795, 39.967160512503497 ] } }, +{ "type": "Feature", "properties": { "location": "1700 N GRATZ ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.164892191380702, 39.980380246706197 ] } }, +{ "type": "Feature", "properties": { "location": "6700 LYNFORD ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.071889001903699, 40.043025600234699 ] } }, +{ "type": "Feature", "properties": { "location": "2300 S ROSEWOOD ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.171079097928299, 39.921359153899601 ] } }, +{ "type": "Feature", "properties": { "location": "800 CARVER ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.091025852555404, 40.034293984669098 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "7200 OAKLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.062293765540304, 40.047667917217701 ] } }, +{ "type": "Feature", "properties": { "location": "800 N BAILEY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.179631246487205, 39.9720709835306 ] } }, +{ "type": "Feature", "properties": { "location": "600 E HILTON ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.118742367347906, 39.997937847488302 ] } }, +{ "type": "Feature", "properties": { "location": "500 PIERCE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.154944453630506, 39.926644160141301 ] } }, +{ "type": "Feature", "properties": { "location": "700 E TIOGA ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116087137108593, 40.001585279176297 ] } }, +{ "type": "Feature", "properties": { "location": "3500 F ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.116359496554594, 40.001850470204701 ] } }, +{ "type": "Feature", "properties": { "location": "4400 FLEMING ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.220420286519797, 40.028936796584603 ] } }, +{ "type": "Feature", "properties": { "location": "2500 S 68TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.233702909030697, 39.918746974617001 ] } }, +{ "type": "Feature", "properties": { "location": "4108 N 8TH ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.140270308877902, 40.014889376962302 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "600 S RANDOLPH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.151624556365604, 39.941711388077998 ] } }, +{ "type": "Feature", "properties": { "location": "5400 LAURENS ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.1790237512229, 40.025262176353003 ] } }, +{ "type": "Feature", "properties": { "location": "4100 N REESE ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136055476295695, 40.014344838483602 ] } }, +{ "type": "Feature", "properties": { "location": "3500 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.125574961157895, 40.003393885617598 ] } }, +{ "type": "Feature", "properties": { "location": "701 EMILY ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.158791936308702, 39.923778892099499 ] } }, +{ "type": "Feature", "properties": { "location": "2622 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.1200287731765, 39.982040701312599 ] } }, +{ "type": "Feature", "properties": { "location": "4100 CLARIDGE ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.103671412504397, 40.010155809129202 ] } }, +{ "type": "Feature", "properties": { "location": "100 W GIRARD AVE", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.136508060246001, 39.968936809660299 ] } }, +{ "type": "Feature", "properties": { "location": "2621 MEMPHIS ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.120357855248201, 39.981865678489001 ] } }, +{ "type": "Feature", "properties": { "location": "2900 KIP ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.126869006976307, 39.994300703703701 ] } }, +{ "type": "Feature", "properties": { "location": "5715 ADDISON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.237397697459301, 39.9538980131721 ] } }, +{ "type": "Feature", "properties": { "location": "5800 MORTON ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.170937708131703, 40.041767139662603 ] } }, +{ "type": "Feature", "properties": { "location": "7000 RUTLAND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.068952101867495, 40.047057373462799 ] } }, +{ "type": "Feature", "properties": { "location": "1500 EARL ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.131846387101604, 39.974480811046902 ] } }, +{ "type": "Feature", "properties": { "location": "5300 OAKLAND ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.0807204014924, 40.026917168170797 ] } }, +{ "type": "Feature", "properties": { "location": "200 E CAMBRIA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.127982921392999, 39.993679328318599 ] } }, +{ "type": "Feature", "properties": { "location": "2900 ELLA ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.127503965968202, 39.9943846328826 ] } }, +{ "type": "Feature", "properties": { "location": "3700 N 9TH ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.142613077642494, 40.008950151704603 ] } }, +{ "type": "Feature", "properties": { "location": "3901 N MARSHALL ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.138820278301793, 40.011589587125997 ] } }, +{ "type": "Feature", "properties": { "location": "600 E TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.118095923580299, 40.001848406580002 ] } }, +{ "type": "Feature", "properties": { "location": "600 E TIOGA ST", "violation_desc": "CORNER CLEARANCE", "violation": "CORNER CLEARANCE" }, "geometry": { "type": "Point", "coordinates": [ -75.118095923580299, 40.001848406580002 ] } }, +{ "type": "Feature", "properties": { "location": "3400 WEYMOUTH ST", "violation_desc": "SIDEWALK", "violation": "SIDEWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.115922137075401, 40.000779003129097 ] } }, +{ "type": "Feature", "properties": { "location": "1300 DIAMOND ST", "violation_desc": "CROSSWALK", "violation": "CROSSWALK" }, "geometry": { "type": "Point", "coordinates": [ -75.155278, 39.984492 ] } } +] +} diff --git a/data/ramps.json b/data/ramps.json new file mode 100644 index 0000000..950a2db --- /dev/null +++ b/data/ramps.json @@ -0,0 +1,4557 @@ +{ +"type": "FeatureCollection", +"name": "Pedestrian_Network_(points)", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "objectid": 133574, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.262244825999971, 39.972820330000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 133576, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165792296999939, 40.019724865000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 133581, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153434881999942, 39.981238431000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 133587, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165793963999988, 40.019738669000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 133588, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177696599999933, 40.060638767000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 133591, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023487466999939, 40.085895304000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 133592, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028362052999967, 40.080890105000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 133593, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084447761999968, 40.020512404000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 133594, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230275326999958, 39.911209724000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 133598, "status": "MISSING", "position": "UNKNOWN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.118353983999953, 39.993846920000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 133605, "status": "MISSING", "position": "UNKNOWN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119797834999986, 39.993046715000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 133607, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209744151999985, 39.978522781000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 133608, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.192901117999952, 39.956752645000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 133619, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15137913999996, 39.968228366000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 133623, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225184068999965, 40.079394278000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 133626, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153975792999972, 40.043534152000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 133631, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035222425999962, 40.055803495000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 133636, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162559615999953, 40.059151830000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 133638, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144213579999985, 40.001996766000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 133642, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152789132999942, 39.990968055000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 133644, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175634671999944, 39.89679417800005 ] } }, +{ "type": "Feature", "properties": { "objectid": 133646, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186772786999938, 40.023799480000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 133650, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143438358999958, 39.923906449000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 133653, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.262307603999943, 39.972871721000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 133654, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177702658999976, 40.06061971500003 ] } }, +{ "type": "Feature", "properties": { "objectid": 133655, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.26229206499994, 39.972855882000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 133660, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023889132999955, 40.086128082000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 133663, "status": "MISSING", "position": "UNKNOWN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.115066594999973, 39.998293667000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 133668, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186678494999967, 40.000770673000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 133670, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062921786999937, 40.037167089000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 133672, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233207258999983, 39.908927580000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 133676, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223155786999939, 39.92250832600007 ] } }, +{ "type": "Feature", "properties": { "objectid": 133678, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083709079999949, 40.061498639000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 133682, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083588192999969, 40.061415628000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 133683, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064267597999958, 40.036719093000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 133685, "status": "MISSING", "position": "OTHER", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178292189999979, 39.910114364000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 133686, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241331110999965, 39.910756715000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 133692, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186650262999933, 40.000780930000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 133706, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062902012999984, 40.037148432000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 133707, "status": "MISSING", "position": "OTHER", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177226420999943, 39.910004209000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 133708, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113349330999938, 40.042726925000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 133709, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210730668999986, 40.060746014000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 133711, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165864362999969, 40.019758341000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 133712, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241290451999987, 39.910558974000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 133713, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242078237999976, 39.892023108000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 133717, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023643666999988, 40.085985405000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 133734, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223183895999966, 39.922520773000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 133740, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.097475733999943, 40.018186938000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 133748, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24972029099996, 39.982214253000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 133749, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028379302999952, 40.080901106000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 133750, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.080591511999955, 40.041656228000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 133751, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155010498999957, 39.981435549000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 133752, "status": "MISSING", "position": "UNKNOWN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.025356603999967, 40.084781540000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 133753, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155288951999978, 39.98066181400003 ] } }, +{ "type": "Feature", "properties": { "objectid": 133757, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171209593999947, 40.032503875000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 133758, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143296705999944, 39.923892177000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 133761, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.192722445999948, 39.957302033000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 133763, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113421890999973, 40.046447966000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 133767, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235261380999987, 39.906689089000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 133771, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175513984999952, 39.897227945000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 133772, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.19269927299996, 39.926029517000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 133774, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161546228999953, 39.915554031000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 133776, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227084068999943, 39.982596941000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 133779, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153541644999962, 39.981250727000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 133780, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225890183999979, 39.91624256800003 ] } }, +{ "type": "Feature", "properties": { "objectid": 133783, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15579272399998, 40.040089419000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 133799, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.096999059999973, 40.005588653000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 133802, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.191013532999989, 39.994983519000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 133807, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155281326999955, 39.980696561000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 133810, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155564918999971, 39.982997993000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 133811, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186721343999977, 40.023710280000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 133812, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03523540599997, 40.05580758900004 ] } }, +{ "type": "Feature", "properties": { "objectid": 133818, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197529107999969, 40.034278391000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 133821, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161533435999957, 39.915576516000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 133824, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.071612472999959, 40.08109980200004 ] } }, +{ "type": "Feature", "properties": { "objectid": 133825, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.190187949999938, 40.022503735000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 133827, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035828515999981, 40.052553687000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 133828, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137769700999968, 39.965002668000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 133831, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.112696021999966, 40.046358669000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 133835, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171220497999968, 40.018789133000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 133839, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170908206999968, 40.016314531000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 133846, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075013601999956, 40.034463195000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 133850, "status": "MISSING", "position": "UNKNOWN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.081505831999948, 40.026299511000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 133854, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049417797, 40.084759114000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 133855, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148985059999973, 40.059019130000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 133858, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07156393799994, 40.081069300000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 133861, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113425352999968, 40.046429895000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 133876, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040876478999962, 40.087058787000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 133878, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.262133045999974, 39.972846515000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 133884, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230284621999942, 39.91122131000003 ] } }, +{ "type": "Feature", "properties": { "objectid": 133890, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137626013999977, 39.965002096000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 133893, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.096865001999959, 40.005661644000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 133897, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240820658999951, 39.926985935000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 133903, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035133903999963, 40.055932690000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 133904, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.192537476999973, 39.956804993000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 133908, "status": "MISSING", "position": "UNKNOWN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119707883, 39.992941329000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 133909, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171119992999934, 40.018906237000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 133910, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171168337999973, 40.01887203800004 ] } }, +{ "type": "Feature", "properties": { "objectid": 133916, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.19113379099997, 39.995051657000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 133920, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137634873999957, 39.965074726000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 133921, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155678302999945, 40.040219117000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 133924, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03514735899995, 40.05593680700008 ] } }, +{ "type": "Feature", "properties": { "objectid": 133925, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171310888999983, 40.03256237800008 ] } }, +{ "type": "Feature", "properties": { "objectid": 133931, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155756425999982, 40.011434031000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 133935, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.190122550999945, 40.02243313200006 ] } }, +{ "type": "Feature", "properties": { "objectid": 133944, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.112698898999952, 40.04634049100008 ] } }, +{ "type": "Feature", "properties": { "objectid": 133946, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148936754999966, 40.004165778000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 133954, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199821502999953, 40.073827627000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 133959, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225133958999947, 40.079322077000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 133960, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.192551110999943, 39.956709277000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 133962, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.025908280999943, 40.048474874000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 133964, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156320502999961, 39.980023675000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 133969, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197563000999935, 40.034325370000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 133972, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147905423999987, 39.940483047000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 133973, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241342851999946, 39.910761502000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 133975, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.008586360999971, 40.05789532600005 ] } }, +{ "type": "Feature", "properties": { "objectid": 133980, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233237494999969, 39.908957686000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 133981, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197093020999944, 40.067822295000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 133982, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113446525999962, 40.042729015000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 133984, "status": "MISSING", "position": "UNKNOWN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.038434365999933, 40.071235827000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 133991, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.09893846999995, 40.018305422000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 133993, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163088200999937, 39.993301863000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 133998, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035813359999963, 40.052551506000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 134006, "status": "MISSING", "position": "OTHER", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177250145999949, 39.909887294000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 134014, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138882173999946, 39.966432548000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 134016, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246743766999941, 39.894706589000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 134018, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154101713999978, 40.025803232000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 134019, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170641696999951, 40.016332510000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 134020, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157844036999961, 40.052031619000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 134022, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170758407999983, 40.016429076000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 134026, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155713012999968, 39.983017355000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 134028, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166996565999966, 40.009719042000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 134030, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225701305999962, 39.916305670000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 134036, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.26211148699997, 39.97286 ] } }, +{ "type": "Feature", "properties": { "objectid": 134041, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023711421999963, 40.086025349000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 134044, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137721887999987, 39.964983908000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 134045, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064145511999982, 40.036310614000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 134050, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225906114999987, 39.916238665000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 134052, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210842150999952, 40.060809963000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 134053, "status": "MISSING", "position": "OTHER", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178259676999971, 39.910253220000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 134057, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158945872999936, 39.981975950000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 134061, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175569793999955, 39.897233656000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 134062, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156038348999971, 39.961736509000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 134063, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158835524999972, 39.981963263000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 134067, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.074049471999956, 40.087698211000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 134069, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.239241249999964, 39.913684633000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 134070, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16238625699998, 40.059511162000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 134073, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144202303999975, 39.933342523000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 134076, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157957235999959, 40.052043522000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 134079, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083711604999962, 40.061485730000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 134084, "status": "MISSING", "position": "OTHER", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178238040999986, 39.910346277000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 134097, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.101820277999934, 40.018828624000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 134098, "status": "MISSING", "position": "OTHER", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177231160999952, 39.909968501000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 134104, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157857073999935, 40.052023151000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 134107, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197070069999938, 40.067817981000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 134112, "status": "MISSING", "position": "UNKNOWN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.114048146999949, 40.00286918900008 ] } }, +{ "type": "Feature", "properties": { "objectid": 134116, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.074989892999952, 40.034446012000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 134121, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143905344999951, 40.050439904000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 134123, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157041895999953, 40.013127724000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 134124, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225343075999945, 39.987552824000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 134128, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.262190079999982, 39.972809701000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 134130, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156036074999975, 39.961742129000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 134132, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083575286999974, 40.061421926000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 134133, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.191191088999972, 40.007918634000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 134135, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084186795999983, 40.018881297000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 134137, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064278501999979, 40.03674006600005 ] } }, +{ "type": "Feature", "properties": { "objectid": 134139, "status": "MISSING", "position": "UNKNOWN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128954920999945, 39.993342028000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 134143, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.097505807999937, 40.018135063000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 134145, "status": "MISSING", "position": "UNKNOWN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.114098360999947, 40.002767910000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 134146, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225687849999986, 39.916228714000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 134150, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.22567093899994, 39.916221405000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 134152, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240808664999975, 39.927004126000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 134153, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156302721999964, 39.980110315000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 134156, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241271740999935, 39.910574313000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 134157, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062536528999942, 40.036803034000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 134158, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064137117999962, 40.036286458000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 134162, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.008611479999956, 40.057978386000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 134163, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148804336999945, 40.058972957000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 134166, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249802939999938, 39.982314060000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 134168, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175644475999945, 39.896795607000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 134169, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023526424999943, 40.085916663000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 134171, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.008579689999976, 40.057865218000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 134172, "status": "MISSING", "position": "UNKNOWN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.069006241999944, 40.009341359000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 134175, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155117262999966, 39.981447845000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 134177, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07330366399998, 40.080821181000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 134178, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242060663999951, 39.892032998000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 134179, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.192715956999962, 39.925915879000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 134180, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073250516999963, 40.080785387000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 134183, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154004408999981, 40.043530498000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 134184, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062557602999959, 40.036822460000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 134194, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155174768999984, 39.980683584000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 134198, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.192876268999953, 39.956845884000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 134199, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.103921284999956, 40.030418725000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 134203, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148935878999964, 40.004178337000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 134207, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.192784027999949, 39.957226892000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 134208, "status": "MISSING", "position": "OTHER", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177207302999989, 39.910090791000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 134217, "status": "MISSING", "position": "OTHER", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178308872999935, 39.910017971000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 134225, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.101755256999979, 40.018827266000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 134229, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075007396, 40.034438872000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 134230, "status": "MISSING", "position": "MID_BLOCK", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15518248799998, 39.980649597000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 134234, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.250066148999963, 39.899812054000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 134235, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023818690999974, 40.086086524000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 137441, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.226301363999937, 39.927298393000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 137448, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013696492999941, 40.101991266000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 137476, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229786776999958, 39.977141660000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 137533, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136481150999941, 39.979110629000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 137542, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14645780799998, 39.92629592000003 ] } }, +{ "type": "Feature", "properties": { "objectid": 137596, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.216305895999938, 40.063726731000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 137609, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.19674557999997, 39.968388916000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 137661, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029496196999958, 40.068159631000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 137670, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996259436999935, 40.052744358000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 137685, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.003624899999977, 40.066086541000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 137708, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.117448251999974, 39.992494977000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 137766, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028490385999987, 40.03599784000005 ] } }, +{ "type": "Feature", "properties": { "objectid": 137791, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.213452275999941, 39.965523424000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 137885, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229655538999964, 40.039493707000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 137906, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235048110999969, 40.064810044000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 137959, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204422496999939, 39.968386718000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 137982, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155339058999971, 39.979888206000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 137992, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230605135999951, 40.045890284000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 138006, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134087295999961, 39.989625085000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 138010, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.110660609999968, 39.989486904000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 138044, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15068802899998, 40.013683095000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 138072, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220106834999967, 39.964929945000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 138235, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.048977342999933, 40.051586544000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 138291, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.205483017999939, 40.076852816000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 138304, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140392013999985, 40.004736296000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 138340, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.043146512999954, 40.097241599000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 138341, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040314406999983, 40.033423185000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 138344, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206837209999946, 40.058201986000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 138370, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.110075829999971, 40.043210629000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 138385, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202981791999946, 40.050948477000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 138500, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209566003999953, 40.030839882000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 138512, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.982104319999962, 40.092207644000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 138531, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.093704629999934, 40.054307016000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 138565, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03091187299998, 40.052185670000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 138643, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177727475999973, 40.064829434000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 138709, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137958929999968, 39.982343522000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 138763, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.990929845999972, 40.122125977000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 138889, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157232618999956, 39.934919895000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 138967, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.213639905999969, 40.02516339500005 ] } }, +{ "type": "Feature", "properties": { "objectid": 138972, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137596236999968, 39.994963259000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 139017, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177017795999973, 40.069956206000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 139027, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240670724999973, 40.048691175000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 139074, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078263510999989, 40.07596072900003 ] } }, +{ "type": "Feature", "properties": { "objectid": 139086, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219175337999957, 39.942444846000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 139093, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138277239999979, 39.982278519000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 139131, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242152575999967, 40.047993873000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 139175, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99576878299996, 40.055876192000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 139253, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.076051112999949, 40.020713948000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 139257, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.11941090199997, 39.992626391000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 139350, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.192799284999978, 39.962077158000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 139412, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144357, 40.043842314000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 139488, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.008306168999979, 40.120557270000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 139499, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084038590999967, 40.06664698000003 ] } }, +{ "type": "Feature", "properties": { "objectid": 139535, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163312664999978, 39.993357433000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 139604, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219373694999945, 39.980087534000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 139650, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203187190999984, 40.059885198000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 139662, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154819811999971, 39.931176122000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 139664, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.114441033999981, 40.027342458000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 139698, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14073248699998, 40.025222969000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 139702, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163311360999955, 39.993336171000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 139710, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009829046999982, 40.12846157000007 ] } }, +{ "type": "Feature", "properties": { "objectid": 139804, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.089377764999938, 40.037203294000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 139840, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151968371999942, 39.919597529000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 139846, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155714365999984, 40.045128135000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 139861, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.037101009999958, 40.036710295000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 139886, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231787407999946, 40.060455543000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 139906, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139584426999988, 39.976421221000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 139932, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165980132999948, 40.074750356000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 139946, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.101968868999961, 39.987483586000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 139947, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031232756999941, 40.055169375000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 140058, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176219455999956, 40.063742894000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 140071, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.105420643999935, 40.000961514000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 140083, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.046507169999984, 40.051682953000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 140161, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016527610999958, 40.056462729000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 140220, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207217564999951, 39.964849475000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 140248, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.118406731999983, 40.001963979000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 140275, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018422338999983, 40.130124872000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 140359, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.06664406799996, 40.010390095000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 140376, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138383897999972, 40.035950833000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 140392, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203709775999982, 40.069999297000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 140404, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223416842999939, 39.883629109000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 140522, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.082672025999955, 40.030673039000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 140527, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15828326999997, 40.045015315000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 140529, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156341779999934, 39.931489035000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 140531, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.06382053699997, 40.042358346000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 140538, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992761786999949, 40.04420589700004 ] } }, +{ "type": "Feature", "properties": { "objectid": 140553, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996863467999958, 40.050446719000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 140574, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119571883999981, 40.043476704000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 140592, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.04717726299998, 40.052282012000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 140650, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.098149896999985, 40.05257711400003 ] } }, +{ "type": "Feature", "properties": { "objectid": 140693, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144857341999966, 39.96604499700004 ] } }, +{ "type": "Feature", "properties": { "objectid": 140704, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.086264591999964, 40.011857328000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 140748, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.045883451999941, 40.063603574000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 140786, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141475708999963, 40.020969427000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 140810, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.011931111999957, 40.133904449000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 140846, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119524963999936, 40.025066527000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 140875, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152362215999972, 39.95721535000007 ] } }, +{ "type": "Feature", "properties": { "objectid": 140907, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009177050999938, 40.046248626000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 140979, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019174541999973, 40.056697376000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 141001, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157374134999941, 39.934018558000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 141046, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.991103329999987, 40.045352578000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 141072, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228670208999972, 39.916772977000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 141074, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170649315999981, 39.978210990000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 141075, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019053823999968, 40.054785286000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 141113, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148649369999987, 40.029412557000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 141139, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189664678999975, 40.045557857000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 141177, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019979691999936, 40.120461945000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 141247, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243438416999936, 40.04665828900005 ] } }, +{ "type": "Feature", "properties": { "objectid": 141297, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.121778602999939, 40.034632792000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 141306, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.005484847999981, 40.125676423000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 141318, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152160230999982, 40.043566988000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 141344, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178092786999969, 39.984846404000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 141365, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013978702999964, 40.100232640000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 141409, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149375942999939, 40.012838166000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 141413, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207583778999947, 40.021720689000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 141451, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149226797999972, 39.941181218000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 141517, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014552047999985, 40.134050190000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 141559, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.115142570999978, 40.048335067000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 141606, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163085161999959, 39.977873410000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 141655, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14617962899996, 39.927513568000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 141667, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.007944853999959, 40.100810218000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 141673, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.097189337999964, 40.005476805000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 141780, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.010627382999985, 40.135149953000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 141885, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.005781757999955, 40.050176389000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 141978, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137113482999951, 39.997888082000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 142064, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157872255999962, 39.933562231000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 142073, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181318114999954, 39.916676086000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 142098, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14408842499995, 39.965691262000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 142220, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180298295999989, 40.049631280000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 142224, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.239975828999945, 40.058490794000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 142244, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169053778999967, 39.903063037000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 142297, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084751922999942, 40.011295869000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 142307, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172883696999975, 40.063733379000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 142341, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014297712999962, 40.039542708000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 142420, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026647348999973, 40.045851994000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 142474, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140129899999977, 39.971092060000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 142493, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113952110999946, 40.001239861000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 142577, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159595868999986, 40.008641637000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 142604, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014350239999942, 40.133501592000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 142661, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.226334846999976, 39.927298604000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 142684, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.106651217999968, 39.986203035000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 142688, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148416521999934, 40.004232716000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 142697, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067704257999935, 40.039678731000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 142723, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.061543032999964, 40.062056850000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 142732, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203197745999944, 40.048699102000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 142744, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049662369999965, 40.050574334000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 142794, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165989645999957, 39.970941765000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 142846, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064487485999962, 40.058936864000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 142855, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.222377136999967, 40.028020602000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 142868, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.131787777999989, 40.055374725000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 142875, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.002220811999962, 40.052584067000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 142888, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.109964610999953, 40.043329198000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 142979, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15873421699996, 40.01355673900008 ] } }, +{ "type": "Feature", "properties": { "objectid": 143006, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138740221999967, 39.96506019800006 ] } }, +{ "type": "Feature", "properties": { "objectid": 143035, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.111136084999941, 39.985262041000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 143069, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017082990999938, 40.040824636000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 143089, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161107157999936, 40.06065674000007 ] } }, +{ "type": "Feature", "properties": { "objectid": 143151, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.060186794999936, 40.014328178000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 143177, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083871325999951, 40.017895698000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 143185, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.103452106999953, 39.987395979000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 143227, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143851935999976, 40.038033043000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 143310, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220183879999979, 39.953808347000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 143399, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235964852999984, 40.071128052000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 143420, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.224304406999977, 39.974889853000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 143455, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.080049248999956, 40.065706264000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 143503, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.247315735999962, 39.893024920000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 143505, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128528384999981, 40.001681063000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 143533, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203448382999966, 40.080241944000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 143584, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073302886999954, 40.058149043000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 143589, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.983099442999958, 40.050755268000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 143613, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075598088999982, 40.021103107000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 143614, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067765983999948, 40.075135886000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 143646, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.043795770999964, 40.02268857100006 ] } }, +{ "type": "Feature", "properties": { "objectid": 143667, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014852193999957, 40.134923248000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 143675, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170894948999944, 39.956284476000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 143693, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139915808999945, 39.974888231000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 143700, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142129348999958, 40.016142004000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 143706, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070148308999933, 40.076208748000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 143742, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.047813720999955, 40.092016996000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 143757, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169002836999937, 40.038529093000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 143763, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.978863247999982, 40.071698604000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 143884, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198295119999955, 39.97626998800007 ] } }, +{ "type": "Feature", "properties": { "objectid": 143890, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178286761999971, 39.951811336000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 143937, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187195673999952, 39.97374555600004 ] } }, +{ "type": "Feature", "properties": { "objectid": 143945, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16005473599995, 39.996325047000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 143946, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234159992999935, 39.97878307700006 ] } }, +{ "type": "Feature", "properties": { "objectid": 143982, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241729091999957, 40.047300438000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 144003, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143707085999949, 40.030105912000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 144063, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995090160999951, 40.051748910000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 144084, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014759407999975, 40.134097964000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 144125, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.96490595399996, 40.082355380000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 144128, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.012507846999938, 40.134877983000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 144140, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199651883999934, 40.040994237000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 144147, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023378862999948, 40.085835364000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 144228, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177002124999944, 40.069775622000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 144349, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017093122999938, 40.132221859000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 144388, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.990136375999953, 40.121739861000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 144395, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004624164999939, 40.047146865000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 144401, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234180600999935, 40.05840594700004 ] } }, +{ "type": "Feature", "properties": { "objectid": 144407, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.190804488999959, 40.013190820000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 144443, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142660714999977, 40.023818246000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 144461, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028042952999954, 40.051897736000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 144505, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172539693999965, 40.039447105000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 144544, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14508914299995, 39.953167839000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 144547, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.205593653999983, 40.076916743000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 144565, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139761206999935, 39.97385197400007 ] } }, +{ "type": "Feature", "properties": { "objectid": 144583, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204339053999945, 39.975940672000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 144616, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.005627869999955, 40.125830344000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 144685, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143261972999937, 39.990901609000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 144736, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150043442999959, 40.053193663000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 144753, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14813709799995, 40.030792509000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 144757, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227175938999949, 39.986699628000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 144795, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173366976999944, 40.069036785000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 144871, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137734050999939, 39.964890623000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 144998, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.133352686999956, 40.055137759000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 145004, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.092400072999965, 40.034317181000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 145080, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151714269999957, 39.961395799000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 145271, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.099383195999962, 40.04969995600004 ] } }, +{ "type": "Feature", "properties": { "objectid": 145295, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230819065999981, 40.050797439000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 145310, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079188900999952, 40.019604100000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 145352, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.006902385999979, 40.058000179000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 145420, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197478457999978, 39.964085720000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 145462, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.271563306999951, 39.975666739000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 145528, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151862214999937, 39.961661799000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 145607, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209549223999943, 39.966814808000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 145680, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188410817999966, 39.962426328000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 145685, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164104677999944, 39.914492529000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 145692, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009110754999938, 40.13423391200007 ] } }, +{ "type": "Feature", "properties": { "objectid": 145701, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210500778999972, 40.084871236000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 145709, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.133779939999954, 39.986605546000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 145768, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219614343999979, 40.049218734000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 145771, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.051004443999943, 40.02639834200005 ] } }, +{ "type": "Feature", "properties": { "objectid": 145779, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227972682999962, 39.91822617400004 ] } }, +{ "type": "Feature", "properties": { "objectid": 145827, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206151030999933, 40.065284790000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 145861, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049169135999989, 40.021383658000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 145875, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138961739999957, 39.998116098000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 146020, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143076419999943, 39.96674536200004 ] } }, +{ "type": "Feature", "properties": { "objectid": 146030, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185917457999949, 40.012116203000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 146120, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187527135999972, 39.998302164000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 146131, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.118243151999934, 40.001942359000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 146212, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.997978272999944, 40.051606187000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 146219, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172670987999936, 39.918316235000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 146251, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176690230999952, 40.030390982000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 146305, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.077397786999938, 40.045062066000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 146309, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.043604964999986, 40.103121273000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 146334, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.047457623999946, 40.058945615000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 146426, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163093699999934, 40.022970659000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 146477, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.245413849999977, 39.907084724000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 146478, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162082245999954, 40.03825703900003 ] } }, +{ "type": "Feature", "properties": { "objectid": 146541, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079086742999948, 40.028468039000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 146552, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.22800488699994, 39.984725487000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 146648, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033686355999976, 40.060907912000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 146657, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018474408999964, 40.133576467000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 146710, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161848462999956, 39.914281094000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 146721, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197233725999979, 40.05633646900003 ] } }, +{ "type": "Feature", "properties": { "objectid": 146732, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173283293999987, 39.931082865000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 146818, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147525793999989, 39.964744364000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 146850, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180437284999982, 40.077970748000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 146855, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.217812770999956, 40.082369297000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 146866, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.212056107999956, 39.949090332000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 146908, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130797591999965, 40.025470287000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 146916, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240880224999955, 39.90932254300003 ] } }, +{ "type": "Feature", "properties": { "objectid": 146978, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.224343828999963, 39.952482833000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 147026, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198106041999949, 39.966876439000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 147036, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.022217297999987, 40.120428453000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 147043, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169007059999956, 40.038437341000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 147093, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113507409999954, 40.032663310000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 147121, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196619823999981, 39.931571948000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 147127, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.066413295999951, 40.044772291000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 147162, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.077209577999952, 40.024171122000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 147174, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.090224214999978, 40.065289943000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 147220, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028883454999971, 40.11357378200006 ] } }, +{ "type": "Feature", "properties": { "objectid": 147238, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.097300496999935, 39.986032783000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 147303, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161784064999949, 40.048568014000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 147459, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078258994999942, 40.075937645000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 147483, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.080960602999937, 40.015235376000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 147584, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227777087999982, 39.918217448000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 147617, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.00036068999998, 40.073585482000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 147631, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146837225999946, 39.923945966000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 147718, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.97956918899996, 40.079235537000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 147896, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.174181231999967, 40.058166077000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 147918, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019194469999945, 40.057260234000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 147971, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172269089999986, 40.049268238000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 147973, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.081425199999956, 40.017191216000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 147980, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238876347999962, 40.059365626000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 147989, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16970588199996, 40.066008306000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 148008, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244968943999936, 39.908744646000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 148040, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.106019235999952, 40.032141218000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 148094, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231398823999939, 39.953225779000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 148102, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023442014999944, 40.11661590600005 ] } }, +{ "type": "Feature", "properties": { "objectid": 148130, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.097128685999962, 40.053620518000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 148156, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23092855799996, 40.050945890000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 148158, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231932184999948, 39.942947081000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 148238, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166804096999954, 39.991319984000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 148275, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.101422448999983, 39.99477386500007 ] } }, +{ "type": "Feature", "properties": { "objectid": 148308, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.048299861999965, 40.100394332000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 148311, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220127459999958, 40.027302942000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 148388, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184518825999987, 40.043586504000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 148408, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.214787562999959, 39.993123325000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 148447, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.044814729999985, 40.104533598000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 148510, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163626904999944, 39.935046794000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 148517, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.247584127999971, 39.909974299000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 148644, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.17317365599996, 39.907894239000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 148672, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.006633097999952, 40.061542695000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 148713, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240254848999939, 40.048337397000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 148769, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149077965999936, 40.03040509200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 148789, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223646457999962, 39.999146701000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 148854, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.059457541999961, 40.052162379000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 148858, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152720200999966, 39.923366685000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 148871, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.217904446999967, 40.082417649000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 148915, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.006259349999937, 40.130049540000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 148918, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.17787784799998, 40.06887284000004 ] } }, +{ "type": "Feature", "properties": { "objectid": 148931, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154062000999943, 39.948722826000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 148941, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142768321999938, 39.971243865000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 148967, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228319660999944, 40.060475818000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 149004, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138498035999987, 39.988650904000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 149007, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062658067999962, 40.046390213000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 149025, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024109556999974, 40.088341152000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 149037, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202869144999966, 40.06650090200003 ] } }, +{ "type": "Feature", "properties": { "objectid": 149070, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01653098099996, 40.056563485000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 149098, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030450043999963, 40.085818655000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 149132, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249184270999933, 39.973911582000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 149152, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.13932185799996, 39.963461730000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 149153, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.121024, 39.994257299000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 149198, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14592937499998, 40.005361125000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 149203, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026258836999943, 40.04813542800008 ] } }, +{ "type": "Feature", "properties": { "objectid": 149207, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164528427999983, 40.05664700400007 ] } }, +{ "type": "Feature", "properties": { "objectid": 149220, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146056854999983, 39.966222502000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 149289, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16961211399996, 40.066119090000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 149300, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149590285999977, 39.947581375000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 149360, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.039179844999978, 40.093947418000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 149395, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013960530999952, 40.057974473000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 149411, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.045731700999966, 40.091440197000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 149438, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.19372821099995, 39.922299641000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 149443, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067620794999982, 40.075099635000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 149450, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143215821999945, 40.046537297000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 149481, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173131939999962, 39.962424189000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 149514, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149067725999942, 40.012939845000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 149525, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14373795299997, 40.011389153000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 149535, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184520991999989, 40.043740816000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 149609, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.037852291999968, 40.082579005000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 149618, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049631174999945, 40.054293056000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 149626, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119015068999943, 40.047072424000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 149676, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033834984999942, 40.053414931000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 149699, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073266114999967, 40.021472141000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 149741, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140557354999942, 40.025200558000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 149747, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130991854999934, 40.000363509000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 149771, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156966007999984, 39.991137817000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 149795, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996761216999971, 40.05049918900005 ] } }, +{ "type": "Feature", "properties": { "objectid": 149870, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.216394845999957, 40.063858257000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 149896, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132075155999985, 40.01145963700003 ] } }, +{ "type": "Feature", "properties": { "objectid": 149898, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150888208999959, 39.930125324000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 150000, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.252662535999946, 39.897465458000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 150025, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029235742999958, 40.039405362000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 150038, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.270673071999965, 39.974564251000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 150084, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.059286709999981, 40.033060808000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 150093, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.037974220999956, 40.076591640000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 150205, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02039270299997, 40.119366513000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 150266, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202582992999965, 40.075148484000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 150397, "status": "MISSING", "position": "MULTI-DIRECTIONAL", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018583303999947, 40.101930939000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 150399, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148504556999967, 39.977542258000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 150400, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.088633314999981, 40.019194767000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 150453, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.015852184999972, 40.058239509000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 150470, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185132060999933, 39.989965754000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 150483, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.108688717999939, 39.984553661000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 150488, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.077246053999943, 39.996401836000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 150513, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248046679999959, 39.909854773000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 150537, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165733087999968, 40.019680318000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 150542, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996086342999945, 40.049996820000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 150559, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.118426908999936, 39.98954550600007 ] } }, +{ "type": "Feature", "properties": { "objectid": 150566, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201401276999945, 39.964231074000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 150649, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139134579999961, 39.985674849000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 150704, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.011981732999971, 40.040596238000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 150708, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206157485999938, 40.073763806000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 150855, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016932585999939, 40.05289665500004 ] } }, +{ "type": "Feature", "properties": { "objectid": 150924, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159262705999936, 39.962496573000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 150932, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234074648999979, 40.049502213000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 151011, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120805251999968, 40.052281151000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 151014, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.19839021599995, 40.015182656000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 151103, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229219658999966, 39.974031131000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 151112, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.121820195999987, 40.034547330000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 151128, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058818269999961, 40.044246633000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 151141, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.124911055999974, 40.038416546000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 151165, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.978718064999953, 40.088854788000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 151170, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152962152999976, 40.023626763000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 151206, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146096195999974, 40.002300421000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 151237, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167439413999944, 39.965238015000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 151342, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231055730999969, 39.962333017000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 151371, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.069981320999943, 40.060109956000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 151408, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024437019999937, 40.040702383000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 151410, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031530172999965, 40.109118506000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 151440, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067314716999988, 40.068626642000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 151453, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.247204574999955, 39.892962524000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 151481, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202622304999977, 40.066513212000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 151558, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.190406931999973, 39.951363531000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 151615, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134720440999956, 39.963017871000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 151625, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.250398057999973, 39.903923231000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 151686, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.215093386999968, 39.937216091000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 151695, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183078772999977, 40.061679273000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 151748, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.087202241999989, 40.014294560000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 151786, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.037002321999978, 40.096019645000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 151806, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206639813999971, 39.976067877000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 151833, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.047110934999978, 40.052184405000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 151834, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.124750283999958, 40.038488894000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 151842, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186110467999981, 40.010887988000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 151901, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.122484879999945, 40.021407354000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 151988, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.072441205999951, 40.05749669000005 ] } }, +{ "type": "Feature", "properties": { "objectid": 152039, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.12299470399995, 39.993776885000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 152108, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.190329459999987, 40.055577007000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 152158, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153142145999936, 39.938735523000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 152170, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15300855299995, 39.924648209000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 152177, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020754416999978, 40.117343953000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 152194, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.048993381999935, 40.051695077000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 152200, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136073281999984, 40.027813264000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 152230, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.063298434999979, 40.020191299000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 152231, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242240006999964, 40.047950769000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 152311, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.015107798999964, 40.135605754000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 152455, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.116659078999987, 39.984856297000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 152545, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02471019799998, 40.041077177000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 152568, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084119809999947, 40.066874831000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 152610, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161640274999968, 40.048474757000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 152628, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156207639999934, 39.932141984000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 152629, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.108328271999937, 40.000511509000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 152658, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20272996999995, 40.066632403000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 152683, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154707195999947, 40.004949862000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 152769, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210284718999958, 40.085246181000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 152778, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.102821476999964, 40.050780651000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 152805, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995916989999955, 40.055846947000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 152810, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.191913886999941, 40.061165385000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 152829, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.042679629999952, 40.09128695000004 ] } }, +{ "type": "Feature", "properties": { "objectid": 152843, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.212794377999955, 39.938986036000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 152877, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.093804482999985, 40.054201843000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 152942, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064941965999935, 40.05625735600006 ] } }, +{ "type": "Feature", "properties": { "objectid": 152977, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019140034999964, 40.056461736000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 153036, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99433853499994, 40.081915185000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 153060, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148306137999953, 39.931667152000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 153072, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.255350779999958, 39.975456614000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 153223, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99276049599996, 40.044224560000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 153286, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170199160999971, 40.035732039000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 153323, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202890107999963, 40.05087399100006 ] } }, +{ "type": "Feature", "properties": { "objectid": 153350, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155692453999961, 39.963466086000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 153406, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.05891070399997, 40.061387987000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 153409, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.04071655499996, 40.075306714000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 153474, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235375139999974, 40.071618403000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 153478, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.005607552999948, 40.125828562000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 153542, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150169239999968, 40.025460300000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 153554, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178186748999963, 39.962165696000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 153573, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246465702999956, 39.988185455000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 153637, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163211978999982, 39.993234985000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 153646, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15661493999994, 39.959833631000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 153650, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138628504999986, 39.980805063000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 153720, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.972523563999971, 40.083599150000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 153759, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.011714747999974, 40.091895573000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 153782, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.221746096999937, 39.944606755000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 153788, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187865340999963, 40.030781405000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 153827, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995487465999986, 40.11988175700003 ] } }, +{ "type": "Feature", "properties": { "objectid": 153855, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.072581620999983, 40.010801510000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 153891, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018581694999966, 40.040033639000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 153894, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995931756999937, 40.056013286000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 153899, "status": "MISSING", "position": "MULTI-DIRECTIONAL", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018706945999952, 40.10203903200005 ] } }, +{ "type": "Feature", "properties": { "objectid": 153950, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187034816999983, 39.937750061000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 153998, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231525214999976, 39.953127504000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 154057, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206742064999958, 39.961167880000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 154124, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.212104889999978, 39.952809074000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 154162, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220469091999973, 40.035948912000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 154209, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146108298999934, 40.055734269000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 154218, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206320758999937, 40.073759041000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 154333, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185449171999949, 39.99327773300007 ] } }, +{ "type": "Feature", "properties": { "objectid": 154344, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146227830999976, 39.988214349000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 154395, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.121518962999971, 39.995956479000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 154397, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.012008585, 40.133828519000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 154445, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.022068355999977, 40.120359183000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 154456, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146535048999965, 40.027504541000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 154565, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.027357860999984, 40.090917 ] } }, +{ "type": "Feature", "properties": { "objectid": 154625, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181562546999942, 40.006350247000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 154643, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176879197999938, 39.911571848000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 154658, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139420019999989, 39.963513688000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 154676, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163446201999989, 40.070309123000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 154727, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194410220999941, 40.061569344000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 154759, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159397856999988, 39.961236752000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 154773, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171153551999964, 40.027224113000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 154806, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209495211999979, 40.059775719000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 154832, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.041439734999983, 40.05147201300008 ] } }, +{ "type": "Feature", "properties": { "objectid": 154955, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.245621674999938, 39.948078628000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 154960, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.095576654999945, 39.987879577000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 154966, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049663819999978, 40.050485218000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 154983, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200089699999978, 39.960614127000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 155051, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.252146039999957, 39.97534581900004 ] } }, +{ "type": "Feature", "properties": { "objectid": 155182, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209835380999948, 40.070050441000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 155194, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229985502999966, 39.967602751000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 155288, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028653874999975, 40.036034888000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 155291, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.002572159999943, 40.05999076900008 ] } }, +{ "type": "Feature", "properties": { "objectid": 155369, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.998795973999961, 40.064585085000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 155498, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013939960999949, 40.101872007000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 155557, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234804252999936, 39.973251143000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 155577, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995837816999938, 40.05583019900007 ] } }, +{ "type": "Feature", "properties": { "objectid": 155678, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188533338999946, 40.06246270500003 ] } }, +{ "type": "Feature", "properties": { "objectid": 155730, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.131308775999969, 40.014640222000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 155740, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.989850211999965, 40.084138615000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 155762, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.969904560999964, 40.081035419000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 155774, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.109733393999988, 40.027475308000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 155782, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24562604099998, 39.919682517000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 155817, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168406632999961, 40.02841832200005 ] } }, +{ "type": "Feature", "properties": { "objectid": 155826, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.044195779999939, 40.092925549000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 155905, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.036453291999976, 40.043503204000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 155960, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.072913452999956, 40.020020579000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 155998, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070006173999957, 40.061835582000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 156064, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152735505999942, 40.056156673000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 156143, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.215834021999967, 39.969046349000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 156156, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.092397509999955, 40.034302199000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 156180, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156629990999988, 40.014752033000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 156199, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230025650999949, 39.965299595000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 156246, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188852485999973, 39.965635960000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 156347, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.979082951999942, 40.071769957000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 156395, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024503532999972, 40.040384117000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 156400, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.007727118999981, 40.129507842000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 156430, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143983832999936, 40.028817782000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 156435, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062750888999972, 40.063696183000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 156440, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142471588999967, 39.965021314000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 156470, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.071224065999957, 40.010995930000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 156476, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.108226154999954, 40.045081165000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 156596, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163548430999981, 39.914418644000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 156606, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.22750588599996, 40.031808002000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 156642, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228339580999943, 40.06257288200004 ] } }, +{ "type": "Feature", "properties": { "objectid": 156665, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249920690999943, 39.967765521000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 156706, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.117885575999935, 39.993343156000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 156708, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.236484475999987, 39.91180337600008 ] } }, +{ "type": "Feature", "properties": { "objectid": 156787, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220449102999964, 39.934605170000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 156791, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.002501406999954, 40.084739935000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 156895, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128577556999971, 40.031451590000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 156905, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176447163999967, 39.89400536900007 ] } }, +{ "type": "Feature", "properties": { "objectid": 156929, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231022073999952, 39.987634750000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 156996, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.983955183999967, 40.069019412000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 156998, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.247115765999979, 39.890635300000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 157091, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141389813999979, 39.965619675000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 157105, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084300106999933, 40.02345202500004 ] } }, +{ "type": "Feature", "properties": { "objectid": 157146, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.094126204999952, 40.018294057000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 157168, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.09839590699994, 40.049147091000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 157211, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161791108999978, 39.91418696900007 ] } }, +{ "type": "Feature", "properties": { "objectid": 157243, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064609662999942, 40.092839449000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 157333, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144528461999982, 39.968141486000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 157356, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017072682999981, 40.132304863000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 157412, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.980037976999938, 40.07205194900007 ] } }, +{ "type": "Feature", "properties": { "objectid": 157436, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248640208999973, 39.90924917600006 ] } }, +{ "type": "Feature", "properties": { "objectid": 157438, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.980143328999986, 40.067713258000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 157477, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145871363999959, 39.989615909000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 157503, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.025077877999934, 40.090877092000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 157517, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220145570999989, 40.025201213000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 157546, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.045790985999986, 40.050214743000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 157593, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249492662999955, 39.976378301000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 157643, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.015269607999983, 40.135692722000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 157664, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026324627999941, 40.046499869000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 157683, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030874542999982, 40.052170764000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 157690, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.205503267999973, 40.077009012000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 157757, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.108880924999937, 40.016410414000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 157763, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.066693450999935, 40.044726259000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 157793, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.205932160999964, 40.063278076000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 157827, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.112343701999976, 39.979778868000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 157852, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.011968822999961, 40.092102186000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 157859, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084115711999971, 40.066818194000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 157877, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.232979156999988, 39.939747451000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 157883, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185258807999958, 39.996334067000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 157888, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.245687418999978, 39.899413964000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 157941, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181598955999959, 39.932248811000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 157955, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.088482584999952, 40.008144733000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 157957, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179224320999936, 40.048950570000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 157959, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014232332999939, 40.133273047000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 158118, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.074414615999956, 40.017552807000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 158127, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.11686095999994, 39.988682517000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 158131, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206511257999978, 40.047446316000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 158142, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152425217999962, 40.068878027000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 158154, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03384622599998, 40.060195075000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 158223, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206325161999985, 40.073744193000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 158233, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157124178999936, 39.977095725000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 158245, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152782032999937, 40.03921037300006 ] } }, +{ "type": "Feature", "properties": { "objectid": 158335, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.979467197999952, 40.075723830000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 158382, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.131916827999987, 39.979502069000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 158429, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.122008748999974, 40.022930389000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 158432, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03394672099995, 40.053362846000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 158495, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.118713542999956, 40.04759793900007 ] } }, +{ "type": "Feature", "properties": { "objectid": 158522, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228049551999959, 39.984837759000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 158577, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173012014999983, 40.046548736000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 158673, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.239773570999944, 39.992094461000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 158738, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136496988999966, 40.058506520000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 158739, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.045186261999959, 40.025804131000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 158787, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157547446999956, 40.009997012000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 158810, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159104747999947, 40.030351440000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 158823, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.092965718999949, 40.022039474000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 158828, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.092371570999944, 40.009333816000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 158853, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.022269711999968, 40.117906151000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 158922, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.039324953999937, 40.093842480000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 158947, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.072156692999954, 39.995698913000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 158948, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067659252999988, 40.078650504000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 158958, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.015268183999979, 40.135601094000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 159040, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064408030999971, 40.09095144500003 ] } }, +{ "type": "Feature", "properties": { "objectid": 159140, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.97940910899996, 40.069836422000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 159146, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185822890999987, 40.075271765000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 159249, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14934810799997, 40.004248657000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 159278, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188380268999936, 39.939576455000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 159290, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152476594999939, 39.923439322000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 159312, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206398501999956, 39.976046724000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 159367, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.984645740999952, 40.094051893000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 159422, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130637158999946, 39.967512041000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 159532, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031877949999966, 40.080649453000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 159784, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.160159276999934, 40.069520640000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 159789, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171575871999949, 40.067743706000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 159794, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031295119999982, 40.051542410000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 159814, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040642541999944, 40.091890861000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 159823, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178489770999988, 40.014566324000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 159850, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.968097782999962, 40.099122546000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 159860, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.05759427199996, 40.056997896000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 159870, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23017129599998, 39.920275231000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 159955, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204821749999951, 40.064529820000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 159960, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195894593999981, 39.930225697000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 159984, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.174171208999951, 40.062675275000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 160039, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070477532999973, 40.009167568000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 160045, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.034569310999984, 40.053045283000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 160110, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227518780999958, 40.060779381000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 160224, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208392122999953, 39.95631661200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 160350, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.027304213999969, 40.05213877500006 ] } }, +{ "type": "Feature", "properties": { "objectid": 160378, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062595170999941, 40.06359162800004 ] } }, +{ "type": "Feature", "properties": { "objectid": 160408, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.034364183999969, 40.055599904000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 160515, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031201958999986, 40.052770989000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 160559, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119589375999965, 40.043391406000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 160646, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.994576734999953, 40.057700873000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 160660, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.193408115999944, 39.953724395000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 160679, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067376028999945, 40.06881809600003 ] } }, +{ "type": "Feature", "properties": { "objectid": 160717, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170582855999953, 40.060473024000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 160741, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.048641379999935, 40.105586479000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 160843, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166549121999935, 40.008123926000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 160876, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228451829999983, 40.060412263000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 160898, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248905783999987, 39.886326397000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 160899, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.263104703999943, 39.980709889000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 160944, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176138446999971, 39.891417841000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 160954, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.252152403999958, 39.893327347000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 160955, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223682751999945, 39.999013815000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 160963, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.993765610999958, 40.050757026000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 160990, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.003603854999938, 40.110739170000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 161047, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.993642871999953, 40.050673798000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 161082, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147356871999989, 39.965660755000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 161113, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.091200536999963, 40.047973059000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 161125, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028158608999945, 40.12199959000003 ] } }, +{ "type": "Feature", "properties": { "objectid": 161191, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167897540999945, 39.922951367000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 161195, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.245861048999984, 39.892271683000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 161222, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155391381999948, 39.969200235000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 161264, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075956204999954, 40.019583799000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 161268, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996801366999989, 40.050619262000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 161316, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196880260999933, 39.968049409000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 161320, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033682358999954, 40.05517855100004 ] } }, +{ "type": "Feature", "properties": { "objectid": 161334, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208220075999975, 40.058893449000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 161372, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200594391999971, 39.932061361000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 161390, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184914, 40.076171960000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 161408, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203204548999963, 40.048676137000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 161493, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024722477999944, 40.11921986200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 161497, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240064590999964, 40.058556248000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 161532, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.993306733999987, 40.056799480000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 161552, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.036542303999965, 40.102534537000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 161554, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.250439710999956, 39.976353780000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 161614, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144401331999973, 40.022432306000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 161680, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141659821999951, 40.020878767000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 161713, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120974417999946, 39.978711898000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 161774, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195883503999937, 39.930307655000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 161872, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028309967999974, 40.044522217000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 161873, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.002516521999951, 40.084527453000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 161882, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154178687999945, 39.926154989000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 161954, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.193995245999986, 40.061686740000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 162029, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.272092366999971, 39.978838565000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 162035, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147955383999943, 40.045658157000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 162052, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183209699999964, 40.005595179000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 162076, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234029982999971, 39.978801366000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 162090, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.105737801999965, 40.032160518000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 162095, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187544628999945, 39.935415735000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 162102, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.055550091999976, 40.050153253000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 162118, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158601573999988, 40.053327216000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 162132, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.05641491199998, 40.058270474000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 162157, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198373325999967, 40.015344408000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 162163, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.048411499999986, 40.105705637000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 162181, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.000492784999949, 40.053914618000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 162195, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031213789999981, 40.029956609000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 162215, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.232197879999944, 40.07488782300004 ] } }, +{ "type": "Feature", "properties": { "objectid": 162234, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143324457999938, 39.965417972000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 162246, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176943533999975, 40.075984864000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 162259, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01323274799995, 40.129208091000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 162280, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142661229999987, 39.967865561000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 162287, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16321695299996, 40.023036963000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 162320, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.190193857999986, 39.975564215000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 162325, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165539654999975, 39.914674537000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 162334, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209706776999951, 39.966802855000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 162340, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.010514223999962, 40.122926928000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 162348, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.232606874999988, 39.913495266000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 162398, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234672079999939, 39.91690131200005 ] } }, +{ "type": "Feature", "properties": { "objectid": 162413, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070838570999967, 40.014430855000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 162497, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210489023999969, 39.971365767000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 162536, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.060417659999985, 40.066175856000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 162602, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.979461265999987, 40.079391319000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 162606, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.048823797999944, 40.051706659000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 162671, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014726145999987, 40.137648368000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 162674, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161724375999938, 40.059817620000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 162739, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.015249519999941, 40.135591410000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 162749, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.063782868999965, 40.045093372000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 162783, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178369202999988, 39.990742925000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 162807, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.099250061999953, 39.996032291000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 162828, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.232516889999943, 40.068469397000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 162843, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.991489058999946, 40.045892085000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 162855, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.048616151999965, 40.105712288000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 162877, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129270753999947, 39.98337342700006 ] } }, +{ "type": "Feature", "properties": { "objectid": 162970, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.993935857999986, 40.07200483500003 ] } }, +{ "type": "Feature", "properties": { "objectid": 163027, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.973536397999965, 40.075819731000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 163119, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.216747708999947, 39.950739106000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 163151, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151854218999972, 39.988942965000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 163170, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142733303999989, 39.967877408000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 163250, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.059053412999958, 40.061466521000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 163276, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185461192999981, 39.993194944000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 163287, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.122928659999957, 40.013560045000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 163349, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078314417999934, 40.079921717000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 163352, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185454147999963, 39.954247247000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 163362, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058121264999954, 40.031677659000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 163365, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14932633799998, 39.941196227000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 163370, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.966583827999955, 40.102875755000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 163373, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184756417999949, 39.979197212000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 163407, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219163776999949, 40.025678582000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 163465, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.092471875999934, 40.029698971000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 163526, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035321007999983, 40.080700189000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 163545, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137195267999971, 40.023261048000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 163559, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.022218166999949, 40.056658692000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 163598, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139833308999982, 40.017229471000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 163700, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.095410462999951, 40.051036802000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 163712, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228329731999963, 39.946283557000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 163724, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238098659999935, 39.926962607000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 163795, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152091905999953, 40.039283690000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 163823, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.115939533999949, 39.987075792000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 163906, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.071080880999943, 40.039822560000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 163935, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.979343589999985, 40.079353633000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 163978, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.006705928999963, 40.057931009000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 164035, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185862679999957, 39.941520013000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 164070, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20410060599994, 40.047679856000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 164079, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981428089999952, 40.051719309000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 164126, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995094097999981, 40.051731200000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 164159, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.039012240999966, 40.093838997000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 164160, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033535178999955, 40.060869819000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 164184, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.041607481999961, 40.091128311000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 164196, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996028033999949, 40.055963922000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 164275, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023578013999952, 40.118864890000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 164296, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99991750199996, 40.053173207000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 164329, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.19672984999994, 39.968152608000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 164338, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220353616999944, 40.03599618800007 ] } }, +{ "type": "Feature", "properties": { "objectid": 164381, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07503881599996, 40.084086736000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 164385, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004724300999953, 40.128374329000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 164389, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142174370999953, 40.033335192000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 164397, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.247845179999956, 39.885425010000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 164460, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18496369099995, 39.990793199000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 164489, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206894120999948, 40.02717870400005 ] } }, +{ "type": "Feature", "properties": { "objectid": 164521, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.066777789999946, 40.027745846000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 164525, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.042991005999966, 40.091307936000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 164527, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203653557999985, 39.958983848000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 164561, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194198109999945, 40.012177325000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 164581, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237764948999938, 40.070147861000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 164596, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154132126999968, 39.948921299000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 164599, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14262849499994, 40.023966123000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 164650, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172344241999951, 40.068273354000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 164669, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018947647999937, 40.111325608000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 164676, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.215853693999975, 39.985900900000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 164694, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016653133999966, 40.056464395000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 164696, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.994074405999982, 40.045391641000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 164697, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070468102999939, 40.013100849000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 164802, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170707964999963, 40.060554864000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 164819, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200477971999987, 40.049194305000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 164876, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024850817999948, 40.041000176000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 164897, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.034236334999946, 40.102795641000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 164898, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028565786999934, 40.053088992000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 165004, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.047919168999954, 40.025882138000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 165072, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.215877989999967, 39.985873337000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 165109, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152798797999935, 40.009536229000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 165129, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009155283999974, 40.12213033200004 ] } }, +{ "type": "Feature", "properties": { "objectid": 165195, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155324590999953, 39.979899744000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 165202, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028897117999975, 40.060745659000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 165206, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164556794999953, 40.075941537000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 165207, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.214528615999939, 39.993904714000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 165337, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014834665999956, 40.134847670000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 165382, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01815269399998, 40.110117335000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 165430, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184091733999935, 40.040173896000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 165436, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196340420999945, 40.051104162000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 165458, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146391297999969, 39.937666479000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 165473, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204735623999966, 40.064475488000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 165487, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.991126673999986, 40.042609499000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 165502, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.974229355999967, 40.074187369000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 165573, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154937346999986, 40.030126929000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 165589, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017046988999937, 40.113163191000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 165611, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182429774999946, 39.910409706000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 165627, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143849499999988, 40.028697021000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 165682, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.052437077999969, 40.079846841000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 165756, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026423522999949, 40.083685500000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 165763, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.222312657999964, 40.02793999000005 ] } }, +{ "type": "Feature", "properties": { "objectid": 165810, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167025819999935, 40.00659190600004 ] } }, +{ "type": "Feature", "properties": { "objectid": 165827, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209050398999977, 39.971655727000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 165830, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158019834999948, 40.008446615000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 165892, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139699671999949, 40.017211372000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 165918, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166088917999957, 40.048921176000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 165991, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.077526589999934, 40.003997646000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 166123, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020034886999952, 40.108491022000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 166199, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995290103999935, 40.053446134000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 166209, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070083283999963, 40.059998066000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 166259, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219271898999978, 39.989892159000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 166303, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.086501359999943, 40.010052687000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 166307, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029262923999966, 40.036953520000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 166309, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220419868999954, 40.031282855000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 166312, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241799403999948, 40.04738565100007 ] } }, +{ "type": "Feature", "properties": { "objectid": 166340, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228210148999949, 39.98480734900005 ] } }, +{ "type": "Feature", "properties": { "objectid": 166363, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.983205793999957, 40.050856191000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 166390, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201200918999973, 39.971967542000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 166407, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.032210671999962, 40.037613183000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 166424, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159142864999978, 39.920555653000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 166432, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157988042999989, 40.011717540000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 166533, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030853801999967, 40.084136929000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 166557, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237786075999963, 40.053611824000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 166605, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179449854999973, 39.924315245000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 166607, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139436925999973, 40.026696753000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 166662, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981522197999936, 40.051807248000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 166730, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137850029999981, 39.961068392000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 166784, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202498387999981, 39.963996121000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 166896, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150807565999969, 40.01866357800003 ] } }, +{ "type": "Feature", "properties": { "objectid": 166951, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138199159999942, 39.996497058000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 166954, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162217578999957, 40.031471857000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 166972, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.046080161999953, 40.063708512000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 167015, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130545142999949, 39.967637009000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 167050, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.08921064599997, 40.032531833000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 167121, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161870865999958, 39.949804379000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 167123, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013050614999941, 40.122289457000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 167170, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.133066256999939, 40.016358980000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 167214, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024161505999984, 40.088473169000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 167237, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.108638239999948, 39.984580471000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 167279, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158094021999943, 40.051912573000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 167289, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137301729999933, 39.965640141000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 167336, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23390754899998, 40.058528310000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 167392, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130487627999969, 39.985694771000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 167396, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.038669951999964, 40.024182789000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 167402, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.250186216999964, 39.966381550000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 167419, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.074935444999937, 40.084189972000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 167449, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.221366934999935, 39.999934307000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 167542, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.001259231999938, 40.054358080000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 167571, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164703384999939, 40.064113988000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 167579, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208125460999952, 39.969041978000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 167585, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142757270999937, 40.027019993000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 167596, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177697957999953, 40.032826490000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 167654, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070064996999974, 40.041135548000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 167681, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.98663800099996, 40.086453450000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 167829, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155642659999955, 39.964231721000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 167897, "status": "MISSING", "position": "MULTI-DIRECTIONAL", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154972113999975, 39.964210232000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 167934, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237362599999983, 40.06899423200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 168004, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.192725566999968, 39.926147147000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 168026, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029023851999966, 40.083248654000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 168028, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004347848999942, 40.121388774000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 168100, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.088803920999965, 40.047771189000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 168140, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14207341499997, 40.020706730000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 168198, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.044024275999959, 40.094497550000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 168269, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168387525999947, 40.021605357000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 168308, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225100247999933, 39.987495266000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 168359, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013953647999983, 40.100227308000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 168439, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24056006099994, 40.048736277000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 168444, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013612899999941, 40.132470175000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 168468, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040113068999972, 40.053164140000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 168483, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075841981999986, 40.000054426000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 168487, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.221543528999973, 40.00012789200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 168502, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185686738999948, 39.909501330000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 168516, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.043197599999985, 40.083120718000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 168555, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.091545676999942, 40.012588482000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 168573, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.135522489999971, 39.983670433000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 168603, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014895039999942, 40.099949021000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 168616, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024884484999973, 40.041088780000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 168669, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.010404995999977, 40.122849211000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 168704, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196107274999974, 40.038013855000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 168713, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223884969999972, 39.967261968000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 168745, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.224171517999935, 39.974898748000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 168758, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.255979639999964, 39.978050262000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 168788, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.260824354999954, 39.981879112000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 168805, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033957674999954, 40.054542483000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 168970, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084663048999971, 40.011256917000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 169008, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140623237999989, 39.964192037000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 169023, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168971066999973, 40.047930266000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 169075, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.072048765999966, 39.995762032000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 169081, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995162117999939, 40.055396156000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 169126, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202434851999953, 40.066921361000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 169134, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197572860999969, 40.01333081000007 ] } }, +{ "type": "Feature", "properties": { "objectid": 169173, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995077441999968, 40.061302621000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 169264, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078277738999986, 40.079775509000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 169272, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201565157999937, 40.050051239000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 169353, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.11954826799996, 39.976013517000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 169402, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981619756999976, 40.069620924000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 169433, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.094405151999979, 39.990353394000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 169442, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141077940999935, 40.03750950400007 ] } }, +{ "type": "Feature", "properties": { "objectid": 169450, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169925527999965, 39.96065397700005 ] } }, +{ "type": "Feature", "properties": { "objectid": 169473, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016922990999944, 40.132290339000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 169478, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026159565999933, 40.04840585900007 ] } }, +{ "type": "Feature", "properties": { "objectid": 169498, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175210022999977, 40.004410635000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 169637, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152680073999989, 39.923465011000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 169721, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176864773999966, 39.911630522000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 169739, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.998762265999972, 40.081506589000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 169757, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.97884449299994, 40.068497623000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 169860, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020487488999947, 40.101005985000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 169895, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023355238999955, 40.116728118000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 169917, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.071303044999979, 40.074964357000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 169925, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206293119999941, 40.047659368000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 169931, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141567364999958, 39.995484316000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 170027, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02291446199996, 40.117196018000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 170035, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013267828999972, 40.113974933000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 170036, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140716593999969, 40.039277874000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 170073, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981877070999985, 40.049573815000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 170103, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.125412987999937, 40.024887009000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 170129, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170540347999975, 39.978202903000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 170153, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176938977999953, 40.075963191000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 170165, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231169800999965, 39.987604382000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 170182, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031301842999937, 40.05156979700007 ] } }, +{ "type": "Feature", "properties": { "objectid": 170202, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.252849955999977, 39.893699494000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 170207, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062123800999984, 40.061444807000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 170210, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159021549999977, 39.933397569000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 170242, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238999810999985, 40.059284113000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 170254, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035821978999934, 40.108819481000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 170306, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120705191999946, 39.990814167000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 170349, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07094804999997, 40.01441176600008 ] } }, +{ "type": "Feature", "properties": { "objectid": 170414, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.080266971999947, 40.013575281000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 170479, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178146856999945, 39.990800887000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 170507, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139443301999961, 40.026590507000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 170512, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.054759254999965, 40.021607064000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 170540, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018576953999968, 40.040048833000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 170569, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.060104979999949, 40.014231609000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 170580, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143338587999949, 39.921682858000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 170609, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238269055999979, 40.069672255000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 170665, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026071233999971, 40.034238287000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 170667, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242846093999958, 39.96138767900004 ] } }, +{ "type": "Feature", "properties": { "objectid": 170687, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084025609999969, 40.017903521000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 170701, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161122316999979, 39.946575562000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 170719, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.17338456899995, 40.030368689000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 170738, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.068752798999981, 40.044210110000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 170777, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172646707999945, 39.964633233000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 170778, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.190730430999963, 39.975630125000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 170847, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161913649999974, 40.052938576000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 170859, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073382110999944, 40.012618773000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 170921, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140890135999939, 40.039300304000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 170952, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155263672, 40.028636093000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 170959, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137047852999956, 40.056148698000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 170960, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.063924907999933, 40.062453207000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 171009, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.218455930999937, 39.964976255000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 171049, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204765216999988, 40.022942993000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 171066, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208718146999956, 40.059191375000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 171138, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14100887799998, 40.026899680000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 171167, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157938983999941, 40.050310008000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 171172, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163217300999975, 40.022890240000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 171182, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.252671842999973, 39.980765076000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 171213, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151002320999964, 40.026711492000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 171222, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.088462375999939, 40.019201403000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 171227, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229427673999965, 39.927274563000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 171238, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995454352999957, 40.077104916000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 171259, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.121550799999966, 39.981201660000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 171310, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164055468999948, 39.914564683000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 171361, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030851851999955, 40.084126941000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 171404, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.010771480999949, 40.135243279000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 171442, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.989789851999944, 40.044186555000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 171493, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187516757999958, 39.958753769000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 171535, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155198676999987, 40.020767573000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 171544, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.10999015799996, 39.983270798000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 171562, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.059774125999979, 40.098115580000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 171597, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.250874806999946, 39.967874647000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 171606, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029645857999981, 40.035659380000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 171618, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995259049999959, 40.053614266000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 171679, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.994963139999982, 40.051804806000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 171747, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171480783999982, 40.058743670000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 171778, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.068594934999965, 40.009785918000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 171806, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15193087199998, 40.017651556000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 171815, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199730883999962, 40.065317085000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 171818, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134036666999975, 40.058112422000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 171825, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.131768806999958, 40.000463584000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 171869, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.215881051999986, 40.034166268000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 171874, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157703735999974, 40.021410366000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 171889, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147175220999941, 39.971624115000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 171982, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.059063499999979, 40.067354996000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 172008, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185427693999941, 40.00967720400007 ] } }, +{ "type": "Feature", "properties": { "objectid": 172041, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.000557334999939, 40.053718042000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 172104, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202372804999982, 40.075125008000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 172157, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197918500999947, 40.065531055000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 172230, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173655050999969, 39.989824217000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 172383, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035314265999943, 40.05584084000003 ] } }, +{ "type": "Feature", "properties": { "objectid": 172421, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075795652999943, 40.063190150000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 172438, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161417028999949, 39.999608023000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 172505, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020590114999948, 40.107446350000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 172530, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.034849920999989, 40.065493103000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 172555, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207983134999949, 39.969055834000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 172581, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175282838999976, 40.000528404000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 172596, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.094286021999949, 39.990411832000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 172755, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177139886999953, 39.920711242000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 172760, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15949967399996, 39.976044389000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 172772, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.045578581999962, 40.05029862400005 ] } }, +{ "type": "Feature", "properties": { "objectid": 172784, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14758502899997, 39.932819832000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 172810, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078695324999956, 40.08220465900007 ] } }, +{ "type": "Feature", "properties": { "objectid": 172828, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16121250599997, 39.99322144100006 ] } }, +{ "type": "Feature", "properties": { "objectid": 172871, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137270919999935, 40.032576835000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 172892, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18664122499996, 39.99015231900006 ] } }, +{ "type": "Feature", "properties": { "objectid": 172912, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154868486999987, 39.94501634900007 ] } }, +{ "type": "Feature", "properties": { "objectid": 172949, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234367462999955, 39.927425433000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 172977, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.133043912999938, 40.01646929900005 ] } }, +{ "type": "Feature", "properties": { "objectid": 172980, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204897, 40.081081242000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 173068, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228082650999966, 39.946280981000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 173112, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153504544999976, 40.042964384000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 173134, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073904193999965, 40.022050971000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 173190, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049803083999961, 40.050606591000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 173247, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.010119747999966, 40.054530336000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 173347, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.034626727999978, 40.025430177000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 173365, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237271568999972, 39.950281824000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 173369, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182811951999952, 39.985037396000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 173382, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142454654999938, 40.02394053900008 ] } }, +{ "type": "Feature", "properties": { "objectid": 173398, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143574129999934, 40.011498803000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 173441, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233610474999978, 40.070953041000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 173498, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.214507964999939, 40.087606915000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 173511, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07603779599998, 40.019502716000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 173572, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246722976999934, 39.894350838000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 173591, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203082214999938, 40.05085276300008 ] } }, +{ "type": "Feature", "properties": { "objectid": 173627, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.011837121999974, 40.091789446000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 173644, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233187585999985, 40.048864904000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 173688, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159934520999968, 40.007175056000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 173713, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017700820999949, 40.103124291000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 173725, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143950121999978, 40.050716377000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 173784, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198477720999961, 40.015246495000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 173842, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031210973999976, 40.055758516000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 173847, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243192523999937, 39.909558821000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 173860, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.04127942599996, 40.099184340000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 173876, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.010487360999946, 40.122755544000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 173972, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.012536610999973, 40.136328881000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 173989, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187857720999943, 40.030964616000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 174109, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198350685999969, 40.066839150000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 174125, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981499108999969, 40.051671948000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 174206, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.975319276999983, 40.076794573000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 174238, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.118420541999967, 39.990459555000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 174254, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148270885999978, 40.030938452000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 174279, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207579180999971, 40.021898491000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 174296, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187635414999988, 39.891414019000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 174309, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.253872425999987, 39.975982101000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 174314, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062147182999979, 40.061442605000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 174387, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134260223999945, 40.048994520000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 174415, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129329390999942, 40.053705192000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 174441, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062684968999974, 40.060635059000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 174489, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.217602128999943, 40.022647701000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 174498, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075604927999962, 40.063215342000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 174549, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187381788999971, 40.036742960000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 174560, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995620929999973, 40.052201340000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 174593, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.22322212499995, 39.883904442000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 174723, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199959846999946, 40.069650350000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 174763, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249182338999958, 40.063902490000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 174771, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171129052999959, 39.955325605000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 174788, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202895039999987, 40.050893085000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 174798, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231492121999963, 39.964050267000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 174808, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23808891699997, 40.069758935000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 174815, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16729399899998, 39.930391446000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 174816, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220742306999966, 39.931205263000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 174885, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182365436999987, 39.889474247000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 174892, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206254494999939, 40.073823918000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 174907, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185633222999968, 39.954269434000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 174950, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184423057999936, 40.043678765000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 174991, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.096534973999951, 40.047124262000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 174997, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18751761599998, 39.935428098000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 175002, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058354871999938, 40.031646901000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 175076, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220239875999937, 40.038499933000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 175111, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.086461066999959, 40.010109182000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 175164, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016837599999974, 40.132998791000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 175264, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.21704198599997, 40.028055638000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 175265, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145163374999981, 39.952121046000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 175273, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196188566999979, 39.94877776800007 ] } }, +{ "type": "Feature", "properties": { "objectid": 175276, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189145405999966, 40.068977252000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 175326, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.133160054999962, 40.020187085000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 175327, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155194579999943, 39.965647753000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 175385, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228762597999946, 39.975525314000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 175433, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178977489999966, 39.998024189000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 175642, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.226766787999964, 40.039205803000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 175741, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209231647999957, 40.03372551700005 ] } }, +{ "type": "Feature", "properties": { "objectid": 175763, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167177832999982, 39.93164073500003 ] } }, +{ "type": "Feature", "properties": { "objectid": 175772, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.973548802999971, 40.075955278000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 175797, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170096356999977, 40.072189373000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 175799, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.008109787999956, 40.128528133000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 175835, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113718130999985, 39.981325949000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 175878, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168394048999971, 40.021590113000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 175913, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031319189999977, 40.040363787000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 175943, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223051930999986, 39.939720143000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 176046, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187250527999936, 39.889225833000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 176073, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172218634999979, 40.047325704000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 176114, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014368895999951, 40.115479966000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 176169, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149023415999977, 40.037276551000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 176174, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.982037661999982, 40.088281596000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 176215, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172970708999969, 40.057238385000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 176280, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199776264999969, 40.073432952000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 176307, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009454160999951, 40.126122313000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 176374, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.106074267999986, 40.001678647000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 176441, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.222840473999952, 39.974681491000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 176444, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014579230999971, 40.134133521000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 176478, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159273121999945, 39.962450707000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 176548, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.110552022999968, 39.999255041000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 176554, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084861560999968, 40.028350608000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 176643, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23343233099996, 40.070812198000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 176673, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.010430460999942, 40.068052 ] } }, +{ "type": "Feature", "properties": { "objectid": 176683, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237125768999988, 39.929140534000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 176774, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029838228999949, 40.030960801000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 176787, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031670190999989, 40.038470195000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 176820, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07961292899995, 40.066168961000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 176831, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120474213999955, 40.049973458000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 176864, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.054170493999948, 40.049232223000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 176874, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018928291999941, 40.054855300000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 176898, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231943035999961, 40.060497870000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 176967, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.066777813999977, 40.010374536000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 177012, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070567445999984, 40.011863494000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 177015, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194438281999965, 39.926721826000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 177039, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.005671723999967, 40.050078645000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 177053, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243273028999965, 40.046683873000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 177063, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083460081999988, 40.078850948000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 177096, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172787937999942, 40.046595491000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 177105, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181957198999953, 40.003829027000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 177198, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203254955999967, 39.950627052000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 177211, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.121571023999934, 40.043738310000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 177390, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.022123135999948, 40.11782376900004 ] } }, +{ "type": "Feature", "properties": { "objectid": 177409, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.133316020999985, 40.055244801000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 177466, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.987876377999953, 40.069236192000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 177469, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03235934199995, 40.076544521000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 177510, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201565896999966, 40.05003178000004 ] } }, +{ "type": "Feature", "properties": { "objectid": 177571, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178024990999972, 40.066847197000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 177583, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.045988440999963, 40.063805511000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 177592, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203140814999983, 39.967456823000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 177595, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167356031999986, 40.008117913000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 177718, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004664438999953, 40.040059228000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 177756, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246500924999964, 39.988212997000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 177784, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24502307299997, 39.892325862000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 177807, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237877233999939, 40.051492906000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 177815, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040488841999945, 40.091697280000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 177878, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164392862999989, 40.07589596300005 ] } }, +{ "type": "Feature", "properties": { "objectid": 177911, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981094053999982, 40.096097787000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 177993, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170804574999977, 39.957232438000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 178058, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.247751671999936, 39.885379262000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 178113, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140545776999943, 40.040864268000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 178163, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016657229999964, 40.056565053000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 178175, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164220699999987, 39.914505936000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 178234, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058980402999964, 40.044338154000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 178259, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180346476999944, 40.045016024000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 178342, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161837214999935, 39.934833083000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 178359, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208341291999943, 40.071555844000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 178371, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172791435999955, 39.918433113000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 178388, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136525695999978, 39.96143489800005 ] } }, +{ "type": "Feature", "properties": { "objectid": 178431, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02018166299996, 40.093045507000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 178432, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157293939999988, 40.01326866900007 ] } }, +{ "type": "Feature", "properties": { "objectid": 178437, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.174368228999981, 39.956825869000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 178490, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147377055999982, 39.965538438000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 178513, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.065217573999973, 40.061082413000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 178527, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.98179904999995, 40.063151208000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 178533, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18923013899996, 39.992100153000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 178537, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129152769999962, 40.053579066000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 178656, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143360207999933, 39.983456756000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 178690, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.13333279699998, 40.055224817000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 178759, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.990858953999975, 40.045363677000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 178801, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.239033421999977, 39.950517226000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 178886, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194983018999949, 40.037057565000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 178889, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169885872999942, 40.021927737000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 178904, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.999778791999972, 40.053267753000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 178924, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172621596999988, 40.046936279000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 179109, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155691331999947, 40.011199342000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 179113, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.101310380999962, 40.033315156000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 179161, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161151518999986, 39.994178300000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 179190, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209154617999957, 39.948481518000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 179215, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241226412999936, 39.897658146000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 179226, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.001663621999967, 40.124087566000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 179242, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153009150999935, 39.961721225000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 179245, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.068392342999971, 40.031531953000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 179324, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.218203224999968, 40.022211585000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 179333, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136608292999938, 40.031954282000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 179347, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187325206999958, 40.01021115900005 ] } }, +{ "type": "Feature", "properties": { "objectid": 179374, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.239196989999982, 40.072331347000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 179407, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028536201999941, 40.052984755000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 179425, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.983209054999975, 40.100400259000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 179442, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154764951999937, 39.967679538000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 179487, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.222478852999984, 40.083557055000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 179546, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.102407728999935, 40.032214620000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 179565, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.126888347999966, 39.991334187000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 179640, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.133738435999987, 40.030527928000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 179648, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035712804999946, 40.052508984000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 179662, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188544290999971, 39.965549855000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 179736, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.12884967399998, 40.000190516000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 179744, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.212865448999935, 39.969582338000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 179917, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.069680648999963, 40.029928347000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 179987, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198719927999946, 39.935596412000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 179994, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.13924385599995, 39.976277827000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 180090, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049855509999986, 40.032776217000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 180134, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01594459599994, 40.058304431000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 180185, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023446454999942, 40.105281054000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 180242, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.087134636999963, 40.044957256000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 180249, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206531754999958, 39.976093139000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 180271, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.994877721999956, 40.051740418000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 180320, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.045299111999952, 40.025745147000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 180331, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228416812999967, 39.962004277000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 180372, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152946826999937, 40.00955551800007 ] } }, +{ "type": "Feature", "properties": { "objectid": 180407, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206994538999936, 40.058293369000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 180419, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198479018999933, 39.976287334000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 180424, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.050065167999946, 40.084062190000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 180464, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.074916465999934, 40.023209521000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 180494, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143215472999941, 39.921571264000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 180518, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144512639999959, 40.043711780000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 180519, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136860021999951, 40.002656241000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 180608, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20477322399995, 40.064617666000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 180633, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144454446999987, 39.938918905000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 180710, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183985395999969, 40.040123501000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 180711, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153422495999962, 39.939824977000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 180716, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01212757899998, 40.040682107000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 180749, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031635091999988, 40.053379637000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 180763, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134711526999979, 40.026088394000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 180818, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.980444611999985, 40.085638463000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 180821, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175122078999948, 40.019913078000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 180824, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.042980785999987, 40.089120653000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 180859, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030163236999954, 40.039162361000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 180934, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.045211276999964, 40.09301718100005 ] } }, +{ "type": "Feature", "properties": { "objectid": 180945, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.160254020999957, 40.005679332000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 180976, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177558129999966, 39.961340784000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 180977, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162135741999975, 39.927104027000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 180999, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15308631299996, 39.968625578000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 181026, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248718906999954, 39.88447493700005 ] } }, +{ "type": "Feature", "properties": { "objectid": 181173, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204716710999946, 40.064474767000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 181286, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132403634999946, 40.000532841000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 181298, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.095520133999969, 40.051094238000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 181323, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.124768804999974, 40.038402903000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 181328, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040118321999955, 40.053201411000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 181375, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235154490999946, 39.910525861000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 181518, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.034333451999942, 40.055445537000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 181533, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024572646999957, 40.119142880000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 181540, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120409021999933, 40.050084885000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 181574, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.993973552999989, 40.045310107000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 181597, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030860547999964, 40.052068704000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 181660, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016950262999956, 40.133011639000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 181694, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.997445379999988, 40.05114250400004 ] } }, +{ "type": "Feature", "properties": { "objectid": 181710, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.054763359999981, 40.021590672000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 181777, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167462457999989, 39.930332209000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 181865, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.036457824999957, 40.102428021000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 181875, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147135036999941, 40.015054231000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 181945, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.081048247999945, 40.015296616000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 181949, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.085388592999948, 40.05158272400007 ] } }, +{ "type": "Feature", "properties": { "objectid": 181984, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030184657999939, 40.036511450000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 182009, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152795620999939, 39.915751323000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 182072, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183082078999973, 40.067743365000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 182092, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144174484999951, 40.027202587000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 182109, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155693793999944, 39.94912787100003 ] } }, +{ "type": "Feature", "properties": { "objectid": 182145, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188640346999989, 40.062530184000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 182208, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.22312054799994, 39.883768881000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 182305, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157936006999989, 39.933576874000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 182320, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185349568999982, 40.009445673000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 182346, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206534151999961, 39.959936016000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 182354, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.039037237999935, 40.093841614000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 182360, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.247128323999959, 39.973632578000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 182362, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.111932400999933, 40.030867944000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 182391, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161986902999956, 40.038202139000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 182396, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148463635999974, 40.029418829000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 182409, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.218590278999955, 39.951883270000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 182476, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026336295999954, 40.117444335000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 182534, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.222380857999951, 40.027902586000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 182571, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175395384999945, 40.004431814000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 182622, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136097414999938, 40.027682417000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 182654, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.978416350999964, 40.09502494700007 ] } }, +{ "type": "Feature", "properties": { "objectid": 182730, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147213047999969, 39.966437900000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 182733, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019388876999983, 40.058458650000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 182744, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240704794999942, 39.952121521000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 182796, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184159406999981, 39.951895753000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 182804, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151378066999939, 40.002997411000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 182839, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159126801999946, 39.962485267000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 182872, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199474196999972, 40.073399259000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 182891, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138630705999958, 39.980894606000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 182897, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229653675999941, 39.987214943000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 182907, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228267091999953, 40.060399678000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 182943, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981809128999942, 40.049621065000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 182992, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.066754580999941, 40.002363410000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 183040, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.091440636999948, 40.012544134000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 183042, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016937330999951, 40.132303137000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 183122, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155262454999956, 39.969069328000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 183182, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204865629999972, 40.073021482000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 183191, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14434338999996, 40.057209473000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 183253, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067291270999988, 40.068628103000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 183351, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209833685999968, 40.070038885000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 183359, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248763299999951, 39.909361557000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 183386, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.022095320999938, 40.117821559000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 183527, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220540356999948, 39.92339226100006 ] } }, +{ "type": "Feature", "properties": { "objectid": 183567, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198260632999961, 40.015286182000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 183570, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229117765999945, 40.042251367000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 183571, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.094037507999985, 40.018131867000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 183606, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.212648957999988, 39.938863322000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 183658, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15309659899998, 40.023644628000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 183716, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.211290524999981, 40.068404627000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 183726, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996165854999958, 40.052840829000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 183755, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178261784999961, 39.951924074000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 183756, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155304169999965, 39.998707766000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 183767, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228263402999971, 39.953184254000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 183796, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.245420660999969, 39.901169511000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 183815, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119779662999974, 40.043409944000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 183901, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079446407999967, 40.014404711000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 183934, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.099643274999949, 39.98868612900003 ] } }, +{ "type": "Feature", "properties": { "objectid": 183943, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143238016999987, 40.046468290000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 183955, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.218785795999963, 40.077827811000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 183967, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223367548999988, 39.883633527000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 184017, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184096458999988, 40.040022585000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 184063, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.250836632999949, 39.96803466800003 ] } }, +{ "type": "Feature", "properties": { "objectid": 184068, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169938951999939, 40.021871476000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 184070, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.082384576999971, 40.016145509000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 184071, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178118032999976, 39.96204861800004 ] } }, +{ "type": "Feature", "properties": { "objectid": 184269, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179100754, 40.048894038000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 184328, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20495391999998, 40.081022493000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 184338, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.25220946099995, 39.976783376000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 184340, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.985029129999987, 40.09228321300003 ] } }, +{ "type": "Feature", "properties": { "objectid": 184406, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189459510999939, 40.071077283000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 184409, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168952837999939, 40.003792890000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 184411, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.245652871999937, 39.899422869000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 184428, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.036377932999983, 40.043410588000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 184461, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.087240555999983, 40.044837224000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 184467, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073902526999973, 40.021272712000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 184482, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244238080999935, 39.978573170000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 184494, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120545766999953, 40.02116359200005 ] } }, +{ "type": "Feature", "properties": { "objectid": 184657, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139964823999946, 39.970997624000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 184659, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194747705999987, 39.922087263000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 184678, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240824054999962, 39.909185938000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 184712, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.255486495999946, 39.975442060000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 184782, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132134956999948, 39.984709082000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 184857, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026426954999977, 40.117354034000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 184861, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013402954999947, 40.041504373000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 184864, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.025102928999956, 40.09101770500007 ] } }, +{ "type": "Feature", "properties": { "objectid": 184903, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146595880999939, 39.997663709000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 184931, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164793686999985, 39.934241307000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 184969, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164306731999943, 39.943991140000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 185121, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017520507999961, 40.110597933000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 185149, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161075607999976, 39.938420628000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 185171, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079658267999946, 40.076866966000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 185204, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163743691999969, 40.044736698000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 185222, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.212453279999977, 39.981576306000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 185255, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031455965999953, 40.084627721000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 185276, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.982006260999981, 40.063275296000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 185344, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.063877096999988, 40.045146401000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 185346, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119408539999938, 39.992642548000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 185388, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156093245999955, 40.009961320000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 185536, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149816875999988, 40.053036170000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 185572, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132366678999972, 39.989493561000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 185628, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178808386999947, 39.944476103000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 185666, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171709711999938, 39.930881859000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 185681, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132066182999949, 40.045948292000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 185696, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.135447676999945, 40.031792456000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 185733, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.17690218499996, 39.911480492000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 185745, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141210164999961, 40.015914784000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 185755, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220008791999987, 39.95378893700007 ] } }, +{ "type": "Feature", "properties": { "objectid": 185836, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165956284999936, 40.019815552000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 185937, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182905253999934, 40.033988420000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 185970, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.260838150999973, 39.971507475000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 186002, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.102943246999985, 40.050887010000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 186010, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.043116330999965, 40.062566074000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 186016, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018547075999948, 40.13350476100004 ] } }, +{ "type": "Feature", "properties": { "objectid": 186041, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145681664999984, 39.995093869000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 186051, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136386732999938, 39.996362506000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 186066, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.192727108999975, 39.925816538000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 186107, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.118684105999989, 40.047748092000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 186122, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241937550999978, 39.897532249000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 186128, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143264174999956, 39.951868120000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 186209, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200081867999984, 39.960506027000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 186236, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154101625999942, 39.96326511500007 ] } }, +{ "type": "Feature", "properties": { "objectid": 186241, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.06783588899998, 40.074978725000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 186262, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.038327131999949, 40.094358662000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 186271, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20771532699996, 39.966595168000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 186273, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206159271999979, 40.073785146000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 186351, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029092437999964, 40.036914890000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 186374, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.080941436999979, 40.015235894000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 186377, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230337180999982, 39.963801115000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 186470, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168477312999983, 39.920343476000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 186549, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.247134865999953, 39.970561174000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 186558, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.101187827999979, 40.033440978000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 186562, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181747949999988, 39.969233407000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 186578, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.044371660999957, 40.040304472000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 186683, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146463648999941, 39.964562778000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 186689, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189497952999943, 39.99210593600003 ] } }, +{ "type": "Feature", "properties": { "objectid": 186763, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.969647963999989, 40.080986984000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 186799, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.261009719999947, 39.971613767000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 186834, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017004155999985, 40.053151554000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 186855, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246280066999987, 39.988161522000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 186868, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.96935534499994, 40.102471702000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 186996, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195632683999975, 39.931448408000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 187000, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03514744499995, 40.055766149000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 187006, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130680177999977, 39.967583716000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 187035, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171936847999973, 40.005445055000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 187054, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018556462999982, 40.111909199000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 187089, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.012736822999955, 40.13012397500006 ] } }, +{ "type": "Feature", "properties": { "objectid": 187100, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.239094159999979, 40.074063121000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 187139, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.00640548299998, 40.129988267000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 187167, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143194302999973, 39.921667144000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 187170, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113529348999975, 40.032886345000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 187173, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083373386999938, 40.071089154000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 187220, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014394175999939, 40.057312642000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 187231, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.973760790999961, 40.116118914000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 187292, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173443044999942, 40.066949707000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 187305, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219816420999962, 39.973185715000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 187313, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.012889996999945, 40.131880090000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 187314, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16819382999995, 39.892755931000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 187320, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.232873053999981, 39.951282182000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 187332, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140014419999943, 39.97110923200006 ] } }, +{ "type": "Feature", "properties": { "objectid": 187339, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152598803999979, 40.01111142700006 ] } }, +{ "type": "Feature", "properties": { "objectid": 187388, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.985723705999987, 40.092210237000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 187467, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173981218999984, 40.06819917100006 ] } }, +{ "type": "Feature", "properties": { "objectid": 187471, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067490212999985, 40.039695020000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 187484, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230139248999933, 39.967716761000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 187494, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058208308999951, 40.062122179000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 187515, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18409275199997, 39.971305093000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 187529, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.97193520999997, 40.080379925000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 187541, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163638886999934, 39.959868295000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 187591, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210157185999947, 40.07607369200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 187593, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079633804999958, 40.055844516000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 187654, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.117977937999967, 39.993293919000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 187679, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.065337473999989, 40.034536876000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 187683, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119841378, 39.992291131000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 187703, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178140708999933, 39.962059791000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 187723, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233426822999945, 40.07079131100005 ] } }, +{ "type": "Feature", "properties": { "objectid": 187768, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.222675274999972, 39.985836630000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 187794, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230921386999967, 39.986950937000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 187895, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207553178999945, 40.071197745000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 187929, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237350246999938, 40.052601891000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 187934, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.226211810999985, 39.995648077000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 187943, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242454281999983, 40.046955701000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 187944, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195174455999961, 40.058258761000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 187959, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227304412999956, 39.982534359000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 187976, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139784109999937, 39.973759607000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 187987, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136499035999975, 39.961318687000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 187995, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.098261063999985, 40.052671360000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 188109, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219188416999941, 39.982299259000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 188136, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.001582652999957, 40.128870493000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 188137, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084023496999976, 40.067096995000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 188175, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981636959999946, 40.069449834000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 188185, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137460008999938, 39.974577479000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 188187, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207646249999982, 40.071254758000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 188232, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019107855999948, 40.119741857000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 188265, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201180206999936, 39.963667737000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 188512, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176405009999939, 40.065930467000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 188618, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184903603999942, 39.993122006000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 188672, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.97105199799995, 40.081807979000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 188718, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.13682459499995, 40.019896368000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 188814, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.191997031999961, 39.952898719000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 188863, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.025904117999971, 40.048625553000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 188887, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031288695999933, 40.070340191000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 188928, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.109764728999949, 39.988448628000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 188964, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203003055999943, 40.050800032000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 188995, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169925717999945, 39.893934953000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 189102, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.054158342999983, 40.036100511000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 189186, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188256274999958, 39.939572700000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 189190, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.044749626999987, 40.023783540000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 189285, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.174292446999971, 40.062582536000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 189317, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996944560999964, 40.05051002600004 ] } }, +{ "type": "Feature", "properties": { "objectid": 189343, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004745488999959, 40.128465061000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 189369, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.192811740999957, 39.962062766000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 189385, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244115232999945, 40.046107431000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 189397, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.091625765999936, 40.009978712000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 189400, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.086947025999962, 40.035134622000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 189403, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134319124999934, 39.980336163000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 189440, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.213625123999975, 39.971235651000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 189450, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24762383999996, 39.885763330000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 189476, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244930988999954, 39.892481148000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 189492, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064955587999975, 40.061118573000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 189517, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227344967999954, 40.041626589000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 189646, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033123298999953, 40.084344037000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 189699, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.008381247999978, 40.125062736000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 189700, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.055551782999942, 40.050173197000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 189752, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187484180999945, 40.036646510000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 189756, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.091528001999961, 40.021104321000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 189757, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229765206999957, 39.977037438000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 189860, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.131495156999961, 39.997948550000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 189865, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201766218999978, 40.050033794000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 189871, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237443442999961, 40.06906323700008 ] } }, +{ "type": "Feature", "properties": { "objectid": 189961, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184689741999989, 40.062351010000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 189985, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156906179999964, 40.024054670000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 190012, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189053649999948, 39.965879371000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 190043, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078043888999957, 40.078805001000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 190048, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178839080999978, 39.936798488000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 190057, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.269930230999989, 39.973636298000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 190191, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.122497838999948, 39.996085050000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 190205, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.11246016299998, 40.000490013000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 190261, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.193033174999982, 39.963309449000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 190308, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142275134999977, 40.028493940000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 190313, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.218959479999967, 40.03974665100003 ] } }, +{ "type": "Feature", "properties": { "objectid": 190349, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146159686999965, 39.927611744000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 190357, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144231237999975, 40.040555048000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 190364, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157942022999976, 39.916398885000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 190385, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248526176999974, 39.899054943000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 190409, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.117300403999934, 39.991063584000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 190455, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154047458999969, 40.025956962000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 190465, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229205495999963, 40.042209605000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 190477, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207784363999963, 40.043932540000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 190539, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15902357899995, 40.022664611000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 190587, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161539011999935, 40.059968095000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 190617, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171110904999978, 40.002381957000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 190689, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147286591999944, 40.016558885000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 190738, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013360881999972, 40.132550648000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 190766, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220924626999988, 39.970032540000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 190768, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017945347999955, 40.112521553000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 190797, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.984985317999985, 40.092178487000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 190878, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188547430999961, 39.970021513000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 190906, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.174582119999968, 40.052488938000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 190932, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.005668450999963, 40.062123331000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 190936, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083858701999986, 40.066811013000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 190939, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049425059999976, 40.051618143000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 190951, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02866867399996, 40.108086494000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 190965, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231305625999937, 39.964025123000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 191075, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.108973047999939, 39.99904415900005 ] } }, +{ "type": "Feature", "properties": { "objectid": 191123, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.04137127499996, 40.09114160300004 ] } }, +{ "type": "Feature", "properties": { "objectid": 191209, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.108591427999954, 39.999048936000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 191226, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20762951599994, 40.020279677000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 191287, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.021928216999981, 40.117977233000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 191290, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199867192999989, 40.074028636000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 191294, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.19305875699996, 40.035462478000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 191311, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186873459999958, 40.000800016000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 191369, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.043497379999963, 40.02816718400004 ] } }, +{ "type": "Feature", "properties": { "objectid": 191387, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24575082399997, 39.919594888000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 191392, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009060312999964, 40.119781360000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 191399, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206245935999959, 40.073697258000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 191455, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.975367604999974, 40.076919470000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 191463, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159148190999986, 39.96874295300006 ] } }, +{ "type": "Feature", "properties": { "objectid": 191589, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.118533138999965, 40.019135540000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 191651, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208983837999938, 39.948484782000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 191656, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200524258999963, 39.932192561000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 191663, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161200654999959, 39.994042780000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 191700, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143863823999936, 39.995780860000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 191716, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194797394999966, 39.921852272000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 191749, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.994957201999966, 40.061384525000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 191757, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.082506135999949, 40.063120421000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 191826, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.983917214999963, 40.06884291800003 ] } }, +{ "type": "Feature", "properties": { "objectid": 191864, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018538260999946, 40.130085655000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 191868, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.998541563999936, 40.081316530000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 192024, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024423746999958, 40.104529727000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 192030, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151021136999987, 40.059348746000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 192065, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07585616199998, 40.019531328000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 192073, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203507619999982, 40.080193242000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 192097, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143232266999973, 39.945220053000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 192190, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150821355999938, 39.93011617600007 ] } }, +{ "type": "Feature", "properties": { "objectid": 192220, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.045415760999958, 40.092999289000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 192345, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128891309999972, 40.030032733000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 192362, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178191058999971, 39.913735833000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 192387, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229417788999967, 39.91514697100007 ] } }, +{ "type": "Feature", "properties": { "objectid": 192607, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147664081999949, 39.948903113000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 192613, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165931432999969, 39.927712288000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 192666, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151473867999982, 40.00467661600004 ] } }, +{ "type": "Feature", "properties": { "objectid": 192672, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208030363999967, 40.058783138000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 192678, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167049093999935, 39.931534984000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 192685, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154144107999969, 40.043731836000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 192717, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153673926999943, 40.028526599000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 192723, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166684130999954, 39.982902270000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 192769, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.071240390999947, 40.075051887000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 192861, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151088475999984, 40.059456358000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 192939, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134666982999988, 40.011751844000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 193015, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049596554999937, 40.05162925500008 ] } }, +{ "type": "Feature", "properties": { "objectid": 193105, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.193498140999964, 39.922401481000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 193111, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.099164307999956, 39.995939193000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 193137, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159440148999977, 39.920596685000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 193157, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144759197999974, 39.975609802000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 193217, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.103922937999982, 40.030366898000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 193220, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150332401999947, 40.007449491000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 193227, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.985627874999977, 40.092289566000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 193272, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040785225999969, 40.087200710000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 193356, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009950103999984, 40.129870320000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 193383, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149835691999954, 39.990213831000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 193390, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168163010999933, 40.008218509000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 193401, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157820565999941, 40.050303271000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 193420, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.991703347999987, 40.045900761000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 193428, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240319605999957, 40.048416542000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 193448, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176528050999934, 40.065810260000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 193473, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142601766999974, 40.026999755000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 193521, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187367786999971, 39.993475755000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 193552, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225650522999956, 39.93766905800004 ] } }, +{ "type": "Feature", "properties": { "objectid": 193556, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064539305999972, 40.090821812000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 193598, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030277683999941, 40.037663552000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 193609, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996028793999983, 40.055941415000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 193624, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.105968446999952, 40.032366517000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 193653, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120556337999972, 40.024174731000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 193693, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146016546999988, 39.927588546000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 193710, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146863816999939, 39.989741267000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 193744, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.054459399999985, 40.051303951000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 193745, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173472993999951, 40.068923526000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 193877, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167921014999934, 39.927859118000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 193888, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206625292999945, 39.961317998000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 193927, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144182641999976, 39.997248480000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 193979, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238995358999944, 40.072235297000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 193989, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.98052477899995, 40.085515677000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 194047, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.174385133999976, 40.037812322000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 194112, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.102254792999986, 40.032118088000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 194247, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.047991716999945, 40.112229667000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 194264, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134464557999934, 40.049001794000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 194292, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.254896279999969, 39.894979226000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 194335, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142734202999975, 40.030057022000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 194353, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207010522999951, 40.058288292000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 194408, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.239782900999955, 39.991970928000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 194432, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.121952359999966, 40.042633383000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 194448, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.983256253999969, 40.050817972000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 194521, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158550198999933, 40.032312446000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 194524, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170641972999988, 40.048978518000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 194539, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143973012999936, 40.050733448000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 194558, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.071474301999956, 40.069251634000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 194563, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202589774999979, 39.977440487000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 194628, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.17157575799996, 40.058655625000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 194638, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220226053999966, 39.952744108000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 194644, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197416077999947, 40.013285544000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 194692, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079128181999977, 40.013042145000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 194701, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004735631999949, 40.128351494000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 194762, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.222047599999939, 40.035151039000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 194789, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204113199999938, 40.020166205000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 194836, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184865612999943, 39.908380090000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 194846, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017630347999955, 40.110516619000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 194850, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.983171517999949, 40.050851383000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 194901, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153940159999934, 40.008016043000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 194922, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995010669999942, 40.051655249000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 194943, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139934392999976, 40.036167856000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 195056, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204276087999972, 39.975906272000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 195067, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170677294999962, 40.060393753000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 195080, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.124938494999981, 40.018351702000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 195135, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.039175784999941, 40.093962089000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 195238, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995257156999969, 40.053443647000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 195368, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058254137999938, 40.031754206000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 195386, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.239033454999969, 40.07392889700003 ] } }, +{ "type": "Feature", "properties": { "objectid": 195399, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.072336605999965, 40.057615144000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 195416, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177883170999962, 40.066765195000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 195443, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996597152999982, 40.120783865000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 195491, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177852978999965, 40.032912145000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 195559, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.048812263999935, 40.051600123000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 195596, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233594928999935, 40.070952989000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 195678, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146254259999978, 39.965373298000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 195710, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244357711999953, 39.922960861000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 195764, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.997460383999965, 40.050968113000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 195767, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996437312999944, 40.088837122000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 195873, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.037701581999954, 40.082598789000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 195879, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.97969545899997, 40.069908271000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 195916, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.002672303999987, 40.084883816000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 196069, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168910768999979, 39.965429823000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 196087, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146503206999967, 39.962218501000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 196134, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.050295845999983, 40.086311439000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 196178, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.003781711999977, 40.059557762000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 196185, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155658460999973, 40.022458623000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 196197, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201771626999971, 40.050017865000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 196207, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.036604608999937, 40.07536390000007 ] } }, +{ "type": "Feature", "properties": { "objectid": 196247, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166067562999956, 40.04892656700008 ] } }, +{ "type": "Feature", "properties": { "objectid": 196256, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157868191999967, 40.032988587000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 196363, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202996411999948, 40.070840260000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 196402, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130199415999982, 40.047483973000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 196423, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178002445999937, 40.029089913000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 196440, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079491150999957, 40.066102511000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 196473, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166442703999962, 39.928944433000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 196563, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.100584898999955, 40.007486887000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 196590, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146080306999977, 39.966119484000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 196591, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035484821999944, 40.080725887000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 196666, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03110737999998, 40.053490921000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 196722, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209085922999975, 40.070980846000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 196726, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200141039999949, 40.051563155000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 196747, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248964791999981, 39.884604941000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 196789, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.218675215999951, 40.083020442000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 196848, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14935617499998, 40.007327381000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 196864, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20613, 40.065287847000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 196893, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.106671447999986, 40.008291196000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 196905, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.135039915999982, 40.049071208000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 196915, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152548724999974, 39.996810522000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 196971, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219549274999963, 39.960891571000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 197010, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200606334999975, 39.93209063200004 ] } }, +{ "type": "Feature", "properties": { "objectid": 197011, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183227107999983, 40.006665945000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 197024, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241723534999949, 39.914292254000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 197065, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084661769999968, 40.034077981000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 197082, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.065059768999959, 40.061002830000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 197124, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030992827999967, 40.043017786000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 197134, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.089312903999939, 40.010170242000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 197150, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017418244999988, 40.134796078000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 197154, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014182432999974, 40.039462783000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 197162, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219132637999962, 40.025672731000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 197168, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158007764999979, 39.935539662000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 197181, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186445480999964, 40.036037250000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 197183, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152247877999969, 40.068975021000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 197244, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202327152999942, 40.062659022000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 197283, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18125355899997, 39.916810327000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 197310, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.116008579999971, 39.977181313000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 197311, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.080273265999949, 40.018432182000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 197322, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164624843999945, 40.056704108000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 197414, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.034078589999979, 40.102785683000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 197421, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.253345766999985, 39.969877412000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 197443, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.00567420699997, 40.125670118000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 197445, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019083557999977, 40.05488598200003 ] } }, +{ "type": "Feature", "properties": { "objectid": 197466, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.126122606999957, 40.021856085000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 197548, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.082265607999943, 40.016080336000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 197630, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158322991999967, 40.04384576800004 ] } }, +{ "type": "Feature", "properties": { "objectid": 197678, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.214550556999939, 39.99384311600005 ] } }, +{ "type": "Feature", "properties": { "objectid": 197706, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078485273999945, 40.049646605000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 197724, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.025177048999979, 40.118551418000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 197731, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.021086303999937, 40.111428295000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 197753, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.967070945999978, 40.081994010000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 197756, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229190409999944, 40.029723081000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 197843, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.190057476999982, 40.031512304000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 197850, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228082428999983, 39.963624197000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 197882, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.015040253999985, 40.134892079000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 197946, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99104975399996, 40.042526615000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 197956, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161903614999972, 39.914197972000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 197977, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16803927899997, 39.940315509000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 197989, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240673790999949, 39.909244890000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 198067, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020759497999961, 40.110821310000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 198085, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227866276999976, 39.918296388000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 198091, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168350830999941, 40.02848007700004 ] } }, +{ "type": "Feature", "properties": { "objectid": 198113, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143153414999972, 39.952901256000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 198115, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177149447999966, 39.920666592000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 198134, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136911272999953, 39.997933954000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 198153, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.990061862999937, 40.121671040000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 198214, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.232740348999982, 40.059212717000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 198228, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130363806999981, 40.003352871000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 198255, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.980123710999976, 40.092270796000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 198316, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184987067999941, 39.993214230000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 198338, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141037234999942, 40.055203385000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 198351, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139838008999959, 40.04402893200006 ] } }, +{ "type": "Feature", "properties": { "objectid": 198384, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033902254999987, 40.060066517000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 198427, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206914931999961, 40.058117071000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 198432, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079792916999963, 40.055934343000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 198438, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07990388199994, 40.016359295000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 198455, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.211636712999962, 40.074589798000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 198456, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240198253999949, 39.992085333000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 198471, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083746923999968, 40.044961280000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 198691, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187798498999939, 39.985726526000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 198698, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178726865999977, 39.936785693000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 198779, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233554684999945, 40.070689575000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 198780, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241060047999952, 39.969812282000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 198819, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244211274999941, 40.046653935000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 198876, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181954872999938, 39.989558246000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 198878, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.076750427999968, 40.009771639000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 198891, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136491589999935, 40.032580645000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 198953, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18419438799998, 40.040074825000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 199015, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14629479599995, 39.931303888000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 199047, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173353895999981, 40.068861945000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 199091, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.082334636999974, 40.048924506000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 199094, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143915326999945, 40.002319495000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 199162, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.245297195999967, 39.907021204000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 199175, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.224772170999984, 39.991535097000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 199177, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178133044999981, 39.962201226000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 199198, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.105835249999984, 40.032247214000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 199288, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230498223999973, 40.030950267000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 199295, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187368686999946, 39.889175584000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 199354, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.213896943999941, 40.040226116000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 199427, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237610407999966, 40.053591297000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 199453, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.998078862999989, 40.051528501000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 199547, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.027398568999956, 40.025287372000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 199587, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203341107999961, 40.080191356000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 199712, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20792914499998, 39.968007613000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 199768, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20417931999998, 40.078344944000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 199835, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15428961899994, 40.025683668000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 199862, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141763338999965, 39.980821272000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 199889, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162035112999945, 39.927088585000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 199914, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.216638748999969, 40.081826026000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 199973, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201811652999936, 40.047802312000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 200007, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188361303999955, 39.939588998000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 200021, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981169589999979, 40.095902822000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 200064, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.097341569999969, 39.989881592000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 200072, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202769139999987, 40.066345932000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 200086, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.066567315999976, 40.044856224000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 200184, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185911426999951, 39.971618413000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 200214, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201669183999968, 40.050116 ] } }, +{ "type": "Feature", "properties": { "objectid": 200217, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.056029243999944, 40.034131841000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 200341, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196246468999959, 40.051188467000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 200362, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144734926999945, 39.933428904000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 200369, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208687778999945, 39.972812973000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 200388, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019747967999933, 40.110959080000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 200437, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146799012999963, 40.016512074000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 200477, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188024058999986, 40.070043808000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 200541, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145747249999943, 39.928815644000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 200559, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155623300999935, 39.964338822000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 200707, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.174719290999974, 39.91466001100008 ] } }, +{ "type": "Feature", "properties": { "objectid": 200723, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142998858999988, 40.006683426000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 200765, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238760408999951, 40.049684615000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 200826, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24647041299994, 39.892572776000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 200842, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013604494999981, 40.101841749000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 201118, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15244563899995, 39.902564157000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 201133, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019722101999946, 40.110044104000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 201141, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139114198999948, 40.025119601000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 201167, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119309016999978, 39.991426424000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 201190, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128854291999971, 40.000088844000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 201233, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.17391427299998, 39.996896860000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 201244, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.027021286999968, 40.051874492000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 201334, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.226842427999941, 40.039173296000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 201438, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079550865999977, 40.055931942000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 201481, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.135555168999986, 39.983568168000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 201509, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183221444999958, 40.061560660000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 201528, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.13853252399997, 40.009314721000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 201547, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14979852099998, 40.053048884000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 201603, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200225865999982, 40.051478571000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 201661, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150062582999965, 40.053182169000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 201707, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.174831789999985, 39.931371390000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 201723, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.088569913999947, 40.019261689000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 201763, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16434019899998, 39.972164305000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 201853, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.984043226999972, 40.068901691000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 201885, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.212758966999957, 40.021612620000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 201895, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.105009345999974, 40.047044594000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 201926, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150853899999959, 39.985544859000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 201960, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142887580999968, 39.971259194000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 202018, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.260945000999982, 39.981815714000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 202145, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229265211999973, 39.927156732000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 202180, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244062412999938, 39.978591635000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 202215, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.991012964999982, 40.045277386000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 202262, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.19389155999994, 39.956964520000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 202310, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130046082999968, 40.000323951000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 202323, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169360498999936, 39.987086161000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 202404, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030719465999937, 40.084061533000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 202448, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035748932999979, 40.052385928000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 202494, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.006392296999934, 40.120478895000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 202532, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.036390007999955, 40.102604471000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 202560, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.010072137999941, 40.129943625000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 202568, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.976196982999966, 40.089189173000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 202581, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248839456999974, 39.884538151000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 202642, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.974832495999976, 40.088201364000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 202688, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146953978999989, 39.977209816000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 202712, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.095750588999977, 39.99187952300008 ] } }, +{ "type": "Feature", "properties": { "objectid": 202714, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.012337515999945, 40.13619271500005 ] } }, +{ "type": "Feature", "properties": { "objectid": 202718, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151383549999935, 40.00453093200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 202776, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.999147482999945, 40.125145287000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 202846, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145592918999967, 40.005510021000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 202894, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18297006399996, 39.909207029000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 202914, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.222750373999986, 39.968452329000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 202974, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132227667999985, 39.989387366000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 203006, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199767450999957, 40.040893981000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 203043, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137083190999988, 39.997975856000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 203086, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173329967999962, 40.067094306000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 203121, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154209327999979, 40.043745413000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 203135, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179193182999938, 40.04879956700006 ] } }, +{ "type": "Feature", "properties": { "objectid": 203227, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.048404752999943, 40.105581253000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 203361, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175740350999945, 40.06905488600006 ] } }, +{ "type": "Feature", "properties": { "objectid": 203449, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183097821999979, 40.040990047000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 203487, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129587811999954, 40.026851099000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 203508, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.001000341999941, 40.054355250000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 203541, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.990863245999947, 40.042525494000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 203602, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028155498999979, 40.115662278000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 203631, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164275959999941, 39.96494062000005 ] } }, +{ "type": "Feature", "properties": { "objectid": 203632, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.025855086999968, 40.034135905000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 203634, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164500074999978, 40.075788807000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 203642, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176849793999963, 39.911723117000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 203651, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153446122999981, 40.02207399200006 ] } }, +{ "type": "Feature", "properties": { "objectid": 203700, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.19352545299995, 39.922278773000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 203786, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165426497999988, 39.914740992000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 203795, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062112996999986, 40.06126150800003 ] } }, +{ "type": "Feature", "properties": { "objectid": 203798, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153833586999951, 40.043414504000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 203840, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179067294999982, 39.997964272000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 203894, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.969474242999979, 40.094251435000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 203920, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243458455999985, 40.046519738000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 203952, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153560223999989, 40.042797661000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 203954, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150907624999945, 40.018780082000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 203968, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136910468999986, 40.061817955000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 204055, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183953874999986, 39.994616997000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 204079, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049925338999969, 40.032752439000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 204103, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200647467999943, 39.968175169000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 204109, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242540098999939, 39.953161185000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 204114, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204238572999941, 39.967238499000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 204149, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141749543999936, 39.980875319000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 204191, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075313328999982, 39.999251700000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 204201, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.097560276999957, 40.018068671000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 204252, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146968563999962, 40.058376767000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 204289, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143597528999976, 40.01137878000003 ] } }, +{ "type": "Feature", "properties": { "objectid": 204313, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.205391890999977, 40.076946464000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 204364, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177123692999942, 40.06984447800005 ] } }, +{ "type": "Feature", "properties": { "objectid": 204394, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202515605999963, 39.964113337000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 204464, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.069872299999986, 40.061737076000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 204465, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.059309326999937, 40.043689018000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 204489, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144005727999968, 40.028715170000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 204499, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203579840999964, 40.072278389000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 204508, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159141359999978, 39.962432293000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 204534, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049326858999962, 40.051717308000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 204547, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.059321258999944, 40.033264658000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 204553, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013254846999985, 40.117576831000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 204567, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058905951999975, 40.044429268000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 204591, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07554307099997, 40.067795550000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 204638, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165601932999948, 39.966350979000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 204663, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241442447999987, 40.057598084000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 204764, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.074980788999937, 40.059096698000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 204805, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035644875999935, 40.108724667000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 204887, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99749468899995, 40.053856559000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 204903, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016916243999958, 40.113248523000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 204913, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.247245091999957, 39.890707053000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 204922, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155344354999954, 40.020785450000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 204942, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164603501999977, 40.011763837000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 204993, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.122703767999951, 40.019648276000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 205015, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049935218999963, 40.084190335000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 205041, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194361412999967, 40.061486814000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 205046, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207655450999937, 40.043859264000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 205097, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183164613999963, 40.06563661000007 ] } }, +{ "type": "Feature", "properties": { "objectid": 205101, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996370684999988, 40.05287170500003 ] } }, +{ "type": "Feature", "properties": { "objectid": 205143, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189358651999953, 40.04229198400003 ] } }, +{ "type": "Feature", "properties": { "objectid": 205150, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15138787799998, 39.946148945000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 205187, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183535526999947, 39.94697876400005 ] } }, +{ "type": "Feature", "properties": { "objectid": 205244, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197411155999987, 40.053869113000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 205263, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234085377999975, 40.033927598000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 205286, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995274395999957, 40.055494811000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 205351, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165097452999987, 40.012134998000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 205371, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.975217122999936, 40.07696072300007 ] } }, +{ "type": "Feature", "properties": { "objectid": 205376, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234929723999983, 40.06675707800008 ] } }, +{ "type": "Feature", "properties": { "objectid": 205427, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161879172999988, 39.934743801000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 205468, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227242183999977, 39.932629057000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 205562, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004856736999955, 40.128340942000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 205566, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235254565999981, 39.97655244200007 ] } }, +{ "type": "Feature", "properties": { "objectid": 205587, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14674791799996, 39.966845757000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 205623, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.025952535999977, 40.034289451000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 205638, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156892262999975, 40.024133349000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 205687, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.121476642999937, 40.021975042000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 205714, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996189580999953, 40.089004559000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 205735, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.984350505999942, 40.068383937000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 205809, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168972462999989, 39.989505816000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 205812, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119061024999951, 40.023982911000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 205818, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120264913999961, 40.049368886000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 205837, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016813309999975, 40.052960731000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 205844, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158376736999969, 40.038418429000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 205847, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200532824999982, 39.96830028100004 ] } }, +{ "type": "Feature", "properties": { "objectid": 205914, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.976523202999942, 40.08946250200006 ] } }, +{ "type": "Feature", "properties": { "objectid": 205949, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18888207599997, 39.965763546000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 205953, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194785427999989, 39.921786646000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 205991, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203992963999951, 40.076111787000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 206080, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178406595999945, 39.951761523000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 206085, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136205644999961, 40.027684328000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 206239, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067695858999969, 40.074951037000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 206246, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.11924690099994, 39.992617060000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 206299, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.193947076999962, 39.936248769000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 206384, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004985217999945, 40.12849030700005 ] } }, +{ "type": "Feature", "properties": { "objectid": 206414, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.106487694999942, 40.000431251000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 206437, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162338707999936, 40.059588490000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 206439, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.06635941199994, 40.002761989000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 206465, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206931718999954, 40.058115395000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 206467, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.994669013999953, 40.057784389000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 206479, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171428869999943, 40.058565739000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 206553, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185113251999951, 39.993144980000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 206599, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033757058999981, 40.053320715000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 206639, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16653017699997, 40.040409602000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 206657, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.111895106999953, 39.98227561200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 206679, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223822378999955, 39.914222076000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 206709, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145429005999972, 39.924997942000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 206778, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23500766799998, 39.910792086000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 206810, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219321735999984, 39.960910259000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 206836, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144617504999985, 40.028916356000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 206882, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201562229, 40.048069069000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 206999, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148801636999963, 39.935752042000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 207000, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209692855999947, 40.075785196000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 207004, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182999610999957, 39.984672487000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 207021, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.09722768599994, 39.98994778000008 ] } }, +{ "type": "Feature", "properties": { "objectid": 207048, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163640131999955, 40.044830607000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 207063, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.050256033999972, 40.102605625000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 207069, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238522866999972, 39.976188821000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 207225, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20958712099997, 40.05966572300008 ] } }, +{ "type": "Feature", "properties": { "objectid": 207227, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.005541213999948, 40.062221488000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 207231, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.213286911999944, 39.965399735000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 207289, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.021837984999934, 40.117925822000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 207301, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.127393201999951, 40.037556109000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 207302, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020734416999971, 40.110647278000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 207357, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029954604999944, 40.083620886000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 207367, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172868097999981, 40.046518520000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 207381, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241232130999947, 39.969831402000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 207382, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220452788999978, 39.992466699000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 207478, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171258526999964, 40.018938949000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 207524, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.211357140999951, 40.068571053000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 207585, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249831667999956, 39.899885113000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 207606, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146203912999965, 39.938515510000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 207617, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.226069970999959, 39.995714249000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 207622, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146920683999952, 40.042579964000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 207627, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.038447898999948, 40.09422500200003 ] } }, +{ "type": "Feature", "properties": { "objectid": 207677, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164680866999959, 40.001548927000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 207741, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017052319999948, 40.132311177000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 207747, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.012260260999938, 40.040611048000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 207750, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992100156999982, 40.046426131000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 207786, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.000038151999945, 40.053274631000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 207795, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23765710899994, 40.070086093000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 207836, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158156339999948, 39.967536615000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 207858, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119161341999984, 40.02399504400006 ] } }, +{ "type": "Feature", "properties": { "objectid": 207873, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.041203508999956, 40.023161753000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 207896, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206835947999934, 40.058186738000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 207935, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209587906999957, 40.059829360000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 207975, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035115968999946, 40.055782935000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 207981, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.095459071999983, 39.987940625000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 207982, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184449939, 39.942370088000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 208021, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168338501999983, 39.92032714100003 ] } }, +{ "type": "Feature", "properties": { "objectid": 208054, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170279671999936, 40.035638458000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 208063, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228198334999945, 39.946378208000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 208074, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199332529999936, 40.055117481000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 208106, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195184767999933, 39.958599093000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 208114, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14323765499995, 39.951879628000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 208116, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.989711481999962, 40.044346491000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 208207, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004627839999955, 40.047129322000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 208211, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163641175999942, 39.914510755000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 208217, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241490516999988, 40.057448749000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 208219, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.993420698999955, 40.118719030000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 208230, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.232831226999963, 40.059173942000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 208233, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248080786999935, 39.885551593000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 208490, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.068565349999972, 40.009732062000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 208558, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070100378999939, 40.060173440000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 208567, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.082314563999944, 40.080112215000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 208584, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.998558074999949, 40.052185964000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 208605, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210402213999942, 39.970840723000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 208620, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170065073999979, 40.021947390000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 208642, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030738710999969, 40.084063107000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 208721, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.011532508999949, 40.042752247000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 208736, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.071084079999935, 40.011026955000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 208888, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182656389999977, 39.90927767900007 ] } }, +{ "type": "Feature", "properties": { "objectid": 208911, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.001619543999936, 40.07530298100005 ] } }, +{ "type": "Feature", "properties": { "objectid": 208926, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.993799912999975, 40.050570707000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 208932, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20494423599996, 40.073065966000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 209037, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996458269999948, 40.120690158000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 209047, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.05037105699995, 40.102696905000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 209064, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233979706999946, 40.033829621000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 209105, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248020071999974, 39.976615509000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 209109, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.051845194999942, 40.072241114000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 209115, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.100401615999942, 40.048609425000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 209149, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.131759713999941, 39.97930884200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 209214, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079220519999978, 40.012993530000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 209262, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138724055999944, 39.970938153000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 209294, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200379130999977, 39.931967440000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 209300, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187098229999947, 39.92781220300003 ] } }, +{ "type": "Feature", "properties": { "objectid": 209329, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.254498877999936, 39.986036226000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 209403, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.041590753999969, 40.069724508000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 209421, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013249387999963, 40.041602280000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 209463, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035913096999934, 40.052566526000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 209497, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166744073999951, 40.006514977000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 209500, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018930439999963, 40.054944783000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 209503, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161080271999936, 39.971618206000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 209522, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159809435999989, 40.038299899000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 209551, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178914307999946, 40.069262649000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 209672, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143710079999948, 40.011516769000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 209702, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.038055730999986, 40.076641941000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 209716, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996830719999934, 40.050627010000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 209739, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.074875572999986, 40.068528150000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 209838, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.982603447999963, 40.052996440000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 209921, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137875809999969, 39.965089109000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 209993, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155825991999961, 39.963369349000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 209998, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.997473570999944, 40.051150659000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 210009, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.025826049999978, 40.117919047000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 210018, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.066537120999953, 40.04463750900004 ] } }, +{ "type": "Feature", "properties": { "objectid": 210019, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157996303999937, 39.967490481000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 210031, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159481095999979, 40.040848573000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 210033, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246269602999973, 39.988173763000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 210060, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197896389999983, 40.035649394000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 210089, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234136758999966, 39.978659693000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 210118, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210048979999954, 39.978631534000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 210238, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.057842325999957, 40.102192315000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 210268, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183510922999972, 39.986690725000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 210278, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.054081498999949, 40.049331180000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 210333, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.051892732999988, 40.104189313000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 210368, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009346971999946, 40.059700544000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 210377, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058013743999936, 40.065587483000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 210518, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.11316695499994, 40.028785614000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 210546, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20414690399997, 40.020241618000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 210561, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188288013999966, 39.993986144000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 210597, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180870414999958, 40.080156027000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 210599, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136501942999985, 40.031812184000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 210624, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139966438999977, 40.03603851400004 ] } }, +{ "type": "Feature", "properties": { "objectid": 210625, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.127363552999952, 40.037705781000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 210739, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242890661999979, 39.897921231000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 210743, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024594951999973, 40.119140591000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 210813, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231860223999945, 40.06412861900003 ] } }, +{ "type": "Feature", "properties": { "objectid": 210847, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.994439411999963, 40.061806810000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 210886, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.088239906999945, 40.051263576000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 210923, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129393384999958, 39.989111183000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 210944, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99164392199998, 40.043228716000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 210980, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.22860180899994, 40.000126539000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 211001, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.111951163999947, 40.030876454000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 211019, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23664146699997, 40.066067566000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 211049, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201463120999961, 40.052245679000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 211062, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040486470999952, 40.091673969000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 211136, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204845499999976, 40.023046209000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 211192, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179607650999969, 40.044582103000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 211216, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.045980173999965, 40.091403415000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 211268, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177557823999962, 40.048887371000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 211293, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166527683999959, 40.040392824000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 211325, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183060065999939, 40.065722107000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 211349, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.245025740999949, 39.892347225000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 211360, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219227613999976, 39.990017950000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 211446, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196897057999934, 39.968136442000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 211447, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20670798499998, 39.975952781000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 211451, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.215147815999956, 40.077105922000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 211504, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.232090626999934, 40.074907755000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 211521, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.983104659999981, 40.10030443100004 ] } }, +{ "type": "Feature", "properties": { "objectid": 211536, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064046550999933, 40.062345906000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 211540, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.124932035999961, 40.048126050000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 211644, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173313733999976, 39.945720124000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 211665, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130038811999952, 39.973780273000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 211672, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139697336999973, 40.044011159000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 211787, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049665141999981, 40.102169122000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 211789, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132245918999956, 40.045952387000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 211797, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237409328999945, 39.970240305000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 211812, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227240189999975, 39.986569160000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 211833, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07837339699995, 39.997654915000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 211861, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231536077999976, 39.953148904000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 211862, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004758180999943, 40.062834752000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 211925, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20252530199997, 40.062520027000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 211932, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.002708816999984, 40.084403018000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 211956, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.221377207999979, 40.000109153000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 211964, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.093621544999962, 40.033047967000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 212024, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.027323108999951, 40.091068046000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 212083, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153112048999958, 39.990646995000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 212196, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.982173949999947, 40.088371317000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 212212, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187664936999965, 39.995652589000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 212251, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.133944250999946, 39.986627062000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 212324, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.042908602999944, 40.089194416000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 212339, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24189357399996, 39.91635369800008 ] } }, +{ "type": "Feature", "properties": { "objectid": 212352, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009401368999988, 40.059924952000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 212379, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.065884134999976, 40.033932107000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 212453, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026182220999942, 40.048389062000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 212520, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129665281999962, 40.049125217000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 212570, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187801054999966, 40.070060571000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 212579, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031155421999983, 40.086214246000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 212611, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.226284189999944, 39.995735556000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 212643, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058076278999977, 40.065758921000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 212656, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01836104399996, 40.132489100000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 212660, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.118742352999959, 40.019165176000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 212745, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24765496699996, 39.885778702000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 212784, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.095932369999957, 40.047792356000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 212915, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.055972331999953, 40.025341886000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 212918, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.997977601999935, 40.051593632000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 213036, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.111516956999935, 39.991231754000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 213162, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207652191999955, 40.043888012000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 213231, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07809873399998, 40.020620862000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 213239, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.97514343499995, 40.076840110000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 213250, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028432330999976, 40.064562481000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 213260, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243458640999961, 40.046644081000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 213364, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075995715999966, 40.067106856000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 213495, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202625703999956, 40.066469098000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 213503, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179050288999974, 40.063350865000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 213525, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.036022771999967, 40.032673222000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 213527, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.193756035999968, 40.012852379000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 213549, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14714448899997, 40.058384945000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 213571, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083837045999985, 40.061339322000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 213604, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139446006999947, 39.982444301000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 213606, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157968481999944, 40.011798174000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 213645, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158573026999989, 39.968694483000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 213689, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.065103273999966, 40.061201231000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 213699, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198991071999956, 40.050006228000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 213720, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134531061999951, 40.030744019000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 213724, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.174947940999971, 39.999808003000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 213767, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.057378439999979, 40.024596683000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 213785, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.245505856999955, 39.901216572000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 213810, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028759885999989, 40.113526988000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 213987, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99101350799998, 40.122206001000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 214007, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113378142999977, 40.03270649600006 ] } }, +{ "type": "Feature", "properties": { "objectid": 214019, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026393162999966, 40.044584125000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 214042, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079735146999951, 40.076787954000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 214077, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134290706999934, 40.019684187000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 214083, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243350336999981, 39.968534896000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 214086, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062573995999969, 40.046475789000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 214107, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178418561999933, 40.07683718800007 ] } }, +{ "type": "Feature", "properties": { "objectid": 214112, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018946234999987, 40.054953715000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 214144, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151818952999974, 40.048746609000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 214162, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167837306999957, 40.031494907000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 214175, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235494982999967, 40.071593232000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 214185, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.050301421999961, 40.037547364000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 214191, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241479618999961, 39.897740062000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 214199, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151174477999973, 40.059274348000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 214261, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.211852937999936, 40.056727704000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 214362, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233249755999964, 39.937512024000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 214365, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233032501999958, 39.95496290300008 ] } }, +{ "type": "Feature", "properties": { "objectid": 214374, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.973670536999975, 40.07582431600008 ] } }, +{ "type": "Feature", "properties": { "objectid": 214408, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.979423932999964, 40.079201184000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 214419, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.046767929999987, 40.038472245000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 214478, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.114548486999979, 40.001313358000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 214533, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154999447999955, 39.964117613000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 214575, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207517438999957, 40.020167522000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 214622, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137725056999955, 39.961038943000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 214649, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195271224999942, 40.058169774000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 214681, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01948065299996, 40.109091550000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 214685, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.975369305999948, 40.078840574000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 214705, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175615229999948, 39.896505947000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 214726, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148271093999938, 39.989928952000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 214727, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.093500495999933, 40.033171698000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 214735, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.085005930999955, 40.079845340000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 214757, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030034537999938, 40.08365370000007 ] } }, +{ "type": "Feature", "properties": { "objectid": 214764, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.072840394999957, 40.020055661000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 214817, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235084936999954, 40.034962775000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 214868, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167890917999955, 39.940305995000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 214879, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.10812335199995, 40.042242563000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 214886, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199929750999956, 39.960517019000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 214895, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.102780884999959, 40.050977430000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 214911, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.236297942999954, 39.929003022000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 214969, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.191511464999962, 39.895112325000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 214998, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14314395699995, 40.020855505000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 215023, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.26286558299995, 39.979801488000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 215101, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180318236999938, 40.077905900000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 215131, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148579577999953, 40.018470685000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 215137, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.022811732999969, 40.117315072000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 215196, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18237914499997, 39.889611201000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 215246, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014416136999955, 40.115372265000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 215252, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.998096587999953, 40.051528271000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 215285, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187317920999988, 40.013299476000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 215289, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207723102999978, 40.074593185000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 215303, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.04950346399994, 40.084681355000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 215311, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.993072885999936, 40.09113627000005 ] } }, +{ "type": "Feature", "properties": { "objectid": 215375, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228103616999988, 40.062471135000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 215396, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240862175999951, 40.047705939000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 215400, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995179439999959, 40.053533309000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 215420, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151962646999948, 39.981093120000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 215509, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223710696999945, 39.967224962000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 215533, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178128622999964, 40.080353526000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 215537, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.012092124999981, 40.040679148000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 215541, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.254581604999942, 39.98614642900003 ] } }, +{ "type": "Feature", "properties": { "objectid": 215544, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013148315999956, 40.113905281000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 215551, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210363409999957, 39.971386574000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 215609, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.110016546999987, 40.04314150700003 ] } }, +{ "type": "Feature", "properties": { "objectid": 215619, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207287034999979, 40.044554928000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 215627, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.097194557999956, 39.986093826000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 215664, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243454848999988, 39.924332208000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 215733, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017421473999946, 40.100643652000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 215741, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.077290267999956, 40.045173501000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 215770, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.076450028999943, 40.029293963000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 215780, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210477477999973, 40.01646465400006 ] } }, +{ "type": "Feature", "properties": { "objectid": 215828, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.979596436999941, 40.069945924000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 215970, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178350455999976, 39.990826894000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 215999, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.116240287999972, 40.030499320000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 216057, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.06981617799994, 40.030003617000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 216110, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23837733199997, 40.054150739000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 216152, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204250607999938, 40.047725125000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 216266, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139382808999983, 39.963597439000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 216349, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137948691999952, 39.972276168000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 216429, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113927781999962, 40.001388295000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 216445, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.037453108999955, 40.022782172000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 216494, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.998209002999943, 40.051647623000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 216505, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14803547799994, 40.060849599000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 216516, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155996006999942, 40.042753520000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 216549, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.973758445999977, 40.11617840200006 ] } }, +{ "type": "Feature", "properties": { "objectid": 216650, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026427052999964, 40.044703798000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 216653, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.989874200999964, 40.044266118000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 216675, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995285687999967, 40.053613684000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 216682, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173249747999989, 39.992464233000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 216727, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.022240826999962, 40.106182102000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 216760, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.048373195999943, 40.100508834000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 216770, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189586788999975, 40.010068413000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 216868, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241945136999959, 39.897649959000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 216876, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.125074695999956, 40.048139083000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 216915, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.986603122999952, 40.120485358000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 216940, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168469293999976, 40.021472650000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 216984, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.046106890999965, 40.086408166000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 216991, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.055238706999944, 40.083461451000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 216993, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99622329999994, 40.052957264000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 217063, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183884178999961, 39.921157740000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 217185, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.072368879999942, 40.020302448000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 217257, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.135468152999977, 40.031685924000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 217333, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136174886999981, 39.961564846000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 217372, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200019538999982, 40.058330749000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 217378, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146276589999957, 39.93003329700008 ] } }, +{ "type": "Feature", "properties": { "objectid": 217548, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.191573944999959, 40.038162194000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 217571, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004872669999941, 40.113468500000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 217688, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169930582999939, 39.893737237000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 217870, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.053009457999963, 40.028499769000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 217871, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.124889046999954, 40.038507934000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 217893, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.056076903999951, 40.025288750000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 217907, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183213353999975, 40.061763473000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 217928, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241891901999963, 39.916341472000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 218026, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155822837999949, 40.011072229000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 218091, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209477754999966, 40.033596163000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 218096, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244590206999987, 39.912327675000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 218272, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196067815999982, 39.930247639000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 218279, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.055107314999987, 40.071773362000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 218291, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163120599999957, 39.993461166000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 218309, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.085568643999977, 40.016241771000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 218348, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030387089999977, 40.114945897000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 218364, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203916319999962, 40.030131843000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 218372, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.174846776999971, 39.931283561000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 218488, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155235010999945, 39.969162984000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 218659, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198322968999946, 40.050256482000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 218698, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209006884999951, 39.971756378000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 218708, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202195235999966, 40.047421583000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 218711, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153782808999949, 40.043275953000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 218809, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120665085999974, 40.024187556000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 218857, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029714266999974, 40.035550706000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 218972, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.218943325999987, 40.026646613000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 219004, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017838972999982, 40.112608029000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 219009, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134341241999948, 40.058475697000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 219020, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243933109999944, 39.977063933000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 219169, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.991343387999962, 40.079013589000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 219195, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156581, 39.952522554000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 219199, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175083057999984, 39.998283600000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 219235, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179602913999986, 40.04442255400005 ] } }, +{ "type": "Feature", "properties": { "objectid": 219292, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24300539099994, 39.950861143000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 219328, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120840099999953, 39.982643229000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 219380, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.989259236999942, 40.043704355000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 219412, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146530288999941, 39.962511731000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 219423, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180409772999951, 40.036611406000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 219442, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.25272850999994, 39.893638120000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 219452, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162408242999959, 39.973607419000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 219454, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.044934632999968, 40.042890680000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 219514, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.13389336299997, 40.030656337000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 219533, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210172947999979, 40.03309742700003 ] } }, +{ "type": "Feature", "properties": { "objectid": 219552, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.089150787999984, 40.01010756200003 ] } }, +{ "type": "Feature", "properties": { "objectid": 219696, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233890413999973, 40.033878806000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 219748, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246407707999936, 40.062150874000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 219768, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.001371199999937, 40.075188835000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 219777, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159316814999954, 40.063757314000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 219779, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.093030812999984, 40.021979249000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 219809, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018261067999958, 40.110033660000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 219827, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194313785999952, 39.926582679000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 219834, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24625105299998, 39.901618178000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 219883, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182737071999952, 39.947719745000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 219938, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992204172999948, 40.046518401000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 219965, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146708708999938, 39.98511882300005 ] } }, +{ "type": "Feature", "properties": { "objectid": 220002, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207515324999974, 40.020269933000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 220018, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172490307999965, 39.927296757000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 220020, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.00352847299996, 40.110974811000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 220023, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.054644723999957, 40.021666682000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 220076, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049801988999945, 40.050491093000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 220088, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234249770999952, 40.058473907000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 220101, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156030413999986, 39.92515908300004 ] } }, +{ "type": "Feature", "properties": { "objectid": 220163, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153945173999944, 40.007936638000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 220240, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.215266730999986, 40.062953385000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 220270, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198661778999963, 40.050181186000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 220273, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.986198957999989, 40.09949490300005 ] } }, +{ "type": "Feature", "properties": { "objectid": 220306, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.054482209999946, 40.051302233000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 220376, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075340014999938, 40.067824261000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 220391, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154174515999955, 40.011311404000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 220419, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.972231332999968, 40.098639804000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 220427, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201589340999988, 40.05233004400003 ] } }, +{ "type": "Feature", "properties": { "objectid": 220449, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995714710999948, 40.052282189000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 220539, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149760605999973, 40.069181097000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 220582, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.116606148999949, 40.039438302000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 220628, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148300562999964, 40.030924748000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 220639, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.999008345999982, 40.125204086000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 220651, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.122936921999951, 39.994038492000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 220675, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019917495999948, 40.110095775000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 220706, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20576145299998, 40.046143050000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 220782, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02907546299997, 40.036941226000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 220784, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168106261999981, 39.892638493000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 221059, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.978955052999936, 40.068382790000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 221063, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.174502258999951, 40.044374836000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 221113, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.002368916999956, 40.060024701000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 221192, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164629257999934, 40.056723691000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 221259, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206403433999981, 39.975759204000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 221338, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.993240877999938, 40.056747484000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 221341, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020481365999956, 40.119418992000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 221360, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156267445999958, 39.931353744000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 221429, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167404228999942, 40.058541206000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 221505, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143363759999943, 39.98352028000005 ] } }, +{ "type": "Feature", "properties": { "objectid": 221571, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159467517999985, 40.040673771000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 221629, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143739506999964, 39.992685851000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 221664, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075347221999948, 40.073586849000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 221688, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.048883073999946, 40.088289615000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 221750, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249648131999948, 39.97636028800008 ] } }, +{ "type": "Feature", "properties": { "objectid": 221756, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.222834833999968, 39.98584797500007 ] } }, +{ "type": "Feature", "properties": { "objectid": 221786, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183674876999987, 39.929890546000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 221791, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203206888999944, 39.968528301000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 221832, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067624536999972, 40.039771304000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 221913, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029757503999974, 40.03085672800006 ] } }, +{ "type": "Feature", "properties": { "objectid": 221962, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018443323999975, 40.112044797000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 222007, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186950746999969, 39.927757366000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 222047, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.990929453999968, 40.045415562000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 222095, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.043178461999958, 40.092836483000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 222103, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018892710999978, 40.109542958000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 222199, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.998209736999968, 40.05163464900005 ] } }, +{ "type": "Feature", "properties": { "objectid": 222210, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.072286344999952, 40.020345761000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 222237, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009110584999974, 40.119964945000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 222239, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203412618999948, 40.080119349000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 222291, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.986201625999968, 40.09947366800003 ] } }, +{ "type": "Feature", "properties": { "objectid": 222319, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169235049999941, 39.980105208000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 222344, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162945001999958, 39.977853329000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 222350, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142702879999945, 40.030159686000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 222356, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227115758999958, 39.971239897000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 222375, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.05519514599996, 40.083275166000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 222388, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152124981999975, 40.039125546000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 222527, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031095896999943, 40.054159910000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 222533, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.12514975199997, 40.034261938000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 222545, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083854143999986, 40.066676351000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 222562, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004760580999971, 40.128482916000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 222568, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137193605999983, 40.001162597000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 222613, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184104184999967, 39.971340869000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 222618, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162279487999967, 39.973575752000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 222620, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207769112999983, 40.074742350000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 222643, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139237503999937, 39.976390368000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 222655, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996236421999981, 40.049913214000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 222712, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.247982284999978, 39.891101066000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 222748, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128714206999973, 39.993320875000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 222771, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158021691999977, 39.935481267000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 222783, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14947392199997, 39.924279868000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 222852, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.112877455999978, 39.987928673000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 223013, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149849748999941, 39.99013087000003 ] } }, +{ "type": "Feature", "properties": { "objectid": 223018, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231074225999976, 39.987782914000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 223034, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.17816425999996, 39.990716024000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 223108, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16352883899998, 39.91449743000004 ] } }, +{ "type": "Feature", "properties": { "objectid": 223154, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996205255999939, 40.049908835000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 223209, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196708669999964, 39.968067999000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 223236, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.027499521999971, 40.090925596000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 223245, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172849589999942, 40.057166791000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 223254, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017583577999972, 40.100577829000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 223294, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.10235653899997, 40.032020669000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 223307, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195661510999969, 40.057658635000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 223314, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243091472999936, 39.912874987000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 223347, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.032649374999949, 40.038088923000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 223350, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142314190999969, 40.05064395100004 ] } }, +{ "type": "Feature", "properties": { "objectid": 223410, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01452451199998, 40.115573416000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 223417, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169015412999954, 39.917829964000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 223531, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.051920835999965, 40.104206373000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 223568, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058668206999982, 40.019586786000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 223587, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16505299399995, 40.012078924000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 223643, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.125725744999954, 40.02180706300004 ] } }, +{ "type": "Feature", "properties": { "objectid": 223741, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.021071381999946, 40.128740457000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 223804, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227452213999982, 39.997184854000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 223810, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194241660999978, 40.012131541000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 223831, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170870991999948, 39.964317794000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 223852, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16640543799997, 39.976837621000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 223957, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995759901999975, 40.07300844100007 ] } }, +{ "type": "Feature", "properties": { "objectid": 223991, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130506619999949, 39.967562758000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 224034, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177321398999936, 40.026656786000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 224046, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026348211999959, 40.123625185000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 224049, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235800504999986, 39.970394602000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 224058, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201172594999946, 39.963588453000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 224100, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201602403999971, 40.070015281000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 224116, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206603325999936, 39.961180813000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 224137, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241922968999972, 39.918497789000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 224241, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179049205999945, 40.06333502800004 ] } }, +{ "type": "Feature", "properties": { "objectid": 224298, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058045154999945, 40.102175738000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 224302, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.074964301999955, 40.068414469000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 224325, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158763399999941, 40.053324582000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 224347, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155805276999956, 39.963477036000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 224358, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.21756364099997, 40.022784411000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 224396, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.22277846999998, 39.968470767000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 224415, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.012795499999982, 40.130030447000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 224419, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248569012999951, 39.899240231000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 224553, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136006772999963, 39.993142728000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 224610, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139192541999989, 39.985792595000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 224661, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.133955459999981, 40.058338581000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 224672, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169211820999976, 39.980215267000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 224683, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20308672699997, 40.048783294000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 224735, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073866529999975, 40.022183992000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 224740, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180145961999983, 40.039138794000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 224743, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017610988999934, 40.09289265600006 ] } }, +{ "type": "Feature", "properties": { "objectid": 224778, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.032384939999986, 40.085144531000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 224791, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078939135999974, 40.082091791000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 224806, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.038903369999957, 40.093766414000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 224822, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073343333999958, 40.021559549000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 224825, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243308974999934, 40.046690908000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 224837, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168546545999959, 40.02157943900005 ] } }, +{ "type": "Feature", "properties": { "objectid": 224851, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176652271999956, 40.06587879500006 ] } }, +{ "type": "Feature", "properties": { "objectid": 224852, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.080312035999953, 40.011467116000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 224864, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.190676567999958, 40.042993133000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 224865, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014881357999968, 40.130980119000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 224877, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182292607999955, 39.943520230000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 224878, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.08088393099996, 40.015320692000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 224886, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194277092999982, 39.926748141000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 224908, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203293628999972, 40.05992098400003 ] } }, +{ "type": "Feature", "properties": { "objectid": 224910, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028760574999978, 40.053642572000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 224919, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.043009131999952, 40.097161860000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 224943, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.998823770999934, 40.052199339000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 225017, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.106793637999942, 39.986230727000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 225040, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.232396660999939, 40.068379571000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 225080, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01826430999995, 40.132456890000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 225117, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146234483999933, 39.965498678000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 225141, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129653226999949, 40.049254985000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 225169, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.17806038699996, 39.962005258000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 225175, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200510430999941, 39.968184477000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 225178, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.025975631999984, 40.034100911000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 225203, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198250021999968, 40.066780103000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 225248, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.205447786999969, 40.032509061000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 225305, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162110043999974, 39.927219941000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 225324, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.099280006999948, 39.995877926000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 225325, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.056685171999959, 40.058187195000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 225474, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196044948999941, 39.930332488000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 225510, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981594417999986, 40.051759169000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 225519, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233137771999964, 39.937416280000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 225581, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.11675287099996, 39.991454065000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 225589, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16854620099997, 40.021705666000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 225597, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136474783999972, 40.031936590000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 225632, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233546434999937, 40.060275188000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 225642, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189094240999964, 39.973439771000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 225692, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228211773999988, 39.946187807000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 225772, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148626825999941, 40.010595835000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 225777, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220095288999971, 39.982465823000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 225781, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164160371999969, 39.917338571000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 225835, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067356074999964, 40.058819349000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 225854, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02100478899996, 40.123098018000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 225871, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073073035999982, 40.035038967000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 225888, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.253249493999988, 39.899815234000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 225909, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.221979585999975, 40.03528224300004 ] } }, +{ "type": "Feature", "properties": { "objectid": 225919, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113192785999956, 39.996526760000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 225949, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.236375867999982, 40.057486397000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 226005, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.236371770999938, 39.911866949000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 226044, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227427938999938, 40.060847997000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 226272, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184858350999946, 39.983789625000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 226329, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220439015999943, 39.933451550000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 226330, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.076330022999969, 40.011737919000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 226361, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220249888999945, 39.964917917000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 226373, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.006264586999976, 40.061619872000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 226374, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172470381999972, 39.975001565000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 226376, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187143283999944, 39.937761522000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 226379, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219026188999976, 40.039832969000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 226391, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017116426999962, 40.05308610600008 ] } }, +{ "type": "Feature", "properties": { "objectid": 226467, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019570772999941, 40.11100239700005 ] } }, +{ "type": "Feature", "properties": { "objectid": 226469, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020643738999979, 40.100886520000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 226522, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.080263536999951, 40.01233727500005 ] } }, +{ "type": "Feature", "properties": { "objectid": 226548, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03631231199995, 40.102496046000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 226562, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018374078999955, 40.111842232000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 226568, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210061045999964, 40.076132732000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 226595, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240948792999973, 40.047670534000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 226603, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073510348999946, 40.058088669000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 226639, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.077409044999968, 40.045240037000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 226657, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.19148359999997, 40.071233321000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 226699, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186899676999985, 39.973294727000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 226707, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137016894999988, 40.056277205000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 226738, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.193500010999969, 39.95875503700006 ] } }, +{ "type": "Feature", "properties": { "objectid": 226745, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139039854999965, 40.043920202000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 226854, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.092254768999965, 40.011867681000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 226899, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184957467999936, 39.908143410000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 226909, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.247849663999943, 39.891028510000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 226919, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134911354999986, 40.002489442000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 226924, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.032327171999952, 40.084979517000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 226937, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.091230419999988, 40.048182206000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 227002, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.100294067999982, 40.04873275500006 ] } }, +{ "type": "Feature", "properties": { "objectid": 227053, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154528138999979, 39.93978226400003 ] } }, +{ "type": "Feature", "properties": { "objectid": 227057, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143303701999969, 39.97384044100005 ] } }, +{ "type": "Feature", "properties": { "objectid": 227065, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173621590999971, 39.93682814400006 ] } }, +{ "type": "Feature", "properties": { "objectid": 227075, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.027951795999968, 40.060805128000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 227109, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079550732999962, 40.014461528000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 227159, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03125142, 40.054146600000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 227204, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189252946999943, 39.992118381000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 227235, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.094372551999982, 39.990512035000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 227240, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194862171999944, 39.953227325000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 227269, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202993665999941, 40.048726971000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 227306, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248446643999955, 39.899144578000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 227384, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182122078999953, 40.003860792000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 227386, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176290982999944, 40.063949265000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 227444, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130006121999941, 40.055492953000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 227457, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.994406526999967, 40.051114454000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 227517, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028551152999967, 40.036070645000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 227538, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143978748999984, 40.002172414000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 227588, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134307141999955, 40.019600040000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 227635, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.110235914999976, 40.000755704000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 227657, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.101483919999964, 39.994843081000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 227675, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15298450399996, 39.990621389000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 227711, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.002550626999948, 40.064540406000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 227749, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185380030999966, 39.993184825000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 227771, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175035340999955, 40.052906423000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 227809, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202553986999988, 39.977570496000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 227813, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.215000698999972, 39.993215551000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 227821, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.988676250999958, 40.064250574000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 227823, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163849944999981, 40.04480628400006 ] } }, +{ "type": "Feature", "properties": { "objectid": 227897, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228663534999953, 39.971186227000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 227925, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129039687999978, 40.029373859000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 228028, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.005064008999966, 40.128362037000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 228092, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035959631999958, 40.052419478000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 228150, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208838775999936, 39.973735809000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 228182, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172059346999959, 39.936575002000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 228199, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203116777999981, 40.048615704000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 228201, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164669532999937, 40.075829999000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 228210, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246671273999937, 39.918751288000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 228309, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172476219999965, 39.97491040400007 ] } }, +{ "type": "Feature", "properties": { "objectid": 228320, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198078458999987, 40.065365557000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 228364, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009319467999944, 40.062477326000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 228379, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.972639225999956, 40.083725868000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 228414, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227882634999958, 39.918149724000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 228428, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144346233999954, 40.043705136000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 228462, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.095635798999979, 39.99193564400008 ] } }, +{ "type": "Feature", "properties": { "objectid": 228553, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129023235999966, 40.029438951000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 228554, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.00483649399996, 40.12851889500007 ] } }, +{ "type": "Feature", "properties": { "objectid": 228567, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.965626631999953, 40.095656438000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 228828, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.085272146999955, 40.013431292000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 228835, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.972093423999979, 40.098519722000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 228897, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202435742999967, 40.075059903000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 228919, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225429581999947, 39.987561026000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 228989, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163235205999968, 39.993241233000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 229042, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.043370656999969, 40.09285348800006 ] } }, +{ "type": "Feature", "properties": { "objectid": 229069, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.063459763999958, 40.021417219000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 229102, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.11713253299996, 39.998654199000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 229166, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.065457938999941, 40.034615015000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 229193, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128400933999956, 40.003099575000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 229229, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142432918999987, 39.990793607000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 229260, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019596384999943, 40.118855392000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 229288, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198085902999935, 39.966758994000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 229296, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.076029880999954, 40.000085166000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 229406, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.12509683899998, 40.048038754000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 229414, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031474066999976, 40.040307344000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 229440, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.121612932999938, 39.981269349000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 229531, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.022199065999985, 40.056338390000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 229562, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152745089999939, 40.03936681700003 ] } }, +{ "type": "Feature", "properties": { "objectid": 229574, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996836059999964, 40.050438747000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 229582, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035777876999987, 40.052373847000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 229591, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146797518999961, 40.01667472400004 ] } }, +{ "type": "Feature", "properties": { "objectid": 229616, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147250764999967, 39.966256202000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 229648, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14433726599998, 40.027222962000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 229715, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244052270999987, 40.046036293000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 229736, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183107748999987, 39.889559473000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 229771, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132033004999982, 40.038308398000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 229780, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.117142598999976, 40.031656124000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 229810, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.982725865999953, 40.0529 ] } }, +{ "type": "Feature", "properties": { "objectid": 229841, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.135716115999969, 39.961944962000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 229851, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183758978999947, 40.004194097000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 229920, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029747002999954, 40.110738122000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 229932, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14684482399997, 39.985140411000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 229985, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181564828999967, 40.006415247000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 229993, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996162014999982, 40.052858636000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 230023, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.068139454999937, 40.029160726000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 230041, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013201437999953, 40.114067628000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 230065, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016233446999934, 40.112632165000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 230066, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145583211999963, 39.933749674000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 230141, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181415442999935, 40.051753414000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 230159, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132217614999945, 40.046106249000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 230161, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199944759999937, 40.044312054000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 230258, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155064277999941, 40.01525145200003 ] } }, +{ "type": "Feature", "properties": { "objectid": 230362, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.213818292999974, 39.971229357000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 230376, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141254327999945, 40.037549481000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 230387, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233548810999935, 40.060258848000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 230420, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137593636999952, 39.979078149000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 230486, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155505303999973, 39.964320903000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 230537, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168210140999975, 40.021630747000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 230609, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177964198999973, 39.916259217000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 230611, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155713933999948, 40.010953216000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 230618, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040706567999962, 40.091824057000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 230638, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146170888999961, 39.938659658000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 230665, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02646671499997, 40.045789678000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 230671, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.999892951999982, 40.05337442900003 ] } }, +{ "type": "Feature", "properties": { "objectid": 230682, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141035848999934, 40.026798671000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 230685, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151986384999987, 39.980989217000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 230723, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033890756999938, 40.054638497000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 230791, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187933363999946, 40.070127501000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 230829, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992165173999979, 40.043689989000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 230853, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07121598599997, 40.075056674000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 230925, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188465879999967, 39.958780665000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 230955, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197100542999976, 40.056465883000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 230981, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018443562999948, 40.102038856000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 231066, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189745965999975, 40.010032523000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 231084, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161729973999968, 39.914266981000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 231181, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175009006999971, 39.91332863000008 ] } }, +{ "type": "Feature", "properties": { "objectid": 231297, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189165363999962, 39.991886196000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 231352, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178090192999946, 40.055953102000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 231397, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.106147384999986, 40.032251915000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 231405, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204369177999979, 40.047609442000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 231479, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.05264595999995, 40.025551136000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 231588, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070942783999953, 40.031216761000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 231592, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166601781999987, 40.064777553000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 231655, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.97856470499994, 40.088965957000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 231725, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.11326173599997, 40.024991188000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 231733, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064382764999948, 40.090949968000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 231759, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163959236999972, 40.036787658000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 231838, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152784068999949, 39.915861797000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 231863, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136276387999942, 39.961584540000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 231889, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.192746018999969, 40.072144351000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 231931, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.997558195999943, 40.051058539000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 231961, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128703808999944, 39.993390228000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 231963, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219342281999957, 39.961037193000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 232001, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.983157351999978, 40.050724163000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 232053, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243066044999978, 39.983017874000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 232071, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013464152999973, 40.132610914000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 232077, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187895018999939, 39.960486116000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 232084, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18791429099997, 40.070129510000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 232098, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203969960999984, 39.949013842000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 232109, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177720895999983, 40.064649320000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 232195, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.08098909499995, 40.029556437000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 232272, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195220085999949, 40.05687292500005 ] } }, +{ "type": "Feature", "properties": { "objectid": 232325, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029011427999933, 40.113450451000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 232384, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064723450999963, 40.056247377000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 232389, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.051808448999964, 40.10444274300005 ] } }, +{ "type": "Feature", "properties": { "objectid": 232393, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.247986994999962, 39.885503199000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 232435, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.265401653999959, 39.975606547000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 232451, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204242724999972, 39.975767237000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 232476, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.047436438999966, 40.058759964000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 232570, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.06286709799997, 40.048500488000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 232573, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167652011999962, 40.031527032000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 232579, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195612990999962, 39.931528412000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 232599, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154745512999966, 39.967773151000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 232604, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180398779999962, 39.947417537000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 232605, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209022990999983, 39.973714703000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 232809, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.160295094999981, 39.949675710000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 232827, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156249959999968, 40.024053637000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 232830, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20851238299997, 40.034099643000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 232840, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243263294999963, 40.046592321000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 232903, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241366626999934, 40.057534585000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 232969, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083327301999987, 40.071395219000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 232986, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145195723999962, 39.95210159800007 ] } }, +{ "type": "Feature", "properties": { "objectid": 233008, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.193866956999955, 40.012877686000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 233041, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219609169999956, 40.026137776000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 233072, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.088332079999986, 40.05116606100006 ] } }, +{ "type": "Feature", "properties": { "objectid": 233097, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013264670999945, 40.129113978000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 233098, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202382154999952, 39.964124215000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 233115, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028594726999984, 40.04580207600003 ] } }, +{ "type": "Feature", "properties": { "objectid": 233124, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15791575999998, 39.916411077000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 233188, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.979891044999988, 40.072006945000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 233262, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083873573999938, 40.044864929000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 233271, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.236778580999953, 40.056317679000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 233301, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.257081755999934, 39.983875155000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 233351, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187403889999985, 40.013374329000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 233434, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185622842999976, 39.909565169000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 233490, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181487218999962, 40.051806879000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 233516, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244900342999983, 39.892480478000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 233631, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208360463999952, 39.956330708000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 233668, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230870925999966, 40.073631316000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 233755, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197576609999942, 39.963980735000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 233760, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168317772999956, 39.92041957400005 ] } }, +{ "type": "Feature", "properties": { "objectid": 233793, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172094738999988, 40.068313013000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 233856, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.133223847999943, 39.994404913000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 233963, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.041114220999987, 40.02320510100003 ] } }, +{ "type": "Feature", "properties": { "objectid": 233979, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170530294999935, 39.910169091000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 234014, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223604288999979, 39.914600876000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 234079, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.025139852999985, 40.089034814000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 234088, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.10949386599998, 39.979555627000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 234102, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146970508999971, 40.002424849000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 234128, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149210724999989, 39.941236152000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 234161, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031548486999952, 40.114932125000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 234199, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165820432999965, 39.910588763000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 234292, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142015246999961, 40.016305541000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 234329, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171381318999977, 40.067809385000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 234344, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.097435355999949, 39.989987798000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 234349, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029248329999973, 40.036974169000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 234354, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.015027893999957, 40.135774763000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 234374, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129253455999958, 39.98900315000003 ] } }, +{ "type": "Feature", "properties": { "objectid": 234385, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083843428999955, 40.066774860000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 234410, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.11825780099997, 39.989496249000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 234454, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023347812999987, 40.047038354000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 234457, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238904264999974, 40.049626871000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 234478, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146649198999967, 40.016687772000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 234479, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.980091373999983, 40.067614128000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 234508, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.131062774999975, 40.033464496000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 234527, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.205657147999943, 40.032543568000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 234559, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132102034999946, 40.050884035000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 234562, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.100310694999962, 40.050362342000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 234575, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176568994999968, 39.922665255000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 234631, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.964644729999975, 40.088044965000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 234645, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067578508999986, 40.039609863000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 234649, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.17448036199994, 39.956821747000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 234664, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209375010999963, 40.033650881000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 234676, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208272549999947, 40.071617331000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 234682, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229073677999963, 40.042230827000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 234732, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158101258999977, 40.000697652000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 234736, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.135151218999965, 40.048923316000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 234741, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144315309999968, 40.027324834000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 234824, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132243615999982, 40.014767783000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 234869, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202477666999982, 39.932473874000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 234884, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981973055999958, 40.063105195000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 235004, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200680795999972, 40.041822240000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 235022, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168870897999966, 40.038546730000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 235056, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140254724999977, 40.004717222000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 235058, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228207749999967, 40.062513879000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 235067, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.106708724999976, 39.986275618000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 235152, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178745511999978, 39.936683716000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 235157, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017859733999956, 40.103014583000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 235206, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244331270999965, 39.954959028000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 235207, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.997352872999954, 40.051033883000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 235221, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023282891999941, 40.046902530000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 235254, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.068745472999979, 40.042302585000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 235294, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004795992999959, 40.03998615900008 ] } }, +{ "type": "Feature", "properties": { "objectid": 235301, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.025248621999935, 40.118482381000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 235320, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.997563525999965, 40.051085426000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 235340, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203572446999942, 39.949161769000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 235405, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.096454103999974, 40.047211256000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 235420, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029218581999942, 40.039398897000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 235431, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992882045999977, 40.044304407000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 235434, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.135999526999967, 39.973328194000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 235495, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168723750999959, 39.983161040000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 235527, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161865085999978, 39.949873426000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 235529, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020436569999958, 40.107551630000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 235565, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149308724999969, 40.012774936000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 235732, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031403421999983, 40.051617257000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 235802, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139418729999988, 39.963495218000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 235808, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165551135999976, 39.914760555000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 235862, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.043127106999975, 40.089320300000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 235885, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.072452887999987, 40.057678615000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 235903, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157705281999938, 40.052027476000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 236036, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01869628999998, 40.041612131000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 236038, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01507957299998, 40.135640509000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 236055, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.109966352999948, 39.983425987000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 236064, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.970913193999934, 40.081689804000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 236074, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220300428999963, 39.923239006000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 236134, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198900818999959, 40.054809813000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 236135, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198214206999978, 39.936759282000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 236138, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220498770999939, 39.931202820000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 236186, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240233820999947, 39.926490306000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 236282, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.205097628999965, 39.986387997000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 236320, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040405775999943, 40.075392 ] } }, +{ "type": "Feature", "properties": { "objectid": 236326, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235645940999973, 39.957112101000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 236383, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058222136999973, 40.031574369000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 236497, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162013739999963, 40.052842381000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 236526, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185203297999976, 39.955173028000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 236554, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156083514999978, 39.961589619000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 236597, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.022660781999946, 40.117216112000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 236675, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.122138964999976, 40.022947715000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 236678, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219307767999965, 39.989877310000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 236692, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995137304999957, 40.11993840000008 ] } }, +{ "type": "Feature", "properties": { "objectid": 236695, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03126705699998, 40.086279125000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 236822, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177917351999952, 40.080384909000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 237002, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.007335349999948, 40.049148458000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 237033, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004992070999947, 40.128477056000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 237059, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.000246585999946, 40.123294314000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 237219, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01457643699996, 40.115474019000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 237373, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219757192999964, 40.049281220000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 237485, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220128859999988, 40.02519783200006 ] } }, +{ "type": "Feature", "properties": { "objectid": 237515, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200088448999963, 40.05139506200004 ] } }, +{ "type": "Feature", "properties": { "objectid": 237545, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.247536995999951, 39.885721293000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 237595, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026468505999958, 40.123483557000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 237665, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206912559999978, 39.969163007000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 237683, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134589989999938, 39.962923096000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 237720, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.100499796999941, 40.048718768000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 237727, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.191391641999985, 40.071336885000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 237737, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.054123324999978, 40.105412280000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 237778, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.131724230999964, 40.03041730700005 ] } }, +{ "type": "Feature", "properties": { "objectid": 237793, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996092121999936, 40.049980865000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 237914, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.012645082999938, 40.13478058700008 ] } }, +{ "type": "Feature", "properties": { "objectid": 237985, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18391134999996, 39.921033102000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 238054, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138789041999985, 40.026615916000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 238067, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.077789959999961, 40.030058974000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 238071, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139220730999966, 39.985675005000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 238097, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.074739008999984, 40.023182079000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 238099, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.226575457999957, 40.047689960000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 238181, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136176508999938, 40.02782996600007 ] } }, +{ "type": "Feature", "properties": { "objectid": 238195, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165503110999964, 40.027584635000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 238207, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187890571999958, 40.069970374000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 238218, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136655966999967, 40.020022784000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 238225, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173939437999934, 39.902799363000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 238240, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.226783027999943, 40.030883007000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 238284, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075708591999955, 40.063273690000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 238335, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166909745999988, 39.991326798000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 238342, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.222664262999956, 39.985818401000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 238435, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.991012482999963, 40.04266291600004 ] } }, +{ "type": "Feature", "properties": { "objectid": 238440, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231576949999976, 40.07286171800007 ] } }, +{ "type": "Feature", "properties": { "objectid": 238449, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.10042378199995, 40.050278942000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 238485, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.074477026999944, 40.017438972000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 238490, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.001719622999985, 40.075188574000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 238526, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.00111233299998, 40.054452794000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 238531, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.101024657999972, 40.033356769000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 238690, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.081092831999968, 40.022264217000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 238760, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172509179999963, 39.927218497000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 238883, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197561780999933, 40.053965891000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 238890, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996206502999939, 40.050090176000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 238947, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.041633814999955, 40.051486733000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 238959, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223560815999974, 39.982112835000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 238966, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017081875999963, 40.132205868000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 239004, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031454117999942, 40.088476383000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 239073, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.250375918999964, 39.90394684100005 ] } }, +{ "type": "Feature", "properties": { "objectid": 239119, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.080354149999948, 40.013622841000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 239130, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.191263594999953, 40.067049193000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 239135, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207783877999987, 40.074740225000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 239194, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.236629400999959, 40.055157618000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 239224, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23250081499998, 40.068468771000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 239318, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99268133399994, 40.071823897000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 239338, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225145672999986, 39.902033286000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 239364, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235781939999981, 40.071233927000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 239389, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120639941999968, 39.990714935000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 239405, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154891851999935, 39.967687996000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 239415, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220267713999988, 39.933540958000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 239451, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204096924999988, 39.965027429000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 239523, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.000646902999961, 40.053808690000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 239566, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198911381999949, 40.05003225300004 ] } }, +{ "type": "Feature", "properties": { "objectid": 239627, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073981877999984, 40.022143455000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 239654, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141920703999972, 40.016242509000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 239662, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.125467341999979, 40.025684094000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 239668, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165230699999938, 39.902055130000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 239671, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155087451999975, 39.929957494000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 239727, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.214506535999988, 40.087622479000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 239759, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064182689999939, 40.036413664000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 239823, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241645975999973, 40.047334513000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 239826, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.071113085999968, 40.075001647000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 239834, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164852497999959, 40.064166395000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 239851, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207740898999987, 40.074589531000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 239861, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075100891999966, 40.034504331000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 239866, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.218729316999941, 39.967221622000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 239916, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.239205075999962, 40.072088713000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 239970, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.015175959999965, 40.13098666500008 ] } }, +{ "type": "Feature", "properties": { "objectid": 239975, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246729574999961, 39.890429588000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 240021, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.081013054999971, 40.022348968000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 240118, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.003461001999938, 40.065994080000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 240158, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.118310982999958, 39.989590974000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 240165, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013124303999973, 40.117502302000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 240166, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.09216371499997, 40.011813568000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 240188, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.127254925999978, 40.037538113000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 240194, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.008132047999936, 40.064963629000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 240228, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246795199999951, 39.918588269000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 240249, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035684348999951, 40.08092339500007 ] } }, +{ "type": "Feature", "properties": { "objectid": 240252, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.036538913999948, 40.043337026000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 240270, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171031803999938, 40.018887003000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 240347, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035226373999933, 40.055967743000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 240387, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197317000999988, 40.053949766000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 240496, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198635706999937, 40.050122018000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 240643, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149323144999983, 39.924260054000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 240649, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024249601999941, 40.088405938000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 240660, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.007604716999936, 40.12956323700007 ] } }, +{ "type": "Feature", "properties": { "objectid": 240665, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.089329231999955, 40.032611608000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 240686, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207645378999985, 40.019604826000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 240731, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.121709272999965, 40.043757012000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 240847, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.994877902999974, 40.051753998000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 240900, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028533840999955, 40.036065199000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 240919, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.063912305999963, 40.054831703000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 240963, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24516971099996, 39.908856047000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 240972, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.22988406199994, 40.039475803000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 240973, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188278726999954, 39.962440152000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 241130, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.06422964799998, 40.036584596000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 241275, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237643645999981, 40.053680985000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 241279, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168673300999956, 40.021552880000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 241348, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206233937999968, 40.073826151000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 241519, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246936012999981, 39.894483879000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 241624, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180655467999941, 40.052648395000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 241634, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220751726999936, 39.970049446000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 241861, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23607979999997, 39.991883956000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 241887, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207898843999942, 40.043791248000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 241891, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.045801050999955, 40.063698971000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 241988, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.966566083999965, 40.102773705000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 242032, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.252463359999979, 39.897262166000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 242049, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161882264999974, 39.949883301000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 242091, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173254094999947, 40.068968509000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 242121, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144043311999951, 40.050245673000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 242162, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201302047999945, 39.963665018000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 242243, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171047710999972, 40.027326619000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 242246, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.111429234999946, 39.991274037000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 242247, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.097120663999988, 39.986012451000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 242303, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157807840999965, 40.050520415000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 242310, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.236049084999934, 40.066275706000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 242357, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178417552999974, 40.014748256000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 242396, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062441718999935, 40.046403705000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 242422, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013871806999987, 40.05813342600004 ] } }, +{ "type": "Feature", "properties": { "objectid": 242429, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142024145999983, 40.01608827900003 ] } }, +{ "type": "Feature", "properties": { "objectid": 242483, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158171865999975, 40.03089654200005 ] } }, +{ "type": "Feature", "properties": { "objectid": 242527, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128665204999947, 40.00169857700007 ] } }, +{ "type": "Feature", "properties": { "objectid": 242542, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03164303799997, 40.080518060000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 242547, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.036609355999985, 40.043434165000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 242555, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017560811999942, 40.040723530000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 242560, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198345526999958, 40.015345397000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 242568, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188848622999956, 39.970060912000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 242585, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158123219999936, 40.000595756000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 242705, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175091970999972, 39.976551599000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 242721, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140611362999948, 39.999915980000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 242732, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.205862997999986, 40.063351727000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 242761, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.218868563999933, 40.03978531000007 ] } }, +{ "type": "Feature", "properties": { "objectid": 242782, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182369327999936, 39.971735989000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 242792, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.239448768999978, 39.913746050000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 242879, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154279491999944, 40.006442154000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 242918, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.034241732999988, 40.055549875000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 242933, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147503721999954, 39.964853812000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 242940, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146323400999961, 40.006947389000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 242955, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.193700898999964, 39.922422350000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 242968, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.092304900999977, 40.009266834000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 242970, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07397541499995, 40.021234272000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 242996, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132390116999943, 39.966952272000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 243053, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128800534999982, 39.967002896000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 243064, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.986484124999947, 40.120412055000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 243119, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219233573999986, 39.990032320000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 243132, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201285602999974, 39.963575022000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 243160, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.045159630999933, 40.055896102000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 243205, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158975208999948, 39.99868064900005 ] } }, +{ "type": "Feature", "properties": { "objectid": 243224, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128475962999971, 39.985204472000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 243242, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227774629999942, 39.995065776000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 243279, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210178986999949, 40.03756628900004 ] } }, +{ "type": "Feature", "properties": { "objectid": 243289, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142640329999949, 40.042811398000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 243307, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158329686999934, 40.043737022000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 243313, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99517833799996, 40.053506221000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 243324, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169278215999952, 39.964223354000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 243325, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.12657494299998, 39.99230970800005 ] } }, +{ "type": "Feature", "properties": { "objectid": 243341, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070205244999954, 40.081297721000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 243365, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136895762999984, 39.960256756000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 243403, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186441549999984, 39.983994664000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 243469, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145466651999982, 39.930108253000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 243492, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.044400981999956, 40.092943140000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 243507, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.110220641999945, 40.010249295000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 243514, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142574149999973, 40.02709999800004 ] } }, +{ "type": "Feature", "properties": { "objectid": 243516, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15791347399994, 40.050670234000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 243681, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209482095999988, 40.033451815000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 243709, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168513034999989, 40.021558008000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 243731, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242086087999951, 39.897664825000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 243763, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187253649999946, 39.889185529000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 243777, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.990386101999945, 40.044735001000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 243787, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02282641499994, 40.118454404000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 243813, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238246268999944, 40.069670723000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 243837, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.974143380999976, 40.07429288000003 ] } }, +{ "type": "Feature", "properties": { "objectid": 243840, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165568003999965, 39.966428632000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 243863, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.043196604999935, 40.089240374000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 243891, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067287399999941, 40.002688891000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 243900, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028420495999967, 40.064444864000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 243944, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199999224999942, 40.05147505900004 ] } }, +{ "type": "Feature", "properties": { "objectid": 243981, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229882215999965, 40.039450548000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 244026, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140916082999979, 40.045713063000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 244062, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228740423999966, 40.000055472000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 244117, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168189023999957, 39.892688296000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 244188, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152002760999949, 40.043563521000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 244196, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195169514999975, 40.056795124000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 244233, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.213432299999965, 39.965389010000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 244238, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171675405999963, 40.048388346000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 244285, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143828546999941, 40.028798167000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 244296, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.05943612599998, 40.033145234000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 244527, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206270786999937, 39.975716189000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 244560, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.121808559999977, 40.042623829000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 244561, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070637426999951, 40.031760018000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 244604, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179025054999954, 39.943505174000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 244617, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23809444799997, 39.949491994000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 244669, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.226702928999941, 39.981977984000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 244721, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.008173060999979, 40.100629088000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 244778, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049012707999964, 40.038913689000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 244801, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244686337999951, 39.892352691000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 244826, "status": "MISSING", "position": "MULTI-DIRECTIONAL", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.008746438999935, 40.128862389000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 244844, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.256998350999936, 39.983779128000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 244857, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996757757999944, 40.050526347000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 244884, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18524223199995, 39.993161468000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 244969, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203669627999943, 39.959117430000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 244987, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202996269999971, 40.048706453000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 245228, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18572243999995, 40.075374272000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 245235, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.217106929999943, 40.028121140000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 245236, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136852257999976, 40.002742205000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 245257, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.053963610999972, 40.105494528000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 245281, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02965050399996, 40.068284454000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 245293, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155406211999946, 39.969101889000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 245305, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.00974439099997, 40.122473360000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 245314, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062744787999975, 40.060808122000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 245316, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136808443999939, 39.977593801000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 245332, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.006765968999957, 40.05803128000008 ] } }, +{ "type": "Feature", "properties": { "objectid": 245341, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199752880999938, 40.065315037000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 245351, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031582102999948, 40.088549251000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 245390, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.245788698999945, 39.89234140800005 ] } }, +{ "type": "Feature", "properties": { "objectid": 245413, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.983100604999947, 40.050784994000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 245415, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075340066999956, 40.017674197000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 245516, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142595597999957, 39.964974219000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 245556, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244166810999957, 39.898601772000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 245589, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.021732347999944, 40.113122745000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 245597, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067237085999977, 40.00274137200006 ] } }, +{ "type": "Feature", "properties": { "objectid": 245610, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040431183999942, 40.075267429000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 245654, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15141037799998, 39.94604286200007 ] } }, +{ "type": "Feature", "properties": { "objectid": 245665, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.12874063199996, 39.966930576000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 245718, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162346851999985, 40.059354546000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 245756, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.039428713999939, 40.03552257900003 ] } }, +{ "type": "Feature", "properties": { "objectid": 245762, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153348888999972, 39.967332753000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 245775, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013960132999955, 40.058015986000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 245785, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136637752999945, 40.031830376000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 245823, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.092277323999951, 40.034236304000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 245838, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156502995999972, 39.930231045000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 245923, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202347233999944, 39.932454801000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 245927, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.122314407999966, 39.992884785000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 245945, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234155458999965, 40.052045145000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 246021, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187799175999942, 40.070053375000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 246025, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184660161999943, 39.979179764000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 246031, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234563854999976, 40.071591759000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 246033, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152976069999966, 40.009406425000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 246115, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.041456142999948, 40.091044564000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 246174, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142614436999963, 40.034953440000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 246218, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067127109999944, 40.030015697000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 246222, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.991013487999965, 40.122184219000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 246223, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164784774999987, 39.934290211000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 246268, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.077274676999934, 40.042551986000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 246379, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154270158999964, 40.025705437000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 246394, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.063623390999965, 40.042266684000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 246426, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040510661999974, 40.077687414000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 246461, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197554345999947, 40.076261935000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 246562, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145104487999959, 39.953093539000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 246598, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161124970999936, 39.994199782000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 246616, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.061282733999974, 40.06647674900006 ] } }, +{ "type": "Feature", "properties": { "objectid": 246626, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18740368999994, 39.993541433000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 246634, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.108382246999952, 40.042208814000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 246646, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200286385999959, 39.932128549000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 246770, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017620956999963, 40.10285500100008 ] } }, +{ "type": "Feature", "properties": { "objectid": 246787, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194042528999944, 40.065831116000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 246788, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220008912999958, 39.982158377000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 246816, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.261028870999951, 39.98190210100006 ] } }, +{ "type": "Feature", "properties": { "objectid": 246828, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219577321999964, 39.96103017400003 ] } }, +{ "type": "Feature", "properties": { "objectid": 246891, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.979575100999966, 40.069792523000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 246935, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020289183999978, 40.093155929000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 246974, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197641514999987, 40.034540916000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 246987, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134096134999936, 39.978669224000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 246989, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01458729999996, 40.137557528000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 246992, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119510417999948, 40.025179491000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 247023, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152537446999986, 39.996894787000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 247046, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.22442198799996, 40.026789141000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 247180, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.010517868999955, 40.068106520000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 247249, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.005071147999956, 40.128380783000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 247359, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220113715999958, 40.039389383000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 247383, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020153886999935, 40.10860464600006 ] } }, +{ "type": "Feature", "properties": { "objectid": 247426, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.160973930999944, 39.994127868000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 247442, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.037117851999938, 40.095896898000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 247513, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067201347999969, 40.068726353000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 247527, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.04244026899994, 40.099782613000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 247553, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172121410999978, 40.047423210000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 247561, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083872075999977, 40.066652765000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 247610, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023714032999976, 40.118941909000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 247652, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.09936696699998, 39.995968650000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 247661, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203091212999936, 40.04862470300003 ] } }, +{ "type": "Feature", "properties": { "objectid": 247688, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168846046999988, 40.038525074000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 247693, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180851238999935, 40.054481531000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 247706, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237911664999956, 39.947118787000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 247707, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.215065144999983, 39.964255681000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 247769, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210108322999986, 40.05787224900007 ] } }, +{ "type": "Feature", "properties": { "objectid": 247793, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.007913237999958, 40.128358936000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 247807, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175965043999952, 39.918842009000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 247813, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18919120299995, 40.031930026000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 247828, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.245732926999949, 39.892183317000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 247830, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995269458999985, 40.120028231000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 247906, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230524079999952, 40.050930384000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 247918, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.032719000999975, 40.038203321000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 248017, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.000281034999944, 40.073429162000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 248066, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238025175999951, 39.924854250000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 248139, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243167737999954, 39.950881184000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 248153, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031283263999967, 40.053490053000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 248169, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14942909399997, 40.007553095000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 248181, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132374068999979, 40.014785240000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 248184, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.081398651999962, 40.010676442000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 248188, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996314879999943, 40.049983164000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 248251, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033886091999989, 40.053263725000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 248258, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150703477999969, 40.019859540000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 248289, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15133545499998, 39.940154151000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 248301, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176275312999962, 39.924014962000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 248456, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163052337999943, 39.993469375000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 248536, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995327702999987, 40.077278021000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 248618, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.089250298999957, 40.008428370000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 248639, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142855883999971, 40.037806535000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 248662, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189054728999963, 39.970101301000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 248664, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058740729999954, 40.044339524000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 248727, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.106066295999938, 40.032183384000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 248770, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.997594274999983, 40.053945896000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 248869, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.190949528999965, 40.013317359000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 248871, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078714469999966, 40.043883928000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 248914, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165179807999948, 39.935398890000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 248972, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195777653999983, 39.931548993000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 249063, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.973683037999933, 40.075948061000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 249132, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246658887999956, 39.909491245000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 249171, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178863857999943, 39.936699291000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 249221, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.00165816599997, 40.128789013000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 249236, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083658757999956, 40.061234997000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 249284, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166191192999975, 39.927634106000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 249289, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.19673632599995, 39.929122985000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 249458, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184198495999965, 39.971238271000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 249568, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172904612999957, 40.05736369400006 ] } }, +{ "type": "Feature", "properties": { "objectid": 249585, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.109609691999935, 40.000841129000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 249605, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140349943999979, 40.040954184000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 249634, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228101893999963, 40.040772507000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 249641, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146977731999982, 40.058286252000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 249652, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995394505999968, 40.053529524000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 249653, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078205043999958, 40.079860779000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 249700, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169896894999965, 40.007727775000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 249709, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.038538003999975, 40.024250051000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 249740, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.108897548999948, 40.01641654000008 ] } }, +{ "type": "Feature", "properties": { "objectid": 249742, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136980166999933, 40.002757862000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 249779, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.044725720999963, 40.042943849000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 249781, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246589184999948, 39.892631501000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 249782, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.110696398999949, 39.989526131000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 249793, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178234619999955, 40.014343380000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 249797, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161293957999987, 39.985409621000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 249827, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119048818999943, 40.046911476000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 249862, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084621696999989, 40.024179624000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 249897, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.127708244999951, 39.984328127000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 249916, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233594912999934, 39.943217606000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 249940, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113122895999936, 39.99672765300005 ] } }, +{ "type": "Feature", "properties": { "objectid": 249977, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028367414999934, 40.044614695000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 250046, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225530123999988, 39.937748486000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 250071, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153510763999975, 39.939811830000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 250080, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062517103999937, 40.057821855000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 250102, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.994990254999948, 40.051653057000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 250120, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.127219787999934, 40.03768854100008 ] } }, +{ "type": "Feature", "properties": { "objectid": 250130, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238337588999968, 40.069746055000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 250139, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230949220999946, 40.031421823000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 250151, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.13491683999996, 40.01672843700004 ] } }, +{ "type": "Feature", "properties": { "objectid": 250181, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.066918726999972, 40.027824490000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 250226, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20711679599998, 40.058208724000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 250460, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152520427999946, 39.923344293000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 250550, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220391957999936, 39.965839707000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 250584, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143317429999968, 39.969317293000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 250593, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229415872999937, 39.927081844000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 250639, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179301971999962, 40.028026458000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 250767, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184886909999989, 39.993202151000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 250774, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026515092999944, 40.046513712000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 250829, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234918941999979, 40.035049754000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 250831, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219695723999962, 40.028259638000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 250894, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195259610999983, 39.949333057000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 250960, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.212982548999946, 39.969641871000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 250965, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031442722999941, 40.051610518000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 250968, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017312164999964, 40.13474876500004 ] } }, +{ "type": "Feature", "properties": { "objectid": 250971, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180512724999971, 40.066247198000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 250978, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249919828999964, 39.899793052000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 251174, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.97824888599996, 40.095140435000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 251186, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017806702999962, 40.112431381000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 251248, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024719334999986, 40.119206680000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 251250, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.034261895999975, 40.10266875700006 ] } }, +{ "type": "Feature", "properties": { "objectid": 251267, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018917411999951, 40.054871594000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 251353, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.09348018299994, 40.071862655000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 251381, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.059458522999989, 40.043771339000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 251392, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.080078958999934, 40.065550721000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 251412, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.17683263899994, 39.921418035000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 251424, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996181960999934, 40.050084651000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 251447, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.127475513999968, 40.027621159000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 251461, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178147044999946, 40.014263068000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 251477, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99533493499996, 40.119773567000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 251504, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.193686170999968, 40.012956638000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 251515, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.101174359999959, 40.033205756000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 251540, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233133781999982, 39.937588116000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 251574, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189977255999963, 40.031554204000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 251610, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.994983205999972, 40.051804882000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 251623, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220356094999943, 40.025184202000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 251709, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137757750999981, 40.002771086000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 251718, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.160308230999988, 40.060338543000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 251728, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148372954999957, 39.977532909000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 251772, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248223276999965, 39.887563025000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 251795, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163532823999958, 40.070358034000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 251796, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.032242943999961, 40.085066539000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 251800, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028123197999946, 40.035097013000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 251838, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196698768999966, 39.968483703000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 251862, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156218857999988, 39.932114713000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 251877, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220322744999976, 40.038614727000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 251994, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234445625999967, 39.927546230000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 252142, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028907926999977, 40.113384378000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 252143, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178062473999944, 40.014433552000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 252151, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241431218999935, 39.897607789000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 252158, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.963202753999951, 40.100127880000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 252159, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01695492999994, 40.113060315000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 252162, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166571537999971, 40.008014011000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 252215, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140119883999944, 39.973897924000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 252300, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026537402999963, 40.117423804000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 252317, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.13959904099994, 40.026611737000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 252358, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033594832999938, 40.055267153000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 252470, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.046008433999987, 40.050910844000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 252552, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070620352999981, 40.075489492000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 252559, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.998164702999986, 40.101427609000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 252564, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.218934098999966, 40.039876094000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 252568, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188288651999983, 39.993849706000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 252574, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197976591999975, 39.966767581000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 252649, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.050910768999984, 40.014190089000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 252741, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179031466999959, 40.06914561800005 ] } }, +{ "type": "Feature", "properties": { "objectid": 252748, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.061426892999975, 40.061997474000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 252799, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.245849544999942, 39.892239253000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 252856, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132288878999987, 40.050797470000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 252867, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241654843999981, 39.918481221000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 252874, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197796465999943, 40.034514830000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 252910, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228389370999935, 40.060346982000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 252925, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016558389999943, 40.126042197000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 252930, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.991603277999957, 40.045815358000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 253003, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155249787999935, 40.028622173000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 253095, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151165858999946, 40.056358860000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 253162, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209955137999941, 40.07011140000003 ] } }, +{ "type": "Feature", "properties": { "objectid": 253298, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.08401736999997, 40.015865465000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 253328, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244286848999934, 40.046689054000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 253363, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113220032999948, 40.024836039000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 253389, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150759839999978, 39.99407603800006 ] } }, +{ "type": "Feature", "properties": { "objectid": 253392, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248006644999975, 39.976533387000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 253426, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.096423484999946, 40.047062867000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 253452, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.11903624699994, 40.020823091000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 253500, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203408407999973, 40.063820924000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 253514, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173373974999947, 40.048190628000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 253537, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.011986310999987, 40.040571456000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 253538, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.042880026999967, 40.089198309000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 253576, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179324900999973, 40.04715066600005 ] } }, +{ "type": "Feature", "properties": { "objectid": 253636, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018839860999947, 40.111405489000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 253648, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152102918999958, 39.957198333000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 253707, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188362598999959, 39.969997402000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 253716, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.212473067999952, 39.981582612000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 253836, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.269671954999978, 39.973555632000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 253852, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.108777515999975, 39.998951005000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 253876, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176297188999968, 40.05586437200003 ] } }, +{ "type": "Feature", "properties": { "objectid": 253889, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178227231999983, 39.962113278000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 253962, "status": "MISSING", "position": "MULTI-DIRECTIONAL", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.008695720999981, 40.129031097000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 254066, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.057933067999954, 40.065697499000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 254094, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009052003999955, 40.046134208000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 254113, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162151593999965, 39.959695370000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 254126, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206218913999976, 40.073702254000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 254157, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246519002999946, 39.890321138000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 254161, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.005485269999951, 40.12566160700004 ] } }, +{ "type": "Feature", "properties": { "objectid": 254263, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229108673999974, 39.986412935000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 254458, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.063745887999971, 40.042146156000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 254505, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201483186999951, 40.052409613000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 254545, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.110245344999953, 40.010139982000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 254596, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.054015095999944, 40.049144912000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 254628, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168021621999969, 39.892653598000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 254631, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169524179999939, 40.002176619000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 254688, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.036705938999944, 40.075339295000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 254709, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.236879397999985, 40.056253968000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 254725, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02326422699997, 40.116536703000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 254829, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017742360999989, 40.092760060000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 254839, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.160312875999978, 39.949691246000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 254859, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.977960757999938, 40.086817944000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 254906, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204534774999956, 39.997096301000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 254910, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234002105999934, 40.033978514000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 255017, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.097247949999939, 40.053696804000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 255028, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15409346499996, 40.007951337000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 255120, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146066385999973, 39.93136946900006 ] } }, +{ "type": "Feature", "properties": { "objectid": 255161, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.998701557999937, 40.052091252000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 255171, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.063807435999934, 40.045240480000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 255264, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155752057999962, 40.011518545000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 255309, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.034839639999973, 40.11933177700007 ] } }, +{ "type": "Feature", "properties": { "objectid": 255313, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140946483999983, 40.045606423000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 255325, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181213831999969, 40.020010002000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 255334, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233982850999951, 40.058610283000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 255372, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175860892999935, 39.891427004000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 255430, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031045203999952, 40.052154004000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 255434, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175692434999974, 39.959050570000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 255505, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235774324999966, 39.970277916000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 255553, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240721095999959, 39.909345857000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 255615, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233300719999988, 40.057133308000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 255619, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.097213335999982, 40.053551884000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 255628, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016925184999934, 40.13220222700005 ] } }, +{ "type": "Feature", "properties": { "objectid": 255639, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153428017999943, 39.93979783900005 ] } }, +{ "type": "Feature", "properties": { "objectid": 255677, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210159421999947, 40.076200159000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 255769, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186999261999972, 39.992097745000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 255777, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15685068099998, 40.013106311000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 255813, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146089151999945, 39.931267154000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 255839, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198688822999941, 39.935690204000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 255857, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201584510999965, 40.052310934000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 255886, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15573195099995, 40.010946998000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 255930, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.095379424999976, 39.987844403000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 255974, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070876765999969, 40.031293890000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 256012, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070045946999983, 40.081200972000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 256020, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242195821999985, 39.955448816000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 256048, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181324351999933, 40.019945398000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 256093, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223729570999978, 39.967313507000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 256143, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.993739252999944, 40.050755194000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 256158, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.08421130499994, 40.019038489000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 256173, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033212084999946, 40.084277451000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 256298, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146092332999956, 39.988015503000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 256302, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206545886999947, 39.975128336000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 256353, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.001469755999949, 40.075065754000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 256376, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.239713172999984, 39.966500078000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 256419, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143541887999959, 40.030097939000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 256422, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157456448999937, 39.926486732000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 256425, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99648246199996, 40.120893821000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 256472, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199937052999985, 39.960623071000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 256511, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207712653999977, 40.043711779000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 256542, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.027220523999972, 40.025199112000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 256575, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019451877999984, 40.119109913000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 256582, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.051705752999965, 40.10425364300005 ] } }, +{ "type": "Feature", "properties": { "objectid": 256597, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203010043999939, 40.070867747000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 256602, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223549462999983, 40.092810288000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 256631, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185104684999942, 39.993229831000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 256658, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176364998999986, 40.063840877000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 256753, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164169929999957, 40.011251102000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 256790, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.205869706999977, 40.046211491000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 256799, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151867419999974, 40.070372785000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 256838, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151243095999973, 40.059374343000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 256847, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167312717999948, 39.930313890000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 256851, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.001693136999961, 40.12408797300003 ] } }, +{ "type": "Feature", "properties": { "objectid": 256952, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03170507599998, 40.080663992000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 256980, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162653398999964, 39.912998935000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 257000, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.11941309499997, 39.976086182000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 257003, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.003693282999961, 40.110944976000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 257042, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.21958815399995, 40.078515552000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 257072, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992783495999959, 40.051255765000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 257100, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028593430999933, 40.035957605000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 257101, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229451089999941, 39.987146372000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 257106, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167710889999967, 39.96399537800005 ] } }, +{ "type": "Feature", "properties": { "objectid": 257131, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210301720999951, 40.037686196000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 257136, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149429803999965, 39.94756108100006 ] } }, +{ "type": "Feature", "properties": { "objectid": 257137, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249937577999958, 39.89979181800004 ] } }, +{ "type": "Feature", "properties": { "objectid": 257169, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142330400999981, 40.020620868000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 257170, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.214329878999933, 40.087526902000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 257237, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.271536702999981, 39.975663078000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 257245, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.043829980999988, 40.094483247000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 257263, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.082206883999959, 40.080200769000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 257292, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992850824999948, 40.044303437000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 257296, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.260878820999949, 39.971525088000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 257301, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208757372999969, 40.075210536000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 257308, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150774097999943, 39.99400666400004 ] } }, +{ "type": "Feature", "properties": { "objectid": 257321, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.101525619999961, 39.982876918000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 257336, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.087119821999977, 40.044769426000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 257354, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062872834999951, 40.04852212600008 ] } }, +{ "type": "Feature", "properties": { "objectid": 257392, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120158913999944, 40.049930751000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 257402, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992208177999942, 40.046358432000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 257405, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.110407019999968, 40.010273032000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 257413, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019216049999955, 40.057362433000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 257416, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.047855155999969, 40.025809247000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 257479, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018773993999957, 40.109637403000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 257506, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.032254518999935, 40.037685520000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 257519, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.982756360999986, 40.052900812000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 257521, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180291549999936, 40.077907202000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 257618, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.118511017999936, 39.990532071000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 257639, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197462492999989, 39.96399610800006 ] } }, +{ "type": "Feature", "properties": { "objectid": 257720, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143359336999936, 39.921586278000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 257756, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.998679720999974, 40.052297850000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 257773, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14301527899994, 40.041171353000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 257839, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14961113399994, 39.930585609000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 257974, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.052915138999936, 40.05042835900008 ] } }, +{ "type": "Feature", "properties": { "objectid": 258040, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170101714999987, 40.035664779000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 258053, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199365523999973, 40.055153612000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 258113, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031642300999977, 40.080531855000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 258158, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184614772999964, 40.043663012000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 258207, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.053943816999947, 40.10766611400004 ] } }, +{ "type": "Feature", "properties": { "objectid": 258217, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.022266903999935, 40.117893823000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 258336, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.001645877999977, 40.123902336000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 258343, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.174139682999964, 39.948831851000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 258390, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177361899999937, 40.06232028200003 ] } }, +{ "type": "Feature", "properties": { "objectid": 258480, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981014003999974, 40.096027895000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 258484, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219776827999965, 39.934094071000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 258541, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170205665999958, 40.035583007000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 258555, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028291251999974, 40.06457561600007 ] } }, +{ "type": "Feature", "properties": { "objectid": 258582, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23862300899998, 40.05198370800008 ] } }, +{ "type": "Feature", "properties": { "objectid": 258583, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.994616866999934, 40.081754224000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 258617, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183294149999938, 40.065723742000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 258635, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.046280305999971, 40.050946592000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 258662, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014742934999958, 40.133987938000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 258718, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15571500599998, 39.963357810000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 258729, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019118659999947, 40.132926946000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 258755, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062705376999986, 40.063495302000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 258775, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168710521999969, 40.021816090000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 258786, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158979773999988, 39.996707839000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 258815, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.226366084999938, 40.04762394100004 ] } }, +{ "type": "Feature", "properties": { "objectid": 258843, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138645063999945, 39.970829137000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 258965, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168265130999941, 40.021488690000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 259049, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194358002999934, 40.012166840000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 259087, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.008952231999956, 40.119879980000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 259121, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231864558999973, 40.064112510000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 259132, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220173372999966, 39.990334114000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 259166, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243457040999942, 39.94950381600006 ] } }, +{ "type": "Feature", "properties": { "objectid": 259176, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230931245999955, 40.050933579000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 259187, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029185476999942, 40.036877743000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 259281, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084059673999946, 40.066667152000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 259289, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.00444547799998, 40.121284882000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 259349, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031538681999962, 40.051475401000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 259445, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156827732999943, 40.013193072000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 259463, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120540817999938, 39.990757978000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 259484, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03572653699996, 40.052535428000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 259488, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.046954057999983, 40.024785813000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 259489, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162618174999977, 39.979355948000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 259520, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.212285216999987, 39.952831522000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 259564, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075448094999956, 40.017730147000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 259659, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.137005922999947, 40.002669506000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 259762, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075949167999966, 39.999995882000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 259781, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186774942999989, 39.97339689000006 ] } }, +{ "type": "Feature", "properties": { "objectid": 259969, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.207751730999973, 40.043713228000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 259976, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.093702315999963, 40.07186004700003 ] } }, +{ "type": "Feature", "properties": { "objectid": 259995, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.108294957999988, 40.00065431400003 ] } }, +{ "type": "Feature", "properties": { "objectid": 260015, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225062967999975, 39.991534745000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 260018, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159490326999958, 40.040972805000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 260040, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164475814999946, 39.970862431000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 260043, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.027499258999967, 40.091090748000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 260056, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.127704329999972, 40.040883878000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 260160, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187267048999956, 39.889360822000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 260189, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084131673999934, 40.018622721000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 260201, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179826527999978, 40.06959000900008 ] } }, +{ "type": "Feature", "properties": { "objectid": 260224, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187658102999933, 39.958770027000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 260328, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206558926999946, 39.960081211000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 260361, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.106727125999953, 39.986163514000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 260369, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148762340999951, 40.010615771000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 260388, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172217746999934, 40.068194130000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 260396, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138752443999977, 39.970844195000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 260418, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.215366730999961, 40.062854032000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 260508, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178173760999982, 39.998536435000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 260567, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188962019999963, 39.97324390700004 ] } }, +{ "type": "Feature", "properties": { "objectid": 260618, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014584494999951, 40.057435798000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 260717, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145812493999983, 39.966591691000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 260718, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.022123227999941, 40.106270056000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 260743, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.126126807999981, 40.038653381000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 260758, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143099744999972, 39.966692211000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 260762, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14924771799997, 40.037276533000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 260764, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996327878999978, 40.120796306000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 260785, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233733017999953, 40.060318614000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 260794, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146035261999941, 39.927496092000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 260873, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079142231999981, 40.015947726000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 260884, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.191983612999934, 40.061258107000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 261015, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009579949999988, 40.125954360000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 261026, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209607754999979, 40.075729774000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 261224, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186649355999975, 39.991960045000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 261230, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246361332999982, 39.901681323000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 261294, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017644211999936, 40.040671360000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 261318, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.032600829999978, 40.038247406000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 261343, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.993885864999982, 40.050656636000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 261363, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249061797999957, 39.886147936000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 261382, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.13957008899996, 40.026712646000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 261395, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184500599999978, 40.043583217000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 261442, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197427565999988, 40.034220383000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 261477, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.21435736899997, 40.087526053000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 261492, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064199929999972, 40.09082722800008 ] } }, +{ "type": "Feature", "properties": { "objectid": 261503, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177345930999934, 40.062323940000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 261583, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144539724999959, 39.968132248000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 261643, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.980475811999952, 40.087975391000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 261649, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.055328518999943, 40.083247439000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 261701, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019032853999988, 40.056686783000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 261717, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.973098210999979, 40.087771200000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 261730, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.976625905999981, 40.102915009000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 261784, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.065306931999942, 40.034537698000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 261801, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.123387831999935, 39.974504226000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 261803, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138306278999949, 39.982386276000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 261847, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154976955999985, 39.945027435000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 261917, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16347875799994, 39.935108716000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 261998, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129133195999941, 40.053675817000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 262014, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016961747999972, 40.040872473000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 262026, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140141565999954, 39.973802822000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 262033, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182929380999951, 40.053927416000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 262065, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.239207500999953, 39.969805377000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 262079, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200428399999964, 39.967753555000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 262107, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.060072156999979, 40.014382436000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 262113, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167442893999976, 39.930411720000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 262174, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.190502247999973, 40.042874271000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 262257, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180548245999944, 40.052583907000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 262287, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170174585999973, 39.999191005000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 262301, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162698970999941, 39.964745421000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 262349, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070205320999946, 40.060059050000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 262455, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169212326999968, 39.925672721000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 262583, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208254197999963, 40.059121126000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 262604, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128707254999938, 40.001603910000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 262632, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144255557999941, 40.040445318000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 262642, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083972624999944, 40.018549200000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 262652, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.131696069999975, 39.979398016000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 262659, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175394378999954, 40.004587616000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 262663, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181939805999946, 39.989663679000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 262735, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163326292999955, 40.07043030300008 ] } }, +{ "type": "Feature", "properties": { "objectid": 262739, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162991141999953, 39.963406789000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 262752, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.96930630199995, 40.077900885000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 262787, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.213417452999977, 39.966527707000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 262843, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139265892999958, 39.963556958000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 262851, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171024360999979, 40.027155114000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 262876, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177397234999944, 39.987911358000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 262896, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.11358159599996, 40.02341401700005 ] } }, +{ "type": "Feature", "properties": { "objectid": 262924, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166931542999976, 39.932776727000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 262931, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.051013232999935, 40.014317104000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 262975, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198742318999962, 40.076786310000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 262992, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.021040960999983, 40.111339584000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 263013, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163659716999973, 39.914430525000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 263026, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029220075999945, 40.036882303000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 263047, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145648907999941, 40.024981213000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 263145, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.021963411999934, 40.117977597000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 263181, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199187802999973, 39.973327636000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 263224, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.117271652999989, 40.01750658800006 ] } }, +{ "type": "Feature", "properties": { "objectid": 263256, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084767621999958, 40.033937483000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 263278, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182680053999945, 39.910574112000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 263285, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.125065584999959, 40.034255160000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 263308, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.121859336999989, 40.043137473000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 263315, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157947793999938, 40.03092902700007 ] } }, +{ "type": "Feature", "properties": { "objectid": 263326, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147231459999944, 39.966355634000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 263346, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.117348174999961, 39.991137464000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 263351, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187726296999983, 39.891364922000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 263362, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146651492, 40.016494042000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 263395, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992808880999974, 40.091314251000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 263407, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196939264999969, 39.94625654500004 ] } }, +{ "type": "Feature", "properties": { "objectid": 263434, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230514315999983, 39.946011302000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 263443, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.21810493199996, 40.025972718000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 263478, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992968317999953, 40.044242754000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 263487, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231037557999969, 40.03149651800004 ] } }, +{ "type": "Feature", "properties": { "objectid": 263560, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231050140999969, 39.939875278000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 263592, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.015043637999952, 40.135783264000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 263599, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.191201870999976, 40.066951182000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 263628, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234762133999936, 40.071639881000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 263735, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084811945999945, 40.009563537000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 263736, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113066247999939, 39.984392737000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 263744, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016936649999934, 40.132191970000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 263749, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15961053999996, 40.047240676000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 263790, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.061694727999964, 40.018018490000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 263825, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156186123999987, 40.011583201000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 263826, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.250228232999973, 39.978164530000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 263831, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144578593999938, 40.022454002000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 263842, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014823702999934, 40.099815395000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 263871, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150450903999968, 40.002878892000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 263942, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242001279999954, 39.897488056000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 263953, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.22591665799996, 40.039589793000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 263979, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.059993106999968, 40.014292965000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 263983, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.012175295999953, 40.133880773000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 263988, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181639906999976, 39.99090302500008 ] } }, +{ "type": "Feature", "properties": { "objectid": 263991, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141160168999988, 40.026919368000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 264025, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208440223999958, 40.057452369000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 264118, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195718316999944, 40.057592551000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 264158, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.997432806999939, 40.050965375000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 264176, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.98642861999997, 40.091573575000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 264179, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113027533999968, 40.028943358000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 264193, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009933428999943, 40.128395922000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 264196, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.057681349999939, 40.05690446300008 ] } }, +{ "type": "Feature", "properties": { "objectid": 264238, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237754318999976, 40.053523415000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 264251, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197605804999966, 40.03451786800008 ] } }, +{ "type": "Feature", "properties": { "objectid": 264252, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.255521485999964, 39.975616588000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 264286, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14322744499998, 39.995698846000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 264291, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185818439999935, 39.941412967000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 264299, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.006432621999977, 40.06169660900008 ] } }, +{ "type": "Feature", "properties": { "objectid": 264321, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078308170999946, 39.997579782000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 264323, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159054270999945, 40.030379054000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 264402, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.055013259999953, 40.071872488000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 264422, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209152306999954, 40.07090043900007 ] } }, +{ "type": "Feature", "properties": { "objectid": 264435, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013798994999945, 40.057893523000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 264453, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154590169999949, 40.005029241000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 264458, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024477583999953, 40.040633942000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 264460, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992240149999986, 40.043774799000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 264471, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031076455999937, 40.03002960200007 ] } }, +{ "type": "Feature", "properties": { "objectid": 264497, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.110127283999987, 39.980273208000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 264512, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241278636999937, 39.897814093000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 264537, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.245515250999972, 39.906974899000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 264594, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219240748999937, 40.02562010500003 ] } }, +{ "type": "Feature", "properties": { "objectid": 264664, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.034053391999976, 40.060106649000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 264695, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.124960604999956, 40.048015201000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 264736, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.976118461999988, 40.089320774000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 264764, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.232396751999943, 40.068365994000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 264775, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183076621999987, 40.06166700700004 ] } }, +{ "type": "Feature", "properties": { "objectid": 264839, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129911259999972, 39.986006798000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 264919, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242680691999965, 39.921755980000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 264974, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.081039913999973, 40.01308159000007 ] } }, +{ "type": "Feature", "properties": { "objectid": 264990, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.081047603999934, 40.01528111600004 ] } }, +{ "type": "Feature", "properties": { "objectid": 265075, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.022924223999951, 40.11850458400005 ] } }, +{ "type": "Feature", "properties": { "objectid": 265095, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020879008999941, 40.117412811000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 265165, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99694492499998, 40.05054417000008 ] } }, +{ "type": "Feature", "properties": { "objectid": 265179, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14438021899997, 39.933359410000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 265233, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.015024094999944, 40.099902547000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 265335, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.034453545999952, 40.055492252000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 265415, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.222901872999955, 39.939799931000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 265430, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.972087098999964, 40.09872464700004 ] } }, +{ "type": "Feature", "properties": { "objectid": 265457, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210071831999983, 40.076158197000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 265480, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187379269999951, 40.036761455000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 265540, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146057904999964, 40.029103771000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 265575, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.059377688999973, 40.043619449000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 265591, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033584354999959, 40.06076342800003 ] } }, +{ "type": "Feature", "properties": { "objectid": 265615, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188789246999988, 40.04862322300005 ] } }, +{ "type": "Feature", "properties": { "objectid": 265632, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186038059999987, 40.012033808000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 265648, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244278926999982, 39.898664679000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 265712, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01364928199996, 40.057996003000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 265741, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.218651833999957, 40.077740302000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 265759, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.211224968999943, 40.068312285000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 265777, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163621721999959, 40.075461081000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 265807, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142256896999982, 40.028595567000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 265810, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.990871899999945, 40.042505564000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 265902, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073819703999959, 40.05457871200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 265916, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.116577807999988, 39.991438524000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 265951, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.974112704999982, 40.07413174800007 ] } }, +{ "type": "Feature", "properties": { "objectid": 265999, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208861470999977, 40.059266884000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 266044, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.059520548999956, 40.043702201000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 266106, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.110805080999967, 39.989410613000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 266120, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171098679999943, 39.955343913000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 266121, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186005943999987, 39.971877157000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 266140, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158881313999984, 39.996521189000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 266171, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.071193951999987, 40.074916504000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 266195, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237010519999956, 39.929128565000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 266269, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026947146999987, 40.050966135000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 266275, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171012173999941, 39.956297487000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 266364, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.132932737999965, 40.01634210800006 ] } }, +{ "type": "Feature", "properties": { "objectid": 266385, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181654819999949, 39.990828822000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 266394, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181529102999946, 39.990889159000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 266415, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209720162999986, 39.96693539000006 ] } }, +{ "type": "Feature", "properties": { "objectid": 266449, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07515064599994, 40.061078352000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 266475, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188811459999954, 40.048621265000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 266515, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.039154664999955, 40.093718242000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 266568, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.00489485099996, 40.128334098000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 266632, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031481764999967, 40.115070329000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 266642, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23794668499994, 40.070036878000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 266661, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024296489999983, 40.104632607000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 266668, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.22037887099998, 39.934570683000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 266690, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.994496713, 40.051194835000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 266738, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229964758999984, 39.97261799100005 ] } }, +{ "type": "Feature", "properties": { "objectid": 266914, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.012280445999977, 40.133755932000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 266941, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241443183999934, 39.897619477000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 266944, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143052871999942, 39.952888336000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 266962, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.135261137999976, 39.971791961000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 266996, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194710364999935, 39.953861209000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 267007, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.046717008999963, 40.051598593000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 267032, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164897123999936, 40.025692985000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 267054, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.036869950999971, 40.095927022000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 267123, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03930203699997, 40.094049383000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 267153, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.971956993999981, 40.09864611100005 ] } }, +{ "type": "Feature", "properties": { "objectid": 267193, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159988374999955, 40.069425332000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 267233, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194757483999979, 39.922032337000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 267306, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.218843395999954, 40.026543390000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 267343, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189075119999984, 40.06904372300005 ] } }, +{ "type": "Feature", "properties": { "objectid": 267352, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.975251795999952, 40.078946221000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 267372, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.997353121999936, 40.051057771000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 267386, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.17054382699996, 39.910163441000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 267454, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145641430999945, 39.929953032000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 267482, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138402388999964, 40.035846683000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 267500, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243465028999935, 40.046523372000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 267534, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.000386976999948, 40.053831346000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 267553, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142062804999966, 39.971153666000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 267589, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01351028299996, 40.132406218000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 267646, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.976360499999942, 40.089510934000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 267709, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152976895999984, 40.023548715000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 267724, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150606721999964, 40.013705063000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 267735, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018989088999945, 40.056663319000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 267815, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119759267999939, 40.043504219000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 267823, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.218748138999956, 40.082954817000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 267846, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.993884568999988, 40.050675383000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 267870, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.131041969999956, 40.033442953000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 267896, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.034679900999947, 40.052996298000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 267918, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.015247903999978, 40.13571866500007 ] } }, +{ "type": "Feature", "properties": { "objectid": 267928, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188022024999952, 40.070027828000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 267949, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035049707999974, 40.055871780000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 268006, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.021434454999962, 40.119982122000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 268043, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241588073999935, 40.05751179300006 ] } }, +{ "type": "Feature", "properties": { "objectid": 268056, "status": "MISSING", "position": "MULTI-DIRECTIONAL", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.00883648599995, 40.128969348000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 268064, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227358377999963, 39.997246811000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 268086, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240001503999963, 39.99218372200005 ] } }, +{ "type": "Feature", "properties": { "objectid": 268138, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178156175999959, 40.038805230000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 268174, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227328824999972, 39.97121308100003 ] } }, +{ "type": "Feature", "properties": { "objectid": 268221, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171457087999954, 40.067871828000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 268271, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024565078999956, 40.043907232000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 268325, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.984771101999968, 40.074343574000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 268359, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.253549827999962, 39.969786871000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 268388, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.990259948999949, 40.044834336000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 268492, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145601149999948, 39.930127764000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 268545, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.191720093999947, 39.89485138200007 ] } }, +{ "type": "Feature", "properties": { "objectid": 268596, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.063558546999957, 40.091954878000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 268598, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153153723999935, 40.027509655000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 268605, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223393323999971, 40.045734948000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 268623, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.093678385999965, 39.989533376000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 268718, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166912168999943, 39.932859679000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 268728, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070540840999968, 40.075574268000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 268850, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.094306020999966, 40.022024660000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 268942, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070089241999938, 40.076276044000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 268973, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203964839999969, 40.047798894000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 268988, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.095491608999964, 39.987786357000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 268996, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142309401999967, 40.031747755000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 269091, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142396911999981, 39.995590694000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 269103, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.021789849999948, 40.113054619000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 269157, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078289268999981, 39.997698498000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 269180, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073360474999959, 40.021432055000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 269187, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026170707999938, 40.123581298000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 269278, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143024806999961, 40.00660742000008 ] } }, +{ "type": "Feature", "properties": { "objectid": 269365, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.036981, 40.036769967000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 269377, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07417430299995, 40.087578317000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 269446, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.09049896199997, 40.011973781000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 269475, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.991563120999956, 40.045958742000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 269509, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249103247999983, 39.987469477000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 269510, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02489157399998, 40.04107203600006 ] } }, +{ "type": "Feature", "properties": { "objectid": 269606, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.133834349999972, 40.058564859000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 269774, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.027948539999954, 40.115736346000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 269792, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.056538644999989, 40.058343818000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 269811, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.22018557399997, 40.02733637700004 ] } }, +{ "type": "Feature", "properties": { "objectid": 269975, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07049564099998, 40.031679195000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 270005, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995237765999946, 40.07702689100006 ] } }, +{ "type": "Feature", "properties": { "objectid": 270034, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.189450705999946, 40.042229158000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 270057, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.222882025999979, 39.985676 ] } }, +{ "type": "Feature", "properties": { "objectid": 270073, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992686159999948, 40.051320868000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 270106, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183109423999952, 40.018704842000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 270132, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.252546131999964, 39.98086578300007 ] } }, +{ "type": "Feature", "properties": { "objectid": 270156, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183031541999981, 40.053989406000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 270189, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227921541999933, 39.963631669000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 270194, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.125974006999968, 39.985236696000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 270201, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240196509999976, 40.048027726000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 270248, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150086481999949, 40.025349537000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 270296, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167741775999957, 40.031442235000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 270325, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227216883999972, 39.977526549000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 270378, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023362235999969, 40.105351478000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 270453, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.17349994999995, 40.067163511000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 270492, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145733728999971, 40.00227099600005 ] } }, +{ "type": "Feature", "properties": { "objectid": 270498, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166537106999954, 40.064616544000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 270550, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018612833999953, 40.041665342000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 270594, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020034060999933, 40.10850780800007 ] } }, +{ "type": "Feature", "properties": { "objectid": 270617, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198884316999965, 40.049817870000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 270692, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.998982450999961, 40.064690763000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 270732, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143232860999944, 39.948337729000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 270748, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166058165999971, 39.92761971300007 ] } }, +{ "type": "Feature", "properties": { "objectid": 270775, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.22647488299998, 39.989152022000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 270800, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.048610126999961, 40.08835005800006 ] } }, +{ "type": "Feature", "properties": { "objectid": 270830, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172532633999936, 40.047019695000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 270847, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019614818999969, 40.108998600000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 270868, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.06740337399998, 40.05882185300004 ] } }, +{ "type": "Feature", "properties": { "objectid": 270871, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075144844999954, 40.060909524000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 270883, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187911440999983, 40.069969066000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 270885, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.994652548999966, 40.061914899000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 270991, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234369039999933, 40.052113229000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 271027, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.113644979999947, 40.032828841000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 271054, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129350877999968, 40.053604173000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 271117, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185004034999963, 39.993134538000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 271186, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241200481999954, 39.986426399000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 271205, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.081683381999937, 40.013497182000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 271209, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031231309999953, 40.055852409000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 271211, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.100441706999959, 40.050446507000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 271235, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248450715999979, 39.899188842000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 271265, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134234112999934, 39.989645284000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 271278, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075918100999957, 40.000145678000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 271282, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.990992370999948, 40.042664334000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 271304, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018984043999978, 40.056459263000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 271310, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210518724999986, 39.97145177200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 271318, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167531607999933, 39.956798082000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 271326, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033995423999954, 40.060232355000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 271352, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147256168999945, 39.966176097000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 271365, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.108257841999944, 40.042326882000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 271457, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.037525696999978, 40.022673348000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 271461, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020069663999948, 40.120512724000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 271482, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16388812799994, 39.918473271000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 271499, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182213545999957, 39.99584244700003 ] } }, +{ "type": "Feature", "properties": { "objectid": 271613, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161894272999973, 40.032838380000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 271626, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.212602208999954, 39.969617872000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 271629, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229187295999964, 39.994379742000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 271656, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049513789999935, 40.102038746000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 271659, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177623251999989, 40.03289916500006 ] } }, +{ "type": "Feature", "properties": { "objectid": 271738, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233026360999986, 39.93749650500007 ] } }, +{ "type": "Feature", "properties": { "objectid": 271748, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.047784663999948, 40.042632752000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 271750, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179912369999954, 40.057057323000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 271783, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.047328511999979, 40.058878063000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 271786, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031782182999962, 40.080493445000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 271797, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223145165999938, 39.883736571000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 271852, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017715043999942, 40.112529996000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 271887, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229245082999967, 39.915244834000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 271890, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014470556999981, 40.13323898200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 271906, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.131688199999985, 39.979373185000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 271959, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.042435653999974, 40.100024879000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 271967, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200669943999969, 39.968289189000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 272018, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040424622999979, 40.091769043000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 272073, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.065963432999979, 40.061509760000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 272106, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07644393399994, 40.008369487000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 272110, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244698080999967, 39.912248982000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 272126, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146835393999936, 39.98514833400003 ] } }, +{ "type": "Feature", "properties": { "objectid": 272127, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.213734106999937, 40.025126270000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 272145, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156234494999978, 39.931470980000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 272146, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.041238464999935, 40.090921172000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 272147, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233643000999962, 40.06035393600007 ] } }, +{ "type": "Feature", "properties": { "objectid": 272214, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165691532999972, 39.968721436000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 272220, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040429550999988, 40.077632718000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 272265, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.072565355999984, 40.057559835000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 272316, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210124458999985, 40.076070714000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 272353, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019011164999938, 40.119922304000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 272372, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.008625098999971, 40.128913920000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 272396, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23357115999994, 40.070690499000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 272401, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.193402714999934, 39.953791737000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 272409, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249579775999962, 39.969408642000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 272459, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981838780999965, 40.063284370000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 272468, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014283194999962, 40.131840100000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 272486, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249021932999938, 40.064000301000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 272487, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219149050999988, 39.980000275000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 272506, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.057120676999943, 40.054625999000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 272507, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231215688999953, 39.987750980000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 272595, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009854286999939, 40.122538131000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 272634, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992765368999983, 40.05139904400005 ] } }, +{ "type": "Feature", "properties": { "objectid": 272659, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99032656299994, 40.044904402000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 272756, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.032466545999966, 40.085059520000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 272768, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.016797486999963, 40.113151444000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 272780, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.015020548999985, 40.134807486000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 272806, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172758717999955, 40.05727421000006 ] } }, +{ "type": "Feature", "properties": { "objectid": 272836, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.124054989999934, 39.977215931000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 272853, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186171054999988, 40.011005367000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 272943, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241714265999974, 40.047424723000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 273094, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134043195999936, 40.003827045000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 273133, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031737440999962, 40.080676010000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 273230, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.047776061999969, 40.099215152000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 273252, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.100775406999958, 40.007510504000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 273287, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.119364552999969, 39.991493916000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 273295, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20676353999994, 39.96130400900006 ] } }, +{ "type": "Feature", "properties": { "objectid": 273368, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.188481865999961, 39.958891648000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 273429, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.077495945999942, 40.012954778000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 273446, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180622830999937, 40.052652032000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 273460, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049470992999943, 40.051755782000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 273467, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14905885099995, 40.012855162000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 273492, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120137077999971, 40.050040549000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 273512, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078862537999953, 40.081987114000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 273550, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.09537144899997, 40.05522598500005 ] } }, +{ "type": "Feature", "properties": { "objectid": 273626, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201931040999966, 40.047679361000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 273698, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154261471999973, 40.006525995000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 273722, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014452886999948, 40.042540991000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 273728, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206035417999942, 40.065391305000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 273782, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185687455999982, 39.971451457000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 273835, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067473403999941, 40.068723860000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 273841, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154022774999987, 39.948904058000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 273850, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992662332999942, 40.071670071000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 273879, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.063770226999964, 40.062364182000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 273883, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07128062399994, 40.069475523000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 273888, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062532855999962, 40.046318668000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 273972, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024048259999972, 40.08840848400007 ] } }, +{ "type": "Feature", "properties": { "objectid": 273978, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.025756462999937, 40.117988186000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 273992, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146644600999934, 40.005542931000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 273995, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220640394999975, 39.931103912000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 274053, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146426943999984, 39.92640857400005 ] } }, +{ "type": "Feature", "properties": { "objectid": 274063, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.236189042999968, 39.907227641000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 274077, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173029544999963, 40.063814797000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 274138, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242541937999988, 40.046915523000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 274147, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248580423999954, 39.891436275000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 274152, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.077856166999936, 40.03577398200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 274170, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129411456999946, 39.989023779000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 274178, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139529407999987, 39.974938566000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 274186, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164344680999989, 40.011167094000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 274199, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209082755999987, 40.04576052200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 274222, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219027490999963, 40.025571745000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 274321, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219778125999937, 40.078566849000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 274347, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.008616690999986, 40.128931207000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 274362, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231732028999943, 39.976942686000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 274363, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186822886999948, 39.990177841000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 274386, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237912225999935, 39.912486990000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 274422, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187716442999943, 39.995813128000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 274460, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161624681999967, 39.999632275000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 274477, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083994351999934, 40.01869627700006 ] } }, +{ "type": "Feature", "properties": { "objectid": 274483, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.243277120999949, 40.046558950000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 274556, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200103504999959, 40.04415296600007 ] } }, +{ "type": "Feature", "properties": { "objectid": 274557, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179501433999974, 40.044521148000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 274589, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18061991999997, 40.057471515000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 274596, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.047805643999936, 40.112123102000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 274617, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033804952999958, 40.053410023000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 274625, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02958143799998, 40.030965360000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 274661, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182674331999976, 39.909164737000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 274708, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.217056173999936, 39.97031275300003 ] } }, +{ "type": "Feature", "properties": { "objectid": 274738, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030252795999957, 40.036608362000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 274762, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.108248955999954, 40.042125043000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 274765, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129238574999988, 39.989091922000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 274772, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180136115999971, 40.078100441000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 274811, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130067992999955, 40.030183432000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 274823, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241353303999972, 39.922748786000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 274843, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184187530999964, 39.951756644000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 274854, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184978588999968, 39.910022884000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 274902, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075036720999947, 40.061015454000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 275054, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.088524557999961, 40.019135618000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 275069, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238511469999935, 39.963376847000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 275102, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01453967599997, 40.133427707000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 275109, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138091703999976, 40.010685888000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 275129, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165569000999938, 39.926314593000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 275183, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.252026647999969, 39.893267312000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 275204, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14872823099995, 40.004275374000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 275224, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134242770999947, 39.974995607000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 275245, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235652275999939, 40.06630249400007 ] } }, +{ "type": "Feature", "properties": { "objectid": 275255, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165787793999982, 39.932625942000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 275258, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07343469999995, 40.021517090000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 275283, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.015942447999976, 40.104705476000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 275301, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202512357999979, 40.07521369400007 ] } }, +{ "type": "Feature", "properties": { "objectid": 275325, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030140284999959, 40.11508815600007 ] } }, +{ "type": "Feature", "properties": { "objectid": 275382, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018280580999942, 40.111930360000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 275438, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162581510999985, 40.059080327000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 275460, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164997778999975, 39.902024909000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 275492, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15364774699998, 40.042896780000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 275539, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150538214999983, 40.019841730000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 275561, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238398956999959, 40.054152251000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 275587, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14213472199998, 39.97116460500007 ] } }, +{ "type": "Feature", "properties": { "objectid": 275628, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.160426387999962, 39.949702525000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 275656, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235808886999962, 40.066250371000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 275708, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225277994999942, 39.948798185000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 275738, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01385034599997, 40.10170448100007 ] } }, +{ "type": "Feature", "properties": { "objectid": 275762, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248615733999941, 39.884418097000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 275913, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995393002999947, 40.053543397000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 275934, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.042979392999939, 40.08909208700004 ] } }, +{ "type": "Feature", "properties": { "objectid": 275938, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031246774999943, 40.05424200200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 276013, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141105687999982, 40.045732259000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 276091, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220166412999959, 39.990311727000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 276109, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238745910999967, 39.925441983000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 276133, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.124472892999961, 39.979674246000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 276152, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.021057448999954, 40.122582616000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 276175, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242065828999955, 39.955428932000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 276195, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171366926999951, 40.018836165000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 276222, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196945210999957, 40.067958497000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 276224, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084035399999948, 40.06709829700003 ] } }, +{ "type": "Feature", "properties": { "objectid": 276248, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.012101880999978, 40.092003022000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 276321, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.236131786999977, 40.066249646000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 276391, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185031174999949, 40.076057755000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 276451, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194383007999988, 39.926760591000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 276473, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.102688268999941, 40.050893831000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 276528, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167031023999982, 39.931615753000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 276532, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157638722999934, 40.052749893000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 276682, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.030183561999934, 40.03770789500004 ] } }, +{ "type": "Feature", "properties": { "objectid": 276806, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208198139999979, 40.059059134000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 276826, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163341697999954, 40.022955927000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 276876, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.045261030999939, 40.055805876000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 276907, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209695269999941, 40.059727942000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 276912, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152831606999939, 40.009387963000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 276952, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130555440999956, 40.02710270700004 ] } }, +{ "type": "Feature", "properties": { "objectid": 277032, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029868545999989, 40.110796762000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 277036, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235257751999939, 39.910618483000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 277089, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.965661416999978, 40.095537400000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 277094, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.131737285999975, 40.017735436000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 277209, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.260893569999951, 39.981969618000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 277219, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197587286999976, 39.96407264000004 ] } }, +{ "type": "Feature", "properties": { "objectid": 277226, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130565613999977, 39.992095375000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 277267, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181544605999989, 39.990817709000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 277331, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181239472999948, 40.019803701000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 277376, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.969379105999963, 40.102586018000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 277407, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.211949879999963, 40.056786030000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 277424, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24770947199994, 39.910079105000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 277524, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073825071999977, 40.021186391000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 277565, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.208701708999968, 39.972953850000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 277574, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.160789955999974, 40.012600724000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 277585, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149316992999957, 39.941253860000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 277661, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154195099999981, 39.926073454000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 277683, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227790270999947, 39.965172798000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 277692, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.241482448999989, 39.897773480000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 277697, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.010406468999975, 40.122865236000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 277738, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159673780999981, 39.920586569000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 277784, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233245493999959, 40.059657131000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 277803, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020340267999984, 40.060150190000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 277840, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.088755298999956, 40.011044730000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 277845, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.13267699499994, 39.987999493000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 277939, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.076388229999964, 40.059859343000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 277958, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995833704999939, 40.072950318000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 278015, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219523482999989, 39.982766651000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 278114, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24312284399997, 39.91547188100003 ] } }, +{ "type": "Feature", "properties": { "objectid": 278120, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.253364146999957, 39.96976563700008 ] } }, +{ "type": "Feature", "properties": { "objectid": 278127, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24478417499995, 39.892239849000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 278150, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146521119999989, 40.027485340000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 278171, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.063678076999963, 40.045170704000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 278198, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026873467999962, 40.050714867000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 278202, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246926626999937, 39.894453831000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 278213, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033969101999958, 40.057831456000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 278227, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.214256422999938, 40.004155968000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 278274, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202826603999938, 40.070879770000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 278295, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.051573080999958, 40.05039270900005 ] } }, +{ "type": "Feature", "properties": { "objectid": 278304, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.212277655999969, 40.061411464000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 278309, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.002343698999937, 40.052690925000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 278310, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231250049999971, 39.995408309000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 278319, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200481002999936, 40.049215246000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 278336, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.216003454999964, 40.034110501000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 278463, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209562600999959, 39.966944481000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 278565, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.071199599999943, 40.069592845000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 278619, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168829579999965, 40.038222053000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 278662, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.987737015999983, 40.069932845000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 278682, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210115190999943, 40.033229268000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 278705, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.134303554999974, 39.974932504000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 278721, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138626661999979, 39.970922493000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 278723, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196225484999957, 40.042350187000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 278741, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219389951999972, 39.99008619500006 ] } }, +{ "type": "Feature", "properties": { "objectid": 278748, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028794801999936, 40.053753457000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 278764, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.186096099999986, 39.971768257000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 278788, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248068888999967, 39.885605894000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 278879, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014220153999986, 40.131911690000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 278884, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172869754999965, 40.001908563000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 278888, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028660405999972, 40.036020772000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 278892, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139868127999989, 40.043890370000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 278896, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.222446813999966, 40.027982283000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 278919, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028402986999936, 40.044489129000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 278982, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.140447455999947, 39.982574397000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 279002, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981524106999984, 40.051676522000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 279035, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.084671156999946, 40.017054681000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 279055, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198793041999977, 40.049875034000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 279064, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.020872480999969, 40.123032390000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 279121, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144483588999947, 39.938821869000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 279129, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141840190999972, 40.034856187000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 279132, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.013720820999936, 40.057885489000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 279145, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981244365999942, 40.095977380000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 279151, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.104928734999987, 40.047152801000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 279194, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210222513999952, 40.033172645000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 279208, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.081574520999936, 40.001329058000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 279212, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196603210999967, 39.931653997000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 279229, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.993478057999937, 40.044851090000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 279283, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172927956999956, 40.046632075000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 279310, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.226473705999979, 39.989279076000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 279347, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183098209999969, 39.889434685000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 279506, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234967952999966, 39.912848785000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 279512, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180377017999945, 40.036470012000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 279592, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.224157004999938, 40.026868669000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 279598, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.98159650599996, 40.051739487000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 279619, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.199865686999942, 40.069757821000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 279774, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.093694298999935, 40.054139875000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 279810, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.230430251999962, 40.045829194000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 279823, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073809679999954, 40.022116537000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 279828, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.193780436999987, 40.013010243000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 279869, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16045195199996, 40.036901700000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 279877, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.117047528999933, 40.050159323000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 279890, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018551662999982, 40.10213329100003 ] } }, +{ "type": "Feature", "properties": { "objectid": 279894, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.138205761999984, 40.036749438000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 279896, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.004870265999955, 40.128522206000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 279957, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.152875156999983, 39.961452102000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 279964, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168503109999961, 40.037056530000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 279965, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.083369265999977, 40.078939798000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 279973, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026289025999972, 40.12344054600004 ] } }, +{ "type": "Feature", "properties": { "objectid": 280108, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169371567999974, 39.900207118000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 280110, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.014957784999979, 40.09977269500007 ] } }, +{ "type": "Feature", "properties": { "objectid": 280182, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.236557341999969, 40.066093183000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 280193, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01647479899998, 40.126098870000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 280219, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157473870999979, 40.013294966000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 280221, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.159480608999957, 40.040805565000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 280247, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148596821999945, 40.029432988000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 280260, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197731303999944, 40.034300169000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 280263, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.101478719999989, 39.982864547000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 280315, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235112879999974, 39.912730067000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 280335, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.160353019999945, 39.934584666000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 280353, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195395752999957, 39.927745240000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 280362, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144151240999975, 40.05718444200005 ] } }, +{ "type": "Feature", "properties": { "objectid": 280376, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.047566482999969, 40.058831047000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 280564, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178343591999976, 40.014675304000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 280578, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234927708999976, 40.06677183100004 ] } }, +{ "type": "Feature", "properties": { "objectid": 280633, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.155861026999958, 40.04515482100004 ] } }, +{ "type": "Feature", "properties": { "objectid": 280649, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.166479477999985, 40.064734659000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 280663, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.04941439299995, 40.045414009000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 280675, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203422555999964, 40.080241925000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 280677, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238959273999967, 40.072502454000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 280693, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.238630155999942, 39.987639601000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 280715, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163651777999974, 39.959883511000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 280739, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.179912894999973, 39.931930517000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 280740, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070501049999962, 40.037567283000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 280767, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129407016999949, 40.003312701000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 280772, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242899979999947, 40.072832692000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 280804, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.01794628, 40.134096397000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 280882, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.203660512999988, 39.965007551000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 280912, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035007667999935, 40.065583827000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 280940, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237673251, 39.986418147000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 280946, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154495933999954, 39.939926306000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 280953, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033958930999972, 40.053342832000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 281012, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075624833999939, 40.004886164000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 281019, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144155556999976, 40.027304084000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 281028, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143230587999938, 39.998680647000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 281125, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167196170999944, 39.931552840000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 281208, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.191844123999942, 40.032005239000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 281238, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.009268314999986, 40.122015883000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 281278, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078396814999962, 40.01382479800003 ] } }, +{ "type": "Feature", "properties": { "objectid": 281393, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24308210099997, 39.983020200000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 281420, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.059262331999946, 40.067421549000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 281428, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.996314515999984, 40.04996280000006 ] } }, +{ "type": "Feature", "properties": { "objectid": 281457, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223503383999969, 39.883771670000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 281558, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.206692403999966, 40.045017568000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 281599, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.015413097999954, 40.040426835000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 281650, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235009864999938, 40.065017033000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 281767, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.202312719999952, 40.047290925000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 281809, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.13678508299995, 40.022462679000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 281838, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040375122999933, 40.091787917000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 281841, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24539961399995, 39.906908583000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 281870, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.077741301999936, 40.027891887000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 281963, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992312769999955, 40.046444928000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 282189, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.133507409999936, 40.040093486000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 282203, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120487809999986, 39.982728125000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 282212, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.094489060999933, 39.990451538000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 282252, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.080734078999967, 40.041429681000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 282409, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981125222999935, 40.069409092000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 282415, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028202283999974, 40.051929308000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 282417, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.001147844999934, 40.054258311000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 282420, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.13522753899997, 39.975337841000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 282431, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.04247642699994, 40.062447218000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 282442, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031133190999981, 40.086217145000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 282466, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183547389999944, 40.004150751000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 282512, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223779684999954, 39.982207919000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 282588, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.065191786999947, 40.034609742000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 282598, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058813063999935, 40.061498100000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 282614, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.035054308999975, 40.055899120000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 282635, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.161986870999954, 39.949903016000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 282671, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197079242999962, 40.051553374000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 282810, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.172434689999989, 40.031463165000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 282892, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163415160999989, 40.070480934000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 282928, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169740902999933, 40.007810566000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 282993, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.989654996999946, 40.044285840000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 283007, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019193015999974, 40.056667024000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 283050, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.050127295999971, 40.086207776000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 283080, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.224936570999944, 39.991380420000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 283115, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058154767999952, 40.065653152000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 283172, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16748023699995, 39.979991525000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 283271, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182827313999951, 40.072548582000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 283277, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.232499154999971, 39.945516658000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 283305, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024130389999982, 40.08833687200007 ] } }, +{ "type": "Feature", "properties": { "objectid": 283310, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178037565999944, 40.080450545000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 283346, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.041142796999964, 40.09910452500003 ] } }, +{ "type": "Feature", "properties": { "objectid": 283374, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031158071999982, 40.052675599000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 283444, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171536989999936, 40.029098346000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 283492, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153178821999973, 40.02739028600007 ] } }, +{ "type": "Feature", "properties": { "objectid": 283565, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.990804277999985, 40.122224361000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 283574, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028279894999969, 40.064449480000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 283618, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.063917045999972, 40.042259691000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 283643, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079703664999954, 40.05601517000008 ] } }, +{ "type": "Feature", "properties": { "objectid": 283656, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158581033999951, 40.013629201000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 283677, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.167754832999947, 40.031585718000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 283693, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136039903999972, 39.997396606000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 283780, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.209687158999941, 40.075806862000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 283781, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.225855137999986, 40.037819285000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 283806, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.983091655999942, 40.100493950000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 283818, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.105894097999965, 40.032299569000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 283884, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187604884999985, 40.036714248000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 283915, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.149786753999933, 39.998294119000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 283990, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.248697796999977, 39.89149752600008 ] } }, +{ "type": "Feature", "properties": { "objectid": 284021, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02183228399997, 40.11790854000003 ] } }, +{ "type": "Feature", "properties": { "objectid": 284088, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033961063999982, 40.057816046000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 284102, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148830822999969, 39.994799 ] } }, +{ "type": "Feature", "properties": { "objectid": 284158, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.03123349599997, 40.055079508000063 ] } }, +{ "type": "Feature", "properties": { "objectid": 284159, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.066685086999939, 40.010465877000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 284184, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.19746304399996, 40.054047170000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 284185, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229331671999944, 39.915249619000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 284254, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.990477211999973, 40.044815018000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 284261, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.235554904999958, 39.948507899000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 284285, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178175979999935, 39.913817197000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 284308, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.158846547999985, 39.996676138000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 284352, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.100403985999947, 40.048821529000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 284367, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223904258999937, 39.982057464000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 284379, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.990176216999942, 40.083982526000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 284412, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.018012595999949, 40.103125780000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 284481, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.986682105999989, 40.091791254000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 284526, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.056045378999954, 40.031460442000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 284540, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031396518999941, 40.051409402000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 284562, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.139550373999953, 39.974844695000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 284570, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184807559999967, 40.017359359000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 284635, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231469, 39.963942572000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 284664, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.15780209199994, 40.052754417000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 284764, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017842242999961, 40.103253935000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 284832, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180327424999973, 40.04502014500008 ] } }, +{ "type": "Feature", "properties": { "objectid": 284859, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.073384225999973, 40.058019701000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 284868, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146420704999969, 39.96468558600003 ] } }, +{ "type": "Feature", "properties": { "objectid": 284920, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.023190360999934, 40.116630203000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 284954, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.147159914999975, 40.05829441000003 ] } }, +{ "type": "Feature", "properties": { "objectid": 285029, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234367710999948, 40.059095601000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 285033, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078747041999975, 40.042180401000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 285038, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.196862221999936, 39.953343649000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 285093, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992862375999948, 40.044146867000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 285111, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040620832999934, 40.075405477000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 285149, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185222751999959, 39.993246438000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 285157, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.077248579999946, 40.024051245000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 285160, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128537407999943, 40.001579301000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 285194, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197127670999976, 40.06793143200008 ] } }, +{ "type": "Feature", "properties": { "objectid": 285221, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.077516992999961, 40.045121775000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 285233, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.041460054999959, 40.069757824000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 285253, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.11837462799997, 39.989452387000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 285273, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233817221999971, 39.956751404000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 285283, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.120617966999987, 39.990860966000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 285311, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.260654901999942, 39.971648775000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 285337, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198434082999938, 40.050339430000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 285419, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.25349910999995, 39.97968441900008 ] } }, +{ "type": "Feature", "properties": { "objectid": 285455, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200567307999961, 39.932184592000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 285467, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228430532999937, 40.062610867000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 285510, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249511171999984, 39.976440288000049 ] } }, +{ "type": "Feature", "properties": { "objectid": 285512, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129074569999943, 40.029903350000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 285514, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.067157814999973, 40.058773645000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 285566, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.126712125999973, 39.992305170000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 285581, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.22067104499996, 39.923206228000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 285649, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231468654999958, 40.072995439000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 285687, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169664274999946, 39.900248281000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 285711, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.99839555799997, 40.101646903000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 285787, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.116029251999976, 39.977069257000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 285857, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237971939999966, 40.051455526000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 285897, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144878093999978, 39.933447246000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 285928, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169251389999943, 39.995249947000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 285932, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.176523398999962, 40.065995696000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 285959, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128852979999976, 39.993488281000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 286145, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.247944143999973, 39.887410377000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 286154, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.227372852999963, 40.041629819000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 286222, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.10980783399998, 40.027391032000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 286224, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.055388902999937, 40.083422622000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 286225, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.026456907999943, 40.117504092000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 286346, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170425076999948, 39.989710483000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 286362, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183214884999984, 40.065814139000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 286419, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.150436404999937, 39.973462817000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 286451, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.093450260999987, 40.015108238000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 286475, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.062964909999948, 40.048395612000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 286487, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.09839610399996, 40.035982151000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 286665, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.216538483999955, 40.081920872000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 286682, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.053928418999988, 40.049246387000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 286726, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136681587999988, 40.061700976000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 286741, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.112352249999958, 40.000476567000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 286750, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.197469361999936, 40.076210626000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 286803, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.967744825999944, 40.081542315000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 286804, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.175728403999983, 40.067919677000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 286810, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.145528608999939, 39.984856713000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 286850, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.220158327999968, 39.953940442000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 286856, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.187118836999957, 40.010206414000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 286874, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141167564999989, 40.026813601000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 286953, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.079887378999956, 40.076871676000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 286976, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.17222987699995, 40.06838663700006 ] } }, +{ "type": "Feature", "properties": { "objectid": 286987, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.085976003999974, 40.008918766000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 286994, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.234522358999982, 39.917003276000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 287004, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.141125800999987, 40.045621493000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 287075, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.036966145999941, 40.095826257000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 287086, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.028459300999941, 40.044577832000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 287106, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.242161070999941, 39.891965424000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 287138, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.058052179999947, 40.065760682000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 287139, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.066795458999934, 40.010452402000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 287141, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223872477999976, 39.967206178000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 287142, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.224760081999989, 39.991362305000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 287162, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.992865138999946, 40.051314725000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 287173, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142401603999986, 40.028615085000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 287200, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.255888263999964, 39.978211258000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 287223, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.049280532999944, 40.045494339000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 287240, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.995613578999951, 40.072926912000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 287288, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.249936347999949, 40.044653784000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 287319, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.085818598999936, 40.008989915000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 287321, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.130243796999935, 40.038096220000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 287353, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.211359566999988, 40.068753411000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 287359, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.075259220999953, 40.060971652000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 287478, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168862854999986, 40.047873309000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 287503, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.984580492999953, 40.074238133000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 287516, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.106329512999935, 40.000319421000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 287541, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.012127634999956, 40.040507752000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 287567, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.989572579999958, 40.125414884000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 287640, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.194156588999988, 40.065898545000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 287719, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153504580999936, 39.939839997000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 287727, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.041150282, 40.091011590000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 287888, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128816598999947, 39.993497422000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 287927, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219487428999969, 39.98993458800004 ] } }, +{ "type": "Feature", "properties": { "objectid": 287938, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.246321901999977, 39.988360872000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 287939, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169846695999979, 39.893952653000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 287950, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.076399468999966, 40.008270500000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 287980, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201659633999952, 40.047946658000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 287993, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.033736291999958, 40.060799616000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 288010, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153412792999973, 40.042866199000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 288118, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.153472293999982, 39.946896796000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 288138, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.219804770999986, 39.973134580000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 288141, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.201459996999972, 40.052414077000037 ] } }, +{ "type": "Feature", "properties": { "objectid": 288144, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.041644524999981, 40.06984407300007 ] } }, +{ "type": "Feature", "properties": { "objectid": 288171, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.979340359999981, 40.075990577000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 288198, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16064989399996, 40.049671929000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 288309, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164283652999984, 39.931160372000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 288318, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.184363790999953, 39.971390494000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 288332, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.019173580999961, 40.132849042000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 288411, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144529795999972, 40.043845415000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 288461, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.12984838899996, 40.055629239000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 288480, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20076351199998, 40.041904689000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 288680, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981013915999938, 40.069426737000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 288695, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.12527277099997, 40.025728699000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 288733, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.213307332999989, 39.965531739000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 288735, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.222785517999966, 39.939676517000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 288882, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.110422367999945, 40.01016205500008 ] } }, +{ "type": "Feature", "properties": { "objectid": 288959, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.146462904999964, 39.988254888000029 ] } }, +{ "type": "Feature", "properties": { "objectid": 289056, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.16241796099996, 39.966035071000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 289168, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.989112751999983, 40.043791843000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 289177, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.170850833999964, 39.964413338000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 289304, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.038142720999986, 40.030937157000039 ] } }, +{ "type": "Feature", "properties": { "objectid": 289440, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.006435886999952, 40.061482058000024 ] } }, +{ "type": "Feature", "properties": { "objectid": 289467, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.087183451999977, 39.98615120200003 ] } }, +{ "type": "Feature", "properties": { "objectid": 289486, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.200076039999942, 40.058456842000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 289503, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.024245424999947, 40.088389147000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 289511, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.151061156999958, 40.047972105000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 289602, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.218498892999946, 40.028707173000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 289604, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.154190021999966, 40.011229704000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 289654, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.117105168999956, 39.998668782000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 289696, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.128925637999942, 40.029884723000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 289726, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.041519515999937, 40.09122239800007 ] } }, +{ "type": "Feature", "properties": { "objectid": 289786, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237385797999934, 39.992036209000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 289812, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129590558999951, 39.975774401000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 289823, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.240253321999944, 40.048109016000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 289944, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.129796109999972, 40.04927295300007 ] } }, +{ "type": "Feature", "properties": { "objectid": 289956, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.221525067999949, 39.999951141000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 290030, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.217683808999936, 40.022712739000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 290039, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078595464999978, 40.082089317000055 ] } }, +{ "type": "Feature", "properties": { "objectid": 290089, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162332812999978, 39.965932778000081 ] } }, +{ "type": "Feature", "properties": { "objectid": 290108, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.101588790999983, 40.018639925000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 290121, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.20711450999994, 40.058221937000042 ] } }, +{ "type": "Feature", "properties": { "objectid": 290169, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.031471431999989, 40.053363515000058 ] } }, +{ "type": "Feature", "properties": { "objectid": 290181, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.244808599999942, 39.952762225000072 ] } }, +{ "type": "Feature", "properties": { "objectid": 290212, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.064325917999952, 40.090698915000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 290233, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.051706391999971, 40.072162172000048 ] } }, +{ "type": "Feature", "properties": { "objectid": 290238, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.211611227999981, 40.019242516000077 ] } }, +{ "type": "Feature", "properties": { "objectid": 290243, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18866983099997, 40.048561359000075 ] } }, +{ "type": "Feature", "properties": { "objectid": 290293, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.173583950999955, 40.030320524000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 290298, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178574389999937, 40.076926084000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 290331, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.180727131999959, 40.052575211000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 290349, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.210380909999969, 39.971466454000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 290429, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.165397676999987, 39.914655151000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 290555, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183559376999938, 39.946897924000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 290601, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.040022870999962, 40.072662812000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 290603, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.989398664999953, 40.064013791000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 290752, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.157216625, 39.934916670000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 290756, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.144691252999962, 39.962783720000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 290794, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.195793694999963, 39.931468642000027 ] } }, +{ "type": "Feature", "properties": { "objectid": 290820, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143280761999961, 39.973936166000044 ] } }, +{ "type": "Feature", "properties": { "objectid": 290825, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.177493772999981, 39.961302194000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 290829, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.156263439999975, 40.023970450000036 ] } }, +{ "type": "Feature", "properties": { "objectid": 290830, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07992941599997, 40.065641796000079 ] } }, +{ "type": "Feature", "properties": { "objectid": 290855, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143299614999989, 39.969397032000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 290856, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.122955988999934, 40.013379667000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 290881, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.981917880999958, 40.092359145000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 290968, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.070154651999985, 40.081107293000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 290982, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078388648999976, 40.079834928000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 291013, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.18954555199997, 40.070989846000032 ] } }, +{ "type": "Feature", "properties": { "objectid": 291037, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.24153853699994, 39.892010737000078 ] } }, +{ "type": "Feature", "properties": { "objectid": 291038, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.174370056999976, 40.044291324000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 291052, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.046070153999949, 40.086184408000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 291089, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.078709212999968, 39.996571549000066 ] } }, +{ "type": "Feature", "properties": { "objectid": 291215, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.002682489999984, 40.066788695000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 291230, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185362640999983, 39.99326489300006 ] } }, +{ "type": "Feature", "properties": { "objectid": 291232, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.029604526999947, 40.035591996000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 291233, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.178301977999979, 39.952305883000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 291356, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.136684237999987, 40.019884180000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 291374, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.080207345999952, 40.065619360000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 291415, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.185464163999939, 40.009437007000031 ] } }, +{ "type": "Feature", "properties": { "objectid": 291424, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.087010397999961, 40.044886551000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 291427, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.13780159099997, 40.002746150000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 291467, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.966759022999952, 40.102874702000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 291470, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.237735204999979, 40.07015042200004 ] } }, +{ "type": "Feature", "properties": { "objectid": 291489, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.02134549799996, 40.119932315000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 291552, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.255006990999959, 39.894857845000047 ] } }, +{ "type": "Feature", "properties": { "objectid": 291600, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.072122155999978, 39.995844538000028 ] } }, +{ "type": "Feature", "properties": { "objectid": 291601, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.105928407999954, 40.032056926000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 291635, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.204510139999968, 39.975897620000069 ] } }, +{ "type": "Feature", "properties": { "objectid": 291714, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.125698841999963, 39.996397122000076 ] } }, +{ "type": "Feature", "properties": { "objectid": 291757, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.182946025999968, 39.90931708200003 ] } }, +{ "type": "Feature", "properties": { "objectid": 291763, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.017876176999948, 40.134163652000041 ] } }, +{ "type": "Feature", "properties": { "objectid": 291768, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.027988833999984, 40.115622288000054 ] } }, +{ "type": "Feature", "properties": { "objectid": 291812, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.163754093999955, 40.044902595000053 ] } }, +{ "type": "Feature", "properties": { "objectid": 291871, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228840758999979, 39.91692117000008 ] } }, +{ "type": "Feature", "properties": { "objectid": 291880, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.228904609999972, 39.975519133000034 ] } }, +{ "type": "Feature", "properties": { "objectid": 291907, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.148318020999966, 40.012005789000057 ] } }, +{ "type": "Feature", "properties": { "objectid": 291973, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.168185024999957, 40.008238365000068 ] } }, +{ "type": "Feature", "properties": { "objectid": 292020, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.229160042999979, 39.915159825000046 ] } }, +{ "type": "Feature", "properties": { "objectid": 292035, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.223631827999952, 40.092805416000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 292085, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -74.991556990999982, 40.043145572000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 292163, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.171443679999982, 40.02904718800005 ] } }, +{ "type": "Feature", "properties": { "objectid": 292234, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.162010555999984, 39.927207269000064 ] } }, +{ "type": "Feature", "properties": { "objectid": 292250, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.169851487999949, 39.893755776000035 ] } }, +{ "type": "Feature", "properties": { "objectid": 292255, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.07453062999997, 40.057022328000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 292285, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.143797640999935, 39.966996025000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 292315, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.123490140999934, 39.99612836700004 ] } }, +{ "type": "Feature", "properties": { "objectid": 292377, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.06894691499997, 40.044175037000059 ] } }, +{ "type": "Feature", "properties": { "objectid": 292383, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.14711243499994, 40.007051568000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 292389, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.23075960999995, 40.073752175000038 ] } }, +{ "type": "Feature", "properties": { "objectid": 292400, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.231715372999986, 40.06420539800007 ] } }, +{ "type": "Feature", "properties": { "objectid": 292440, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.233979856999952, 40.049348494000071 ] } }, +{ "type": "Feature", "properties": { "objectid": 292492, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.198639072999981, 40.076719582000067 ] } }, +{ "type": "Feature", "properties": { "objectid": 292550, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.164164294999978, 39.914583040000025 ] } }, +{ "type": "Feature", "properties": { "objectid": 292564, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.08813422299994, 40.033879676000026 ] } }, +{ "type": "Feature", "properties": { "objectid": 292575, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.181322912999974, 40.019920421000052 ] } }, +{ "type": "Feature", "properties": { "objectid": 292614, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.00491238799998, 40.062713842000051 ] } }, +{ "type": "Feature", "properties": { "objectid": 292628, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.183527630999947, 39.986605654000073 ] } }, +{ "type": "Feature", "properties": { "objectid": 292647, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": null, "last_edited_date": null }, "geometry": { "type": "Point", "coordinates": [ -75.142948085999933, 40.006853062000062 ] } }, +{ "type": "Feature", "properties": { "objectid": 292927, "status": "MISSING", "position": "MID_BLOCK", "captured": "AERIAL", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": "TRANSPORTATION", "created_date": "2021-03-04T16:54:50Z", "last_edited_user": "TRANSPORTATION", "last_edited_date": "2021-03-04T16:56:27Z" }, "geometry": { "type": "Point", "coordinates": [ -75.187126664999937, 39.942564031000074 ] } }, +{ "type": "Feature", "properties": { "objectid": 292936, "status": "MISSING", "position": "MID_BLOCK", "captured": "AERIAL", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": "TRANSPORTATION", "created_date": "2021-03-04T16:54:53Z", "last_edited_user": "TRANSPORTATION", "last_edited_date": "2021-03-04T16:57:31Z" }, "geometry": { "type": "Point", "coordinates": [ -75.187235586999975, 39.942577348000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 293053, "status": "MISSING", "position": "ISLAND_MEDIAN", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": "TRANSPORTATION", "last_edited_date": "2021-03-08T22:18:23Z" }, "geometry": { "type": "Point", "coordinates": [ -75.210342197999978, 40.085361535000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 293566, "status": "MISSING", "position": "UNKNOWN", "captured": "AERIAL", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": "TRANSPORTATION", "created_date": "2021-03-08T22:31:14Z", "last_edited_user": "PEDNETWORK_QC", "last_edited_date": "2021-09-17T21:51:09Z" }, "geometry": { "type": "Point", "coordinates": [ -75.212090209999985, 40.086072270000045 ] } }, +{ "type": "Feature", "properties": { "objectid": 293634, "status": "MISSING", "position": "MID_BLOCK", "captured": "AERIAL", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": "TRANSPORTATION", "created_date": "2021-03-09T16:27:06Z", "last_edited_user": "PEDNETWORK_QC", "last_edited_date": "2021-09-17T21:51:09Z" }, "geometry": { "type": "Point", "coordinates": [ -75.087744498999939, 40.063224074000061 ] } }, +{ "type": "Feature", "properties": { "objectid": 294880, "status": "MISSING", "position": "MID_BLOCK", "captured": "AERIAL", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": "TRANSPORTATION", "created_date": "2021-03-03T21:00:34Z", "last_edited_user": "PEDNETWORK_QC", "last_edited_date": "2021-09-30T18:15:11Z" }, "geometry": { "type": "Point", "coordinates": [ -75.181027349999965, 39.942164254000033 ] } }, +{ "type": "Feature", "properties": { "objectid": 294881, "status": "MISSING", "position": "MID_BLOCK", "captured": "AERIAL", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": "TRANSPORTATION", "created_date": "2021-03-03T21:00:57Z", "last_edited_user": "PEDNETWORK_QC", "last_edited_date": "2021-09-30T18:15:15Z" }, "geometry": { "type": "Point", "coordinates": [ -75.181031000999951, 39.942139575000056 ] } }, +{ "type": "Feature", "properties": { "objectid": 294935, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": "SEAN", "last_edited_date": "2022-04-06T15:42:20Z" }, "geometry": { "type": "Point", "coordinates": [ -75.225997950999954, 40.079115453000043 ] } }, +{ "type": "Feature", "properties": { "objectid": 294939, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": "SEAN", "last_edited_date": "2022-04-06T18:30:51Z" }, "geometry": { "type": "Point", "coordinates": [ -75.081765405999988, 40.001232936000065 ] } }, +{ "type": "Feature", "properties": { "objectid": 294960, "status": "MISSING", "position": "SINGLE DIRECTION", "captured": "OTHER", "state": "PA", "county": "PHILADELPHIA", "muni": "42 101 005", "community": null, "ada_comp": null, "dws": null, "created_user": null, "created_date": null, "last_edited_user": "SEAN", "last_edited_date": "2022-04-06T15:42:17Z" }, "geometry": { "type": "Point", "coordinates": [ -75.225953568999955, 40.079038358000048 ] } } +] +} diff --git a/data/sanitation_day.json b/data/sanitation_day.json new file mode 100644 index 0000000..ed8e17c --- /dev/null +++ b/data/sanitation_day.json @@ -0,0 +1,74 @@ +{ +"type": "FeatureCollection", +"name": "Rubbish_Recyc_Coll_Bnd", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "objectid": 1, "disday": "3CFRI", "sandis": "3C", "collday": "FRI", "Shape__Area": 4325531.671875, "Shape__Length": 9263.0758092268334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.176885837212794, 39.975516599509099 ], [ -75.177125310718395, 39.974336303847899 ], [ -75.177854457168607, 39.974257005608898 ], [ -75.177865653561597, 39.973841523432299 ], [ -75.177864722838393, 39.9724891000768 ], [ -75.177540508054093, 39.972446625210203 ], [ -75.177808285898806, 39.971217037086703 ], [ -75.178058464169595, 39.970121796744301 ], [ -75.178192346210395, 39.969507249475797 ], [ -75.178322983038797, 39.9688915021962 ], [ -75.178413493331902, 39.968455095699902 ], [ -75.178432825869706, 39.968398416544098 ], [ -75.178478158439702, 39.968153313949301 ], [ -75.1785154357419, 39.967975329183801 ], [ -75.178543331983406, 39.967842137905798 ], [ -75.178643452512901, 39.9674082577489 ], [ -75.178815614808798, 39.966637198917198 ], [ -75.179686559958597, 39.967425475313803 ], [ -75.181123553994098, 39.967471667232601 ], [ -75.186115599761294, 39.967277479870503 ], [ -75.186236276667501, 39.967367960790497 ], [ -75.186529108444802, 39.967575663696302 ], [ -75.186661685446694, 39.9676649810066 ], [ -75.186763075123494, 39.967729890497701 ], [ -75.186867833147801, 39.967791686466398 ], [ -75.186975609289803, 39.9678506818396 ], [ -75.187198671225403, 39.967961640036499 ], [ -75.1873516997737, 39.968031504605797 ], [ -75.187507114365204, 39.9680990300715 ], [ -75.188017610003797, 39.968312157443698 ], [ -75.188328347909405, 39.968444984171597 ], [ -75.188527506332207, 39.968522503898001 ], [ -75.189054729157306, 39.9687133566743 ], [ -75.189241774590599, 39.968784644603602 ], [ -75.189254420151698, 39.968789464296698 ], [ -75.189448671946906, 39.968870860739202 ], [ -75.189635055284398, 39.968960016448399 ], [ -75.189742096829605, 39.969018262017499 ], [ -75.189914291764794, 39.969123201689797 ], [ -75.190085703790402, 39.9692341702916 ], [ -75.190220879344295, 39.969327048007102 ], [ -75.190352779112601, 39.969423552020402 ], [ -75.190364768474097, 39.9694328944258 ], [ -75.190448699676296, 39.9694982985609 ], [ -75.190571447717801, 39.969601102541901 ], [ -75.190658873788195, 39.969680551895898 ], [ -75.190768119609601, 39.969789596708502 ], [ -75.190843786849001, 39.9698737040503 ], [ -75.190913414322495, 39.969959794906799 ], [ -75.190976405119002, 39.970047860482403 ], [ -75.191032540639199, 39.970137858972102 ], [ -75.191100768363796, 39.970260375070602 ], [ -75.191147850697703, 39.9703539549363 ], [ -75.191205706690397, 39.970480768136603 ], [ -75.191245768242396, 39.970577257524198 ], [ -75.191295273586107, 39.970707529934998 ], [ -75.191383357114603, 39.970972600961701 ], [ -75.191461273682407, 39.971241884475397 ], [ -75.191626791305396, 39.971851832414103 ], [ -75.191686878093293, 39.972053111986298 ], [ -75.191706705162304, 39.972113378237196 ], [ -75.191738862269204, 39.9722111174787 ], [ -75.191939586818094, 39.972699181160401 ], [ -75.1923884304301, 39.973807307025503 ], [ -75.192617827379394, 39.974359874445298 ], [ -75.192770755312395, 39.974716068322401 ], [ -75.192781479866497, 39.974740220048901 ], [ -75.192913982786706, 39.975038616626897 ], [ -75.192987989446294, 39.975199288987703 ], [ -75.193070758387407, 39.975362429772801 ], [ -75.193063645112503, 39.975363173184597 ], [ -75.192168871145896, 39.975463689097502 ], [ -75.191962761976498, 39.975486842253503 ], [ -75.191819436938502, 39.9755021836814 ], [ -75.1913366590273, 39.975553861018902 ], [ -75.190997581465595, 39.975540188633097 ], [ -75.190625452527797, 39.975495652 ], [ -75.1899634600409, 39.975412617162903 ], [ -75.189578818616496, 39.975534829581299 ], [ -75.189484303731504, 39.9755922485284 ], [ -75.189387781811007, 39.975669786281898 ], [ -75.189322397384004, 39.975748978348697 ], [ -75.189270458025007, 39.975835671264001 ], [ -75.189238270649298, 39.975928085735497 ], [ -75.189217484150603, 39.976049079611997 ], [ -75.189216977001195, 39.976128758880002 ], [ -75.189266577915106, 39.976277811288 ], [ -75.189545375325196, 39.976870656151199 ], [ -75.189676265994507, 39.977182883611697 ], [ -75.189718263232294, 39.977283062139598 ], [ -75.189784727900104, 39.977441605107899 ], [ -75.189883795597495, 39.9779429016533 ], [ -75.189662566461905, 39.978375479455799 ], [ -75.189433381071495, 39.978583229184899 ], [ -75.189310087725801, 39.978708196969002 ], [ -75.189235103451296, 39.9788099144873 ], [ -75.189163893761105, 39.979021188697502 ], [ -75.189064087686504, 39.979458782422697 ], [ -75.188663125797603, 39.981216721513398 ], [ -75.188540188449196, 39.981890490852599 ], [ -75.188370339503805, 39.982631477028399 ], [ -75.188205299863199, 39.983382577870401 ], [ -75.188035297539898, 39.984136065353503 ], [ -75.187952805003206, 39.984539650657403 ], [ -75.1877070220186, 39.985654606571302 ], [ -75.187599062112298, 39.986160525509199 ], [ -75.1874933860299, 39.986639121822002 ], [ -75.187385101238206, 39.987139970592096 ], [ -75.187276480929697, 39.9876507544258 ], [ -75.187174426307095, 39.988084293555303 ], [ -75.187062157528899, 39.988674505280798 ], [ -75.1863412768367, 39.988581885042798 ], [ -75.186001468770996, 39.988534970025697 ], [ -75.185384535614105, 39.988453010006097 ], [ -75.183797981460501, 39.9882454455893 ], [ -75.182396145663105, 39.988051479082301 ], [ -75.180597647851997, 39.987828475846698 ], [ -75.179995500214005, 39.987751263158302 ], [ -75.179537643230304, 39.987695891942302 ], [ -75.178972816103794, 39.9876227460813 ], [ -75.178374731558407, 39.987538731198299 ], [ -75.177546827834902, 39.987446944094103 ], [ -75.176785573813106, 39.987346411569099 ], [ -75.175412800306304, 39.987165108382101 ], [ -75.1749423722312, 39.9871014050497 ], [ -75.1743638716882, 39.987033389648801 ], [ -75.174696100775904, 39.985515719985003 ], [ -75.174797617176907, 39.985076174693198 ], [ -75.175028891937799, 39.984023425726498 ], [ -75.175315262009093, 39.982721270645001 ], [ -75.175346277660907, 39.982526726997399 ], [ -75.175556704417204, 39.981570361165801 ], [ -75.1756903904013, 39.980991691720298 ], [ -75.175790642025106, 39.980503772700999 ], [ -75.175884024353905, 39.980054293497197 ], [ -75.175991979904893, 39.9795818211092 ], [ -75.176068721822503, 39.979196341379698 ], [ -75.176141997080904, 39.978855774103202 ], [ -75.176215474687496, 39.978534603815497 ], [ -75.176302637598397, 39.978148166553702 ], [ -75.176376963189398, 39.977795211282 ], [ -75.176453167549894, 39.977461857279799 ], [ -75.176528627039104, 39.977136149644302 ], [ -75.176597808734201, 39.976782057167803 ], [ -75.176688710778606, 39.976387381794503 ], [ -75.176757208028903, 39.976055857768699 ], [ -75.176885837212794, 39.975516599509099 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 2, "disday": "3CMON", "sandis": "3C", "collday": "MON", "Shape__Area": 4786896.203125, "Shape__Length": 13649.662119744275 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.154394401750196, 39.994880363799702 ], [ -75.154590455351794, 39.993947635307599 ], [ -75.154657596580805, 39.993653080664899 ], [ -75.154951852490498, 39.992362141415299 ], [ -75.155272835383698, 39.990862374069899 ], [ -75.155501670639694, 39.989802481488802 ], [ -75.155595050932305, 39.989378567535901 ], [ -75.155937668182901, 39.9878866266397 ], [ -75.156278074029103, 39.986292712770599 ], [ -75.156615680478097, 39.984708102795999 ], [ -75.156917548909504, 39.983229042571203 ], [ -75.157257244634295, 39.981702891421698 ], [ -75.157584568090996, 39.980232264584501 ], [ -75.157917399192002, 39.978716933140703 ], [ -75.158241394690194, 39.977289521864499 ], [ -75.158229701048896, 39.977225178298198 ], [ -75.1585287692577, 39.975859615140799 ], [ -75.158785066709996, 39.974491808880998 ], [ -75.159059475634905, 39.973214198454897 ], [ -75.159239413075298, 39.972393338279801 ], [ -75.159443796007096, 39.971476329006201 ], [ -75.159705062532794, 39.9702111791742 ], [ -75.159979065481394, 39.969004364451003 ], [ -75.1600751261781, 39.968608912032003 ], [ -75.160161959744102, 39.968186389261803 ], [ -75.160216093077807, 39.967897726835503 ], [ -75.160408805585007, 39.967039371331701 ], [ -75.16048516683, 39.966679536370599 ], [ -75.160564050880296, 39.966303385025299 ], [ -75.160680113186004, 39.965779874268499 ], [ -75.160807639985094, 39.965168213443299 ], [ -75.160960684201399, 39.9644787560647 ], [ -75.161055779755003, 39.964050023831703 ], [ -75.161111820775602, 39.963798040411099 ], [ -75.161190965542005, 39.963431706718403 ], [ -75.161263278285602, 39.963135955877398 ], [ -75.161305353355502, 39.962903117437698 ], [ -75.161386020815101, 39.962483338143201 ], [ -75.161383373954294, 39.962326755556703 ], [ -75.161414601916405, 39.962111804420402 ], [ -75.161478840717095, 39.961798520436801 ], [ -75.161508321501998, 39.961669115663703 ], [ -75.161555805303493, 39.961451095679799 ], [ -75.161648502290305, 39.9610305586991 ], [ -75.161775321692105, 39.960430886311798 ], [ -75.161962691736804, 39.959580210335197 ], [ -75.162060954286403, 39.9591102238182 ], [ -75.162121068964296, 39.958830916702098 ], [ -75.162178101311795, 39.958556593839901 ], [ -75.162296186390506, 39.958067340061397 ], [ -75.162319553881701, 39.957939367721004 ], [ -75.1623386795154, 39.957834631529998 ], [ -75.162473871121705, 39.957851101414597 ], [ -75.164125760015096, 39.9580523308531 ], [ -75.165645288139999, 39.958237415221703 ], [ -75.165659781525093, 39.958239180629199 ], [ -75.167121282391506, 39.9584171761134 ], [ -75.167224680128399, 39.958438713572399 ], [ -75.167236616004601, 39.958440183334297 ], [ -75.168829730936594, 39.958636297357302 ], [ -75.169611636872901, 39.958730649367197 ], [ -75.170402291650802, 39.958825045852201 ], [ -75.170404318563797, 39.9588252878482 ], [ -75.171916459384406, 39.959005806443102 ], [ -75.171984816490607, 39.9590139667717 ], [ -75.171994892824401, 39.9590151698958 ], [ -75.172004135789194, 39.9590162732013 ], [ -75.171993016301499, 39.959046695651097 ], [ -75.171991314543305, 39.959056058589901 ], [ -75.171982531104803, 39.959104371804997 ], [ -75.171966163734197, 39.959150379197403 ], [ -75.171913651518494, 39.959297978196098 ], [ -75.171753643633807, 39.960039201130101 ], [ -75.171681869484701, 39.960352260964498 ], [ -75.171585866541903, 39.960804838873798 ], [ -75.171499313409299, 39.961187518505497 ], [ -75.171397218646305, 39.961629288682303 ], [ -75.171266238034704, 39.962266033212103 ], [ -75.17119666312, 39.9625850105636 ], [ -75.171067522831905, 39.963177064554401 ], [ -75.170987881345297, 39.963583777942503 ], [ -75.170961756533899, 39.963701206426997 ], [ -75.170877201646405, 39.964081273549802 ], [ -75.170804147322798, 39.964358654688397 ], [ -75.170746014675402, 39.964632896921103 ], [ -75.170683291378396, 39.964984580814402 ], [ -75.170525982898596, 39.965669577760799 ], [ -75.170368067878101, 39.966354952855198 ], [ -75.170298614100503, 39.966672892770198 ], [ -75.170248604894496, 39.9669018162462 ], [ -75.170179436509599, 39.967259789182698 ], [ -75.170780121091894, 39.967268826192502 ], [ -75.171346562568203, 39.967284337340402 ], [ -75.170998813794597, 39.969236944145202 ], [ -75.170815087691096, 39.970266892960602 ], [ -75.170800637308503, 39.970342201066401 ], [ -75.170683315779499, 39.970902459784398 ], [ -75.170553739822196, 39.971579280136702 ], [ -75.170504806636302, 39.971893034086499 ], [ -75.1704441803858, 39.972177415200903 ], [ -75.170302635256604, 39.972881446315199 ], [ -75.168996425958895, 39.972710223545498 ], [ -75.167424014183894, 39.972502104439897 ], [ -75.166541448188099, 39.972389664722897 ], [ -75.1663394222916, 39.972364364840502 ], [ -75.165853665112493, 39.9723031634432 ], [ -75.165653505653097, 39.973225426636603 ], [ -75.165566445175699, 39.973611831463103 ], [ -75.165463666003504, 39.974042840180701 ], [ -75.165389648904295, 39.974397132761297 ], [ -75.165358314662896, 39.974538548681103 ], [ -75.1653233696115, 39.974677320777097 ], [ -75.1652983876793, 39.974753049769298 ], [ -75.165262468736202, 39.9749421829003 ], [ -75.165186355029405, 39.975308800906902 ], [ -75.165113932558597, 39.975712515742302 ], [ -75.165001643076494, 39.976207880312202 ], [ -75.164890819172797, 39.976677834038199 ], [ -75.164583164937, 39.978104278426301 ], [ -75.164274601649694, 39.979527495923598 ], [ -75.163937577541901, 39.981047203690402 ], [ -75.163618755412699, 39.982538817305297 ], [ -75.163505743524695, 39.983059793923097 ], [ -75.163404470443794, 39.983524991841797 ], [ -75.163289422947003, 39.984043112158297 ], [ -75.163187670835697, 39.984480832573396 ], [ -75.163091450194898, 39.9849278814782 ], [ -75.162953019947096, 39.985551802482803 ], [ -75.162866960976999, 39.985943904793203 ], [ -75.162815508454401, 39.986204300874498 ], [ -75.162724863850201, 39.9866314997278 ], [ -75.162613994292002, 39.987121220002798 ], [ -75.162273758081398, 39.988714554902401 ], [ -75.161950231900704, 39.990194572038902 ], [ -75.161616184166903, 39.991695021451697 ], [ -75.161293497866396, 39.993181326341499 ], [ -75.161084997176104, 39.994140452618097 ], [ -75.160948669150102, 39.994746204320897 ], [ -75.159920727497493, 39.994600837154003 ], [ -75.159324521323398, 39.994807263088497 ], [ -75.157561924473896, 39.9954602084592 ], [ -75.156318677785706, 39.9959148255546 ], [ -75.1561484556495, 39.995974438771498 ], [ -75.155953690094407, 39.9960426469355 ], [ -75.155561716373299, 39.9961892120185 ], [ -75.1539872246816, 39.996791166273802 ], [ -75.154144322235396, 39.996000806614298 ], [ -75.154255730624698, 39.995534830756696 ], [ -75.154320992460697, 39.995231201051901 ], [ -75.154394401750196, 39.994880363799702 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 3, "disday": "3CTHU", "sandis": "3C", "collday": "THU", "Shape__Area": 5144205.6328125, "Shape__Length": 9265.0960950731132 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.173990081765396, 39.988784302592897 ], [ -75.1743638716882, 39.987033389648801 ], [ -75.1749423722312, 39.9871014050497 ], [ -75.175412800306304, 39.987165108382101 ], [ -75.176785573813106, 39.987346411569099 ], [ -75.177546827834902, 39.987446944094103 ], [ -75.178374731558407, 39.987538731198299 ], [ -75.178972816103794, 39.9876227460813 ], [ -75.179537643230304, 39.987695891942302 ], [ -75.179995500214005, 39.987751263158302 ], [ -75.180597647851997, 39.987828475846698 ], [ -75.182396145663105, 39.988051479082301 ], [ -75.183797981460501, 39.9882454455893 ], [ -75.185384535614105, 39.988453010006097 ], [ -75.186001468770996, 39.988534970025697 ], [ -75.1863412768367, 39.988581885042798 ], [ -75.187062157528899, 39.988674505280798 ], [ -75.186716307514104, 39.990224416148102 ], [ -75.186373994500798, 39.991786243596799 ], [ -75.186151134961904, 39.992671590508898 ], [ -75.186488194740804, 39.993357387227199 ], [ -75.186977837561798, 39.994353609418503 ], [ -75.187263447464403, 39.9949562962179 ], [ -75.187558655975593, 39.995838643267199 ], [ -75.187585635281195, 39.996051195103199 ], [ -75.187610463628801, 39.996440984897497 ], [ -75.187611749008994, 39.996584277502997 ], [ -75.187607617986501, 39.998204846764501 ], [ -75.187591781060206, 39.998569527706103 ], [ -75.187558704418606, 39.998652781350899 ], [ -75.187034394420394, 39.9999830445146 ], [ -75.1869552543628, 40.000194140797497 ], [ -75.186863266466105, 40.000418490527402 ], [ -75.186789504299796, 40.0005983895431 ], [ -75.186713854317503, 40.000792037200199 ], [ -75.186683450834394, 40.000885514597897 ], [ -75.186668874725001, 40.000955231714798 ], [ -75.186663508674101, 40.001018266274698 ], [ -75.1866732524729, 40.001116084674699 ], [ -75.1866917558079, 40.001179651312398 ], [ -75.187088892132707, 40.0024062335292 ], [ -75.187165451493598, 40.002642670635304 ], [ -75.187174756739495, 40.0026834129226 ], [ -75.187182329121597, 40.002725926649497 ], [ -75.1871867873665, 40.002781477821301 ], [ -75.187181623035897, 40.002852958442197 ], [ -75.187219700628603, 40.0028820253535 ], [ -75.187252616553096, 40.002913006996899 ], [ -75.187281925272998, 40.002970121135199 ], [ -75.187305384829997, 40.003043236343601 ], [ -75.187337043742403, 40.003223865364198 ], [ -75.187350727306196, 40.003335105634001 ], [ -75.187433024715205, 40.004650686279099 ], [ -75.187456061675803, 40.004975408397499 ], [ -75.187824019667801, 40.006111617955597 ], [ -75.188103189011997, 40.006434682814799 ], [ -75.187727785330196, 40.006755420775299 ], [ -75.187518573236005, 40.006944271670498 ], [ -75.183100890464303, 40.007150410773697 ], [ -75.182594566772394, 40.007174108704099 ], [ -75.182252869206394, 40.007189867967703 ], [ -75.181911166364699, 40.007205575643603 ], [ -75.181569471312699, 40.007221350957302 ], [ -75.181227793737705, 40.007237309454801 ], [ -75.180886147871107, 40.007253570388301 ], [ -75.180544544498005, 40.007270251130699 ], [ -75.180202995605995, 40.007287468181197 ], [ -75.179861646326799, 40.007307453888501 ], [ -75.179521306437294, 40.007335711736197 ], [ -75.179485771076202, 40.007339659937003 ], [ -75.179182580615105, 40.007373350003903 ], [ -75.178844328559094, 40.007414060425297 ], [ -75.1785053182561, 40.0074504947004 ], [ -75.178189548271703, 40.007482742610101 ], [ -75.178165975396396, 40.007485150047103 ], [ -75.177826754367601, 40.007520414409697 ], [ -75.177488033704805, 40.0075583262484 ], [ -75.177149494700402, 40.0075978954238 ], [ -75.176811718540407, 40.007640820755299 ], [ -75.176475658899406, 40.007690224908799 ], [ -75.176279565266697, 40.007724970883899 ], [ -75.176142049754105, 40.0077493373621 ], [ -75.175810258226505, 40.007814450704103 ], [ -75.175480568739204, 40.007885230747902 ], [ -75.175153515929907, 40.007963025703901 ], [ -75.174827518933995, 40.008043484292102 ], [ -75.174503132718499, 40.008127574044003 ], [ -75.174181980785306, 40.008218456107699 ], [ -75.173864336316996, 40.008316741220703 ], [ -75.173546961056303, 40.0084156261846 ], [ -75.173230595369205, 40.008516442195003 ], [ -75.172921457804904, 40.008628965170402 ], [ -75.172891586388999, 40.008640910632998 ], [ -75.172878234769797, 40.008626281234797 ], [ -75.172212180484394, 40.007907809919203 ], [ -75.171786754286501, 40.0074331327992 ], [ -75.171498604323205, 40.007078761631398 ], [ -75.170816015128594, 40.006179015581502 ], [ -75.170088954663399, 40.0051953877852 ], [ -75.169506978482104, 40.004408017684298 ], [ -75.1694218809197, 40.004312632837298 ], [ -75.168945404957697, 40.003669784777898 ], [ -75.169109026755194, 40.003623017379802 ], [ -75.169442075831597, 40.002109728772503 ], [ -75.169540800462002, 40.001692386545798 ], [ -75.169617571489994, 40.0013193266537 ], [ -75.169679800892794, 40.001056519443601 ], [ -75.169757443628498, 40.000631224803797 ], [ -75.170090632416503, 39.9991258857807 ], [ -75.170422913784193, 39.997627667981 ], [ -75.170770408245502, 39.996045294274403 ], [ -75.170905145766596, 39.995417482658702 ], [ -75.170999977820799, 39.994977864585699 ], [ -75.171117870634305, 39.994453528710899 ], [ -75.171232829230505, 39.9938934169707 ], [ -75.171322573699896, 39.9934914449654 ], [ -75.171443300838604, 39.992956007162697 ], [ -75.171597029581704, 39.992209551790097 ], [ -75.171756550262799, 39.991462963272603 ], [ -75.171877244224405, 39.990917970046198 ], [ -75.171905328132198, 39.990803045018602 ], [ -75.171983637348802, 39.990729788265703 ], [ -75.173205624501904, 39.990118749900702 ], [ -75.173767388405295, 39.989827400879598 ], [ -75.173990081765396, 39.988784302592897 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 4, "disday": "3CTUE", "sandis": "3C", "collday": "TUE", "Shape__Area": 5830945.46484375, "Shape__Length": 11342.537374192467 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.150098271083806, 40.014577303273903 ], [ -75.150205385058797, 40.013996085621798 ], [ -75.150247432022198, 40.013771153160498 ], [ -75.150396908182898, 40.013175222225897 ], [ -75.150575571768599, 40.012379618539001 ], [ -75.150885615913097, 40.010846462311598 ], [ -75.151093326153003, 40.009943683455397 ], [ -75.151248688451702, 40.009288306864399 ], [ -75.1513714226529, 40.008736639488198 ], [ -75.151455656316898, 40.008312743546099 ], [ -75.151605276942902, 40.007674637109098 ], [ -75.151923332658995, 40.006176598929002 ], [ -75.152237940685495, 40.004699034316801 ], [ -75.152552519511403, 40.003190912169202 ], [ -75.152928293101198, 40.001602016253202 ], [ -75.153273554521405, 40.000014037531798 ], [ -75.153377413557905, 39.999543791904799 ], [ -75.153432206765601, 39.999330977279598 ], [ -75.153518534912905, 39.998951755942301 ], [ -75.153567950016694, 39.998732992736699 ], [ -75.153611215595504, 39.998524671983901 ], [ -75.153784062213305, 39.997727814847501 ], [ -75.1539872246816, 39.996791166273802 ], [ -75.155561716373299, 39.9961892120185 ], [ -75.155953690094407, 39.9960426469355 ], [ -75.1561484556495, 39.995974438771498 ], [ -75.156318677785706, 39.9959148255546 ], [ -75.157561924473896, 39.9954602084592 ], [ -75.159324521323398, 39.994807263088497 ], [ -75.159920727497493, 39.994600837154003 ], [ -75.160948669150102, 39.994746204320897 ], [ -75.161352424924701, 39.994821345945603 ], [ -75.161633800801596, 39.994857720205097 ], [ -75.161860612811395, 39.994887039341599 ], [ -75.162545422668003, 39.9949773424648 ], [ -75.163196190246694, 39.995071267653103 ], [ -75.164052933650495, 39.994734391394303 ], [ -75.164284996166202, 39.994616424228298 ], [ -75.168066641585199, 39.9927262984599 ], [ -75.168250394825606, 39.992588751695799 ], [ -75.168493680613096, 39.992516956171201 ], [ -75.169762289666906, 39.991869103169101 ], [ -75.170081772325602, 39.991706918310101 ], [ -75.1702006080302, 39.991646591325498 ], [ -75.170786149644101, 39.991343856832501 ], [ -75.171142715088394, 39.991159031006902 ], [ -75.171983637348802, 39.990729788265703 ], [ -75.171905328132198, 39.990803045018602 ], [ -75.171877244224405, 39.990917970046198 ], [ -75.171756550262799, 39.991462963272603 ], [ -75.171597029581704, 39.992209551790097 ], [ -75.171443300838604, 39.992956007162697 ], [ -75.171322573699896, 39.9934914449654 ], [ -75.171232829230505, 39.9938934169707 ], [ -75.171117870634305, 39.994453528710899 ], [ -75.170999977820799, 39.994977864585699 ], [ -75.170905145766596, 39.995417482658702 ], [ -75.170770408245502, 39.996045294274403 ], [ -75.170422913784193, 39.997627667981 ], [ -75.170090632416503, 39.9991258857807 ], [ -75.169757443628498, 40.000631224803797 ], [ -75.169679800892794, 40.001056519443601 ], [ -75.169617571489994, 40.0013193266537 ], [ -75.169540800462002, 40.001692386545798 ], [ -75.169442075831597, 40.002109728772503 ], [ -75.169109026755194, 40.003623017379802 ], [ -75.168945404957697, 40.003669784777898 ], [ -75.1694218809197, 40.004312632837298 ], [ -75.169506978482104, 40.004408017684298 ], [ -75.170088954663399, 40.0051953877852 ], [ -75.170816015128594, 40.006179015581502 ], [ -75.171498604323205, 40.007078761631398 ], [ -75.171786754286501, 40.0074331327992 ], [ -75.172212180484394, 40.007907809919203 ], [ -75.172878234769797, 40.008626281234797 ], [ -75.172891586388999, 40.008640910632998 ], [ -75.172617766194804, 40.008750414284599 ], [ -75.1723167565452, 40.008876063886603 ], [ -75.172016563986205, 40.0090026600149 ], [ -75.171719854322404, 40.0091340549032 ], [ -75.171430708494697, 40.0092748786345 ], [ -75.171142596917605, 40.0094169755005 ], [ -75.1708548006401, 40.009559468891503 ], [ -75.170567268234294, 40.009702293682501 ], [ -75.170279947067996, 40.009845385622199 ], [ -75.170123616587901, 40.0099233947724 ], [ -75.169992785714896, 40.009988679584502 ], [ -75.1697057327832, 40.010132109542802 ], [ -75.169418736813796, 40.010275611270401 ], [ -75.169131744040399, 40.010419119587297 ], [ -75.168844704244506, 40.010562568491302 ], [ -75.168557565934293, 40.010705894654699 ], [ -75.1682702765507, 40.010849032021802 ], [ -75.167939518975402, 40.011015209465597 ], [ -75.167779474749395, 40.011095612514197 ], [ -75.167652939277602, 40.0111591803268 ], [ -75.167366352681995, 40.0113031458393 ], [ -75.167079761598899, 40.011447104254998 ], [ -75.166793165891093, 40.011591059174997 ], [ -75.166506565592996, 40.011735009699002 ], [ -75.166219961875299, 40.011878955853298 ], [ -75.165933354669505, 40.0120228994383 ], [ -75.165646745112198, 40.012166841380697 ], [ -75.165360134408402, 40.012310780806501 ], [ -75.165073521318703, 40.012454719489803 ], [ -75.1647869069797, 40.012598658357199 ], [ -75.164500293767205, 40.012742596561402 ], [ -75.164213679236795, 40.012886536750102 ], [ -75.163927065764099, 40.013030478075898 ], [ -75.1636404544859, 40.0131744214655 ], [ -75.1633538441626, 40.0133183686929 ], [ -75.163067237170097, 40.013462318910697 ], [ -75.162780633439695, 40.0136062739195 ], [ -75.1624940330058, 40.013750232819 ], [ -75.162207435799601, 40.013894197409599 ], [ -75.161987293515907, 40.014004787225502 ], [ -75.161974107803104, 40.014011411619002 ], [ -75.161920844128304, 40.014038168644603 ], [ -75.161894323304296, 40.014051493337298 ], [ -75.161634257957701, 40.014182147424002 ], [ -75.161347677321899, 40.014326132847799 ], [ -75.161061103322993, 40.0144701267429 ], [ -75.160774535960996, 40.014614129109297 ], [ -75.160487976337905, 40.014758141774003 ], [ -75.160201424487994, 40.014902163836702 ], [ -75.159914881513302, 40.015046197124498 ], [ -75.159628347413701, 40.015190241637399 ], [ -75.159341823325605, 40.0153342983022 ], [ -75.159056713249598, 40.0154802359718 ], [ -75.158774521926404, 40.015629923985202 ], [ -75.158480782897996, 40.015763813578701 ], [ -75.158170063720902, 40.015874721672901 ], [ -75.157855218915003, 40.015978840358798 ], [ -75.157730429031105, 40.016019802613997 ], [ -75.156655710824495, 40.014627507048203 ], [ -75.155188361898496, 40.015304522343499 ], [ -75.153852446565907, 40.015901021071002 ], [ -75.153248711173006, 40.0161833793928 ], [ -75.151535179020598, 40.0169847455482 ], [ -75.151210327719298, 40.017123126213598 ], [ -75.150305312039805, 40.0175469066684 ], [ -75.149349276920404, 40.017966917177702 ], [ -75.149588638686794, 40.016941698757101 ], [ -75.149728962120406, 40.0162240867379 ], [ -75.149772184912607, 40.016030882479001 ], [ -75.149841567294303, 40.015681231126202 ], [ -75.149933994314395, 40.015334787516501 ], [ -75.150041397422598, 40.014827779026596 ], [ -75.150072739290906, 40.014689750746399 ], [ -75.150098271083806, 40.014577303273903 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 5, "disday": "3CWED", "sandis": "3C", "collday": "WED", "Shape__Area": 5968291.33984375, "Shape__Length": 14169.390160161398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.165653505653097, 39.973225426636603 ], [ -75.165853665112493, 39.9723031634432 ], [ -75.1663394222916, 39.972364364840502 ], [ -75.166541448188099, 39.972389664722897 ], [ -75.167424014183894, 39.972502104439897 ], [ -75.168996425958895, 39.972710223545498 ], [ -75.170302635256604, 39.972881446315199 ], [ -75.1704441803858, 39.972177415200903 ], [ -75.170504806636302, 39.971893034086499 ], [ -75.170553739822196, 39.971579280136702 ], [ -75.170683315779499, 39.970902459784398 ], [ -75.170800637308503, 39.970342201066401 ], [ -75.170815087691096, 39.970266892960602 ], [ -75.170998813794597, 39.969236944145202 ], [ -75.171346562568203, 39.967284337340402 ], [ -75.170780121091894, 39.967268826192502 ], [ -75.170179436509599, 39.967259789182698 ], [ -75.170248604894496, 39.9669018162462 ], [ -75.170298614100503, 39.966672892770198 ], [ -75.170368067878101, 39.966354952855198 ], [ -75.170525982898596, 39.965669577760799 ], [ -75.170683291378396, 39.964984580814402 ], [ -75.170746014675402, 39.964632896921103 ], [ -75.170804147322798, 39.964358654688397 ], [ -75.170877201646405, 39.964081273549802 ], [ -75.170961756533899, 39.963701206426997 ], [ -75.170987881345297, 39.963583777942503 ], [ -75.171067522831905, 39.963177064554401 ], [ -75.17119666312, 39.9625850105636 ], [ -75.171266238034704, 39.962266033212103 ], [ -75.171397218646305, 39.961629288682303 ], [ -75.171499313409299, 39.961187518505497 ], [ -75.171585866541903, 39.960804838873798 ], [ -75.171681869484701, 39.960352260964498 ], [ -75.171753643633807, 39.960039201130101 ], [ -75.171913651518494, 39.959297978196098 ], [ -75.171966163734197, 39.959150379197403 ], [ -75.171982531104803, 39.959104371804997 ], [ -75.171991314543305, 39.959056058589901 ], [ -75.171993016301499, 39.959046695651097 ], [ -75.172004135789194, 39.9590162732013 ], [ -75.172193808942694, 39.959038914041599 ], [ -75.172669794561202, 39.959111495990904 ], [ -75.172680068968205, 39.959112694493903 ], [ -75.173890774930101, 39.959253862897498 ], [ -75.173897273699694, 39.9592546206108 ], [ -75.174298385233399, 39.9593061994455 ], [ -75.175485573815905, 39.959457314280101 ], [ -75.175487368270694, 39.959457542859901 ], [ -75.178192554830602, 39.959811913677598 ], [ -75.178204828390705, 39.959813413284003 ], [ -75.1790813841626, 39.959920507849098 ], [ -75.179177336440702, 39.959932230335802 ], [ -75.179281299053301, 39.959944931427302 ], [ -75.179726869979504, 39.959965619422 ], [ -75.179822646858696, 39.959973563999398 ], [ -75.179852907582898, 39.960026185221203 ], [ -75.179903775750404, 39.960114642688303 ], [ -75.1799165963901, 39.960136936195298 ], [ -75.180078986966805, 39.960380325808003 ], [ -75.180247289067694, 39.960619882221401 ], [ -75.180421823171201, 39.960857596613202 ], [ -75.1806016853931, 39.961093562238801 ], [ -75.180809270850006, 39.961357049862798 ], [ -75.181021166025303, 39.961618575664602 ], [ -75.181284121990402, 39.961935750910797 ], [ -75.181550555921902, 39.9622499759598 ], [ -75.1818278971122, 39.962558466273997 ], [ -75.182087706625694, 39.962835074947598 ], [ -75.182719892667805, 39.963494627276901 ], [ -75.183029088268, 39.963827857159899 ], [ -75.183252888825294, 39.964081830356399 ], [ -75.183348401442103, 39.964196696051097 ], [ -75.183470730453905, 39.964350353547403 ], [ -75.183543094791006, 39.964444193359199 ], [ -75.183878713464694, 39.964895573806203 ], [ -75.184105401418904, 39.965200445654197 ], [ -75.184210185629794, 39.9653516330917 ], [ -75.184226281306707, 39.965375822041302 ], [ -75.184413602920998, 39.965657333587401 ], [ -75.184519125168293, 39.965807959665199 ], [ -75.184631784162505, 39.9659545122569 ], [ -75.184729365011805, 39.966067515490003 ], [ -75.184835386900602, 39.966175732869999 ], [ -75.185058112154607, 39.966387235197502 ], [ -75.185258403111902, 39.9665703529461 ], [ -75.185263101811898, 39.9665744890927 ], [ -75.185463665893195, 39.966751052310897 ], [ -75.185673832006202, 39.966928759592797 ], [ -75.185807291280895, 39.967037203571401 ], [ -75.185857822043999, 39.967078262854599 ], [ -75.186045317799696, 39.967224783411098 ], [ -75.186115599761294, 39.967277479870503 ], [ -75.181123553994098, 39.967471667232601 ], [ -75.179686559958597, 39.967425475313803 ], [ -75.178815614808798, 39.966637198917198 ], [ -75.178643452512901, 39.9674082577489 ], [ -75.178543331983406, 39.967842137905798 ], [ -75.1785154357419, 39.967975329183801 ], [ -75.178478158439702, 39.968153313949301 ], [ -75.178432825869706, 39.968398416544098 ], [ -75.178413493331902, 39.968455095699902 ], [ -75.178322983038797, 39.9688915021962 ], [ -75.178192346210395, 39.969507249475797 ], [ -75.178058464169595, 39.970121796744301 ], [ -75.177808285898806, 39.971217037086703 ], [ -75.177540508054093, 39.972446625210203 ], [ -75.177864722838393, 39.9724891000768 ], [ -75.177865653561597, 39.973841523432299 ], [ -75.177854457168607, 39.974257005608898 ], [ -75.177125310718395, 39.974336303847899 ], [ -75.176885837212794, 39.975516599509099 ], [ -75.176757208028903, 39.976055857768699 ], [ -75.176688710778606, 39.976387381794503 ], [ -75.176597808734201, 39.976782057167803 ], [ -75.176528627039104, 39.977136149644302 ], [ -75.176453167549894, 39.977461857279799 ], [ -75.176376963189398, 39.977795211282 ], [ -75.176302637598397, 39.978148166553702 ], [ -75.176215474687496, 39.978534603815497 ], [ -75.176141997080904, 39.978855774103202 ], [ -75.176068721822503, 39.979196341379698 ], [ -75.175991979904893, 39.9795818211092 ], [ -75.175884024353905, 39.980054293497197 ], [ -75.175790642025106, 39.980503772700999 ], [ -75.1756903904013, 39.980991691720298 ], [ -75.175556704417204, 39.981570361165801 ], [ -75.175346277660907, 39.982526726997399 ], [ -75.175315262009093, 39.982721270645001 ], [ -75.175028891937799, 39.984023425726498 ], [ -75.174797617176907, 39.985076174693198 ], [ -75.174696100775904, 39.985515719985003 ], [ -75.1743638716882, 39.987033389648801 ], [ -75.173990081765396, 39.988784302592897 ], [ -75.173767388405295, 39.989827400879598 ], [ -75.173205624501904, 39.990118749900702 ], [ -75.171983637348802, 39.990729788265703 ], [ -75.171142715088394, 39.991159031006902 ], [ -75.170786149644101, 39.991343856832501 ], [ -75.1702006080302, 39.991646591325498 ], [ -75.170081772325602, 39.991706918310101 ], [ -75.169762289666906, 39.991869103169101 ], [ -75.168493680613096, 39.992516956171201 ], [ -75.168250394825606, 39.992588751695799 ], [ -75.168066641585199, 39.9927262984599 ], [ -75.164284996166202, 39.994616424228298 ], [ -75.164052933650495, 39.994734391394303 ], [ -75.163196190246694, 39.995071267653103 ], [ -75.162545422668003, 39.9949773424648 ], [ -75.161860612811395, 39.994887039341599 ], [ -75.161633800801596, 39.994857720205097 ], [ -75.161352424924701, 39.994821345945603 ], [ -75.160948669150102, 39.994746204320897 ], [ -75.161084997176104, 39.994140452618097 ], [ -75.161293497866396, 39.993181326341499 ], [ -75.161616184166903, 39.991695021451697 ], [ -75.161950231900704, 39.990194572038902 ], [ -75.162273758081398, 39.988714554902401 ], [ -75.162613994292002, 39.987121220002798 ], [ -75.162724863850201, 39.9866314997278 ], [ -75.162815508454401, 39.986204300874498 ], [ -75.162866960976999, 39.985943904793203 ], [ -75.162953019947096, 39.985551802482803 ], [ -75.163091450194898, 39.9849278814782 ], [ -75.163187670835697, 39.984480832573396 ], [ -75.163289422947003, 39.984043112158297 ], [ -75.163404470443794, 39.983524991841797 ], [ -75.163505743524695, 39.983059793923097 ], [ -75.163618755412699, 39.982538817305297 ], [ -75.163937577541901, 39.981047203690402 ], [ -75.164274601649694, 39.979527495923598 ], [ -75.164583164937, 39.978104278426301 ], [ -75.164890819172797, 39.976677834038199 ], [ -75.165001643076494, 39.976207880312202 ], [ -75.165113932558597, 39.975712515742302 ], [ -75.165186355029405, 39.975308800906902 ], [ -75.165262468736202, 39.9749421829003 ], [ -75.1652983876793, 39.974753049769298 ], [ -75.1653233696115, 39.974677320777097 ], [ -75.165358314662896, 39.974538548681103 ], [ -75.165389648904295, 39.974397132761297 ], [ -75.165463666003504, 39.974042840180701 ], [ -75.165566445175699, 39.973611831463103 ], [ -75.165653505653097, 39.973225426636603 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 6, "disday": "3FFRI", "sandis": "3F", "collday": "FRI", "Shape__Area": 8259612.8671875, "Shape__Length": 12676.071073341145 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.124322856065405, 39.975012122134402 ], [ -75.123845193226401, 39.974703593759401 ], [ -75.123393361554506, 39.9744125118985 ], [ -75.122690064686594, 39.973963798101003 ], [ -75.120762509717395, 39.972730662685002 ], [ -75.120233401236902, 39.9723966146409 ], [ -75.113619571570496, 39.968220547176998 ], [ -75.119450006372006, 39.965682610915003 ], [ -75.123368818222204, 39.963783887344299 ], [ -75.127776580296498, 39.961530328400599 ], [ -75.129089668614199, 39.960717209328898 ], [ -75.129832187690297, 39.960225114688797 ], [ -75.130496984052101, 39.959603975433097 ], [ -75.131081602900494, 39.9589173709793 ], [ -75.131539836872605, 39.958291512426101 ], [ -75.132054934136093, 39.957416448423899 ], [ -75.132269788043004, 39.957051440390302 ], [ -75.133683190504001, 39.954522833274197 ], [ -75.141841635556901, 39.955523986117299 ], [ -75.141875502264497, 39.9555348709588 ], [ -75.141912836228798, 39.955547359147097 ], [ -75.142522957953602, 39.955620393967997 ], [ -75.142979557902194, 39.955676257493998 ], [ -75.143386852695997, 39.955730834020599 ], [ -75.1440198953634, 39.955810352679897 ], [ -75.144449112297295, 39.955864266466897 ], [ -75.145237249394597, 39.955956668709199 ], [ -75.146026192492997, 39.956057326331297 ], [ -75.146825901698804, 39.956155398072298 ], [ -75.147371092410594, 39.956225391832199 ], [ -75.147459043903297, 39.956221351179003 ], [ -75.147519021940099, 39.956230710182098 ], [ -75.147622414068096, 39.956246843947902 ], [ -75.148411432388102, 39.956339096412798 ], [ -75.148273034981599, 39.956952408482202 ], [ -75.149008991583997, 39.957041743122602 ], [ -75.148903574461002, 39.957554568475899 ], [ -75.148879112009396, 39.957673569394103 ], [ -75.148862626100296, 39.957753769396398 ], [ -75.148850567676504, 39.957812424558803 ], [ -75.148822209173602, 39.958032081173897 ], [ -75.148728681103705, 39.958507025859099 ], [ -75.148213952968902, 39.961285682382197 ], [ -75.148184340406203, 39.961427712734697 ], [ -75.148124403302404, 39.9617592149527 ], [ -75.148031236055701, 39.962274492629597 ], [ -75.147793038553104, 39.963482424195902 ], [ -75.147799587025801, 39.963536149230698 ], [ -75.147816006281204, 39.963592448000099 ], [ -75.147643388807396, 39.9645240900551 ], [ -75.147388386470993, 39.965886418198302 ], [ -75.147149609608604, 39.967135917845503 ], [ -75.146745064541193, 39.969301981015498 ], [ -75.146546535574899, 39.970389717161602 ], [ -75.146321812462006, 39.971573422968 ], [ -75.146085117774604, 39.972842508797697 ], [ -75.145828377561799, 39.974222476787602 ], [ -75.145562559758901, 39.9756480489919 ], [ -75.145449061359798, 39.976237145825102 ], [ -75.1452935957807, 39.977079448350203 ], [ -75.145216326921002, 39.977094221930699 ], [ -75.144394236955094, 39.976990652851903 ], [ -75.143532048815899, 39.9768784687463 ], [ -75.142618055055806, 39.976759250688303 ], [ -75.141668835597102, 39.976635824162798 ], [ -75.1411759968762, 39.976573862905802 ], [ -75.140670251944499, 39.976506709890103 ], [ -75.1401026970603, 39.976433321200197 ], [ -75.139412500264498, 39.976343028801502 ], [ -75.138720924593699, 39.976258700749199 ], [ -75.138133189605, 39.976179895497403 ], [ -75.137571137404805, 39.976106316665202 ], [ -75.137064615097998, 39.976041789727603 ], [ -75.136600735347201, 39.975980978000599 ], [ -75.136336806318297, 39.975874817259196 ], [ -75.136171408911196, 39.975808932494203 ], [ -75.135728369281694, 39.975614186973097 ], [ -75.135288863176598, 39.975421417753999 ], [ -75.134804065112704, 39.975209679710701 ], [ -75.134335697237205, 39.975002238023698 ], [ -75.134220981042205, 39.975373663760699 ], [ -75.134005960549601, 39.976340565277702 ], [ -75.133836775564603, 39.977157124853399 ], [ -75.133512147601095, 39.978651436737699 ], [ -75.133192415708805, 39.980143817880801 ], [ -75.133031178039005, 39.9801013682766 ], [ -75.131778849123606, 39.979373857584697 ], [ -75.130922520806806, 39.978872805652898 ], [ -75.130451210577704, 39.978598231451699 ], [ -75.129954239712106, 39.9783113587334 ], [ -75.129512141146094, 39.978056234723901 ], [ -75.128631212549607, 39.9775427258324 ], [ -75.127571452895197, 39.9769276502278 ], [ -75.127403777348306, 39.976854753718399 ], [ -75.127070762569801, 39.976631656571897 ], [ -75.126962654731898, 39.976571384640103 ], [ -75.126544065856095, 39.976329302217202 ], [ -75.126138153366298, 39.9760912130698 ], [ -75.125301639163496, 39.975600859148599 ], [ -75.125204560395005, 39.9755672991258 ], [ -75.124712619732193, 39.975257427997903 ], [ -75.124322856065405, 39.975012122134402 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 7, "disday": "1AFRI", "sandis": "1A", "collday": "FRI", "Shape__Area": 3939884.19140625, "Shape__Length": 10613.384284967797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.228300469371206, 39.9457112494241 ], [ -75.228147205106296, 39.9456900266632 ], [ -75.227964628700093, 39.945695247704101 ], [ -75.227806812807103, 39.945706869389198 ], [ -75.227571087856305, 39.945671277234403 ], [ -75.227439127147903, 39.945607557915302 ], [ -75.227310576663101, 39.9455181070592 ], [ -75.226808556229699, 39.9450922870451 ], [ -75.226326279985102, 39.944677981378199 ], [ -75.225933720644306, 39.944354327688501 ], [ -75.225420134397993, 39.943916188637402 ], [ -75.224981791596903, 39.943543569043001 ], [ -75.224588601682001, 39.943216312404303 ], [ -75.224131871418905, 39.942845457719599 ], [ -75.222756114948993, 39.941663994284497 ], [ -75.223241053699795, 39.941320881209698 ], [ -75.223428517302295, 39.941184695544997 ], [ -75.223618356862005, 39.941055138316102 ], [ -75.224116490560505, 39.940700457025102 ], [ -75.225482927174696, 39.9397342537887 ], [ -75.225953417329606, 39.9394073136014 ], [ -75.226385938891397, 39.939105256960801 ], [ -75.226856978901793, 39.938776162958597 ], [ -75.227385697887499, 39.938401998332999 ], [ -75.227833575788793, 39.938086508821002 ], [ -75.228360658822794, 39.9377096433115 ], [ -75.228845068519107, 39.937367539490403 ], [ -75.229230313582406, 39.937100521981499 ], [ -75.229728539058598, 39.936752154508298 ], [ -75.231098633382004, 39.935782282215001 ], [ -75.232726411942807, 39.934646667587998 ], [ -75.233051235580206, 39.934451200492397 ], [ -75.233168596076794, 39.934411514838402 ], [ -75.233286792028196, 39.934385232601898 ], [ -75.233417867408903, 39.934359570736099 ], [ -75.233579273841599, 39.934337506086898 ], [ -75.233696669536698, 39.934332862219499 ], [ -75.233863898475605, 39.934354174539898 ], [ -75.234142883701793, 39.9344214779873 ], [ -75.234298285471695, 39.934491785864601 ], [ -75.234533135330693, 39.934602170794498 ], [ -75.234885375040307, 39.934638460342697 ], [ -75.235161434098501, 39.9346505966979 ], [ -75.235375692850994, 39.934624885239799 ], [ -75.235607086763096, 39.934563059636702 ], [ -75.2359204452505, 39.934450561804802 ], [ -75.236649033175894, 39.933906588657798 ], [ -75.236650821820206, 39.933944845375201 ], [ -75.2366635726693, 39.934095609050402 ], [ -75.236653125315598, 39.934212945570401 ], [ -75.236605185431102, 39.934352972805698 ], [ -75.236555161278005, 39.934549386388298 ], [ -75.236525532282698, 39.934689815795402 ], [ -75.236470445712001, 39.934857902831702 ], [ -75.236394364984207, 39.935180715362598 ], [ -75.236321487510395, 39.935334304632299 ], [ -75.236171866919193, 39.935415671934301 ], [ -75.236015097285801, 39.935525098816598 ], [ -75.235864780647702, 39.935625260561402 ], [ -75.235665805936506, 39.935719653995001 ], [ -75.235460030632893, 39.935832708079197 ], [ -75.235265593551105, 39.935969522801997 ], [ -75.234981005706203, 39.936231332258899 ], [ -75.234921897173606, 39.936342898391302 ], [ -75.234923653574796, 39.936460502443303 ], [ -75.234918436978404, 39.936601466868602 ], [ -75.234847990335794, 39.936689271045601 ], [ -75.234775011621394, 39.936762912761701 ], [ -75.234745725792195, 39.936893943835798 ], [ -75.2347888194505, 39.9370500755265 ], [ -75.234783428643794, 39.937195738428002 ], [ -75.2348022807966, 39.9373466352816 ], [ -75.234871181770004, 39.937465711806503 ], [ -75.2349055925973, 39.937529360425401 ], [ -75.234922640304106, 39.937560892502901 ], [ -75.234970273491996, 39.937759447027503 ], [ -75.2349774393346, 39.937895979782503 ], [ -75.234984605205995, 39.938032512536701 ], [ -75.235005195695194, 39.938136421787803 ], [ -75.235075662736904, 39.938213209130801 ], [ -75.235164790018402, 39.938281000092203 ], [ -75.235297342495699, 39.938330933022897 ], [ -75.235491458698604, 39.938368106835398 ], [ -75.2357834132834, 39.938402722803197 ], [ -75.235947704219697, 39.938420431939598 ], [ -75.236148619979602, 39.938438943590597 ], [ -75.236349188254593, 39.938466852762097 ], [ -75.236501791021695, 39.938470197151801 ], [ -75.236685611095396, 39.938455414440398 ], [ -75.236881638525404, 39.9384408998217 ], [ -75.237146202697005, 39.938390265436901 ], [ -75.237450789895107, 39.938331101745099 ], [ -75.237623616677695, 39.938283158864003 ], [ -75.237771157530005, 39.938258175132802 ], [ -75.237967532698505, 39.938234260807398 ], [ -75.238175072003997, 39.938238806203103 ], [ -75.238328022838203, 39.938232750311201 ], [ -75.238499806898304, 39.938212998845302 ], [ -75.238738910030406, 39.938190018841901 ], [ -75.238874242842499, 39.9381647664027 ], [ -75.239009228329095, 39.9381489116845 ], [ -75.2391860741226, 39.938157485562101 ], [ -75.239338503897699, 39.938165525594698 ], [ -75.239454656271405, 39.938163364959898 ], [ -75.239564877310599, 39.938156372090702 ], [ -75.239711376993199, 39.938159578636203 ], [ -75.239821077313906, 39.9381666827949 ], [ -75.239924326875396, 39.9381830502507 ], [ -75.2400390909621, 39.938218479657102 ], [ -75.240141472998801, 39.9382583411764 ], [ -75.240260432313306, 39.938345590942099 ], [ -75.240411749665697, 39.938466467327899 ], [ -75.240594559118605, 39.938644464493997 ], [ -75.240713347380193, 39.938736412307499 ], [ -75.240765855979902, 39.938803397624099 ], [ -75.240763080158601, 39.938878578909502 ], [ -75.240741124371795, 39.938976852920902 ], [ -75.240700508924704, 39.939084125069897 ], [ -75.240629024989104, 39.9392001264236 ], [ -75.240546199561706, 39.939292365448502 ], [ -75.240426748544706, 39.939383804841697 ], [ -75.240344096126094, 39.939471345228299 ], [ -75.240242437812299, 39.939577281532202 ], [ -75.240145668352199, 39.939716241657599 ], [ -75.240018550314602, 39.939849836181502 ], [ -75.239952994785895, 39.939970668279599 ], [ -75.239906453344005, 39.9400433096257 ], [ -75.239881682182997, 39.940081970674399 ], [ -75.239798854633904, 39.940174210058501 ], [ -75.239637988252596, 39.940311767874 ], [ -75.239529354632396, 39.940441063276701 ], [ -75.239485331769401, 39.940507640941703 ], [ -75.239412879656598, 39.940617212548702 ], [ -75.239401741678194, 39.940753345067897 ], [ -75.239406908884206, 39.940777567882101 ], [ -75.239432986565106, 39.940899809877301 ], [ -75.239464578763702, 39.941036876796403 ], [ -75.2394963446595, 39.941169245215796 ], [ -75.239564564604294, 39.941307113801599 ], [ -75.239633304373001, 39.9414308859483 ], [ -75.2397369351755, 39.9416024481676 ], [ -75.239848060187796, 39.941736553274303 ], [ -75.239988666929605, 39.9418995189653 ], [ -75.240076415589002, 39.942004896737103 ], [ -75.240152475823606, 39.942095910903497 ], [ -75.240254343206701, 39.942149867793802 ], [ -75.240369287641599, 39.9421805992759 ], [ -75.240521379607998, 39.942198033819601 ], [ -75.240791988294603, 39.9422321705012 ], [ -75.240956116319097, 39.9422545709565 ], [ -75.241181462261196, 39.942273608820699 ], [ -75.241449887408095, 39.942284182039998 ], [ -75.241585053935793, 39.942263624898501 ], [ -75.241829927535605, 39.942250168934699 ], [ -75.2420376539269, 39.942250008874097 ], [ -75.2422940431467, 39.942255614660397 ], [ -75.242610956703402, 39.942276650735003 ], [ -75.243068621780907, 39.942291357779503 ], [ -75.243177635813694, 39.942317253612003 ], [ -75.243335659562504, 39.9423395172293 ], [ -75.243417204311996, 39.942405952761803 ], [ -75.243184339990805, 39.942533303356598 ], [ -75.242902533713007, 39.942682409510503 ], [ -75.242616599228199, 39.942826968441601 ], [ -75.242333350117207, 39.942974408208499 ], [ -75.242058272278399, 39.943130798942697 ], [ -75.241788065853697, 39.943292684412597 ], [ -75.241519240488003, 39.943456061789902 ], [ -75.241248415254603, 39.9436170405273 ], [ -75.240972212699305, 39.943771731922602 ], [ -75.240687551449895, 39.943916598798197 ], [ -75.240395123647303, 39.944052489652698 ], [ -75.2400973227316, 39.944182110225803 ], [ -75.2397964225881, 39.944308011397098 ], [ -75.239494694736294, 39.944432744018599 ], [ -75.239194227635096, 39.944558648631698 ], [ -75.238893238083605, 39.944683645455903 ], [ -75.238878740788095, 39.944689529623602 ], [ -75.239188792905793, 39.9449467104969 ], [ -75.239699272631896, 39.945372976945798 ], [ -75.240269387656397, 39.9458751841508 ], [ -75.240054954708199, 39.9459266421688 ], [ -75.239342213361397, 39.946084577351002 ], [ -75.238731285128395, 39.946195192433201 ], [ -75.237983025879501, 39.946341005385499 ], [ -75.237806975517699, 39.947173825293703 ], [ -75.237694989192207, 39.947699527690602 ], [ -75.237588567776697, 39.9481662376255 ], [ -75.237483824399007, 39.948695898009703 ], [ -75.237337403647402, 39.949456137134497 ], [ -75.237171811675694, 39.950211483642398 ], [ -75.237061523589105, 39.950710211877798 ], [ -75.236977912248406, 39.951157737053698 ], [ -75.236862844278207, 39.951705602518899 ], [ -75.236747061469501, 39.9522637866541 ], [ -75.236648337181293, 39.952725514512601 ], [ -75.236546366843001, 39.953257866863503 ], [ -75.236427701032895, 39.953786589940101 ], [ -75.236332406442102, 39.954245556421 ], [ -75.236218714448, 39.954780345705501 ], [ -75.236117082058001, 39.955292694095 ], [ -75.236000335308006, 39.955840653707902 ], [ -75.235856024451095, 39.956546140132502 ], [ -75.235747941605794, 39.957058453249601 ], [ -75.235013600966298, 39.956964124879597 ], [ -75.234436157528805, 39.956897644642297 ], [ -75.233735451886204, 39.9568110057197 ], [ -75.232633142723401, 39.956673013034703 ], [ -75.2316767747527, 39.956553305034198 ], [ -75.229526918886407, 39.9562892229022 ], [ -75.227726135587901, 39.956065922113801 ], [ -75.225748076425305, 39.9558232708277 ], [ -75.225875702193605, 39.9552266422061 ], [ -75.226004978816206, 39.954600987211201 ], [ -75.226115522592806, 39.954058374925403 ], [ -75.226225919784198, 39.953537185974199 ], [ -75.226340124013802, 39.953018162004 ], [ -75.226438884329994, 39.952541609133398 ], [ -75.226542130945305, 39.952009912904003 ], [ -75.226659796813394, 39.951477202112002 ], [ -75.226701441922899, 39.9512508252133 ], [ -75.226749524783898, 39.951029702171603 ], [ -75.226871364472103, 39.950469873796898 ], [ -75.227031792115795, 39.949711791530198 ], [ -75.227173047850698, 39.948967583592498 ], [ -75.227275183673598, 39.948498992691498 ], [ -75.227327163535804, 39.948288300439202 ], [ -75.227422015465294, 39.947779799939902 ], [ -75.2268358540842, 39.947257224327103 ], [ -75.228204779355593, 39.946279873626601 ], [ -75.228344768991803, 39.946176337053103 ], [ -75.228688284280096, 39.9459222719384 ], [ -75.228564648898598, 39.945827594867602 ], [ -75.2284363015374, 39.945752683770898 ], [ -75.228300469371206, 39.9457112494241 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 8, "disday": "1AMON", "sandis": "1A", "collday": "MON", "Shape__Area": 25579720.79296875, "Shape__Length": 34436.855615689754 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.203746489823502, 39.985838710776001 ], [ -75.203922929385598, 39.985687625319997 ], [ -75.204015039425599, 39.9856009413867 ], [ -75.2040955229144, 39.9855168835943 ], [ -75.204167077616702, 39.985430759012502 ], [ -75.204227440333099, 39.9853423255434 ], [ -75.204260348512307, 39.985281966532703 ], [ -75.204286605593694, 39.985220401308503 ], [ -75.204314425821593, 39.985125694895203 ], [ -75.204334358427104, 39.9850283979357 ], [ -75.204347386249097, 39.984928882723302 ], [ -75.204354053054203, 39.984827517217099 ], [ -75.204354903676105, 39.984724672101699 ], [ -75.2043504807407, 39.984620714407498 ], [ -75.204340407259494, 39.9845137968233 ], [ -75.204337318751598, 39.984481013776602 ], [ -75.204317037012203, 39.984340865999002 ], [ -75.204290921534096, 39.984201148340397 ], [ -75.204252038073093, 39.984028436522301 ], [ -75.204208569493105, 39.983859469364198 ], [ -75.204124846297901, 39.983559170924302 ], [ -75.204053717456901, 39.983323415885103 ], [ -75.203998031656198, 39.983155189429098 ], [ -75.203937160052703, 39.982988050734797 ], [ -75.203884064755798, 39.982855682165102 ], [ -75.203826509482397, 39.982724971576197 ], [ -75.203730709450696, 39.982532946073 ], [ -75.203678086382595, 39.982439141823903 ], [ -75.203622029540099, 39.982347051655402 ], [ -75.2035623249444, 39.982256853717999 ], [ -75.203498758515195, 39.982168728862803 ], [ -75.203360896460694, 39.9819978524093 ], [ -75.203263590121395, 39.981885696777397 ], [ -75.203162436032798, 39.981774774737701 ], [ -75.203057658221596, 39.981665109271297 ], [ -75.202949479575906, 39.981556722434 ], [ -75.202723814666697, 39.981343877450897 ], [ -75.202606776510393, 39.981239463471098 ], [ -75.202456981200598, 39.981110873586999 ], [ -75.202210254397897, 39.980909690210297 ], [ -75.201924271662605, 39.980690263318102 ], [ -75.201631830233794, 39.980478394040098 ], [ -75.2014290427459, 39.980338874431503 ], [ -75.201335312562605, 39.980274387518897 ], [ -75.201132643506199, 39.980143853006098 ], [ -75.200889248825206, 39.979997317189401 ], [ -75.200639399150703, 39.979856220967001 ], [ -75.200347339772094, 39.979700609173001 ], [ -75.200049873850304, 39.9795498761519 ], [ -75.199710770532207, 39.979384654218102 ], [ -75.198725034113195, 39.978918251386098 ], [ -75.198534994057297, 39.978830380644297 ], [ -75.1982659259901, 39.9787107984572 ], [ -75.197994107134903, 39.978594380947797 ], [ -75.196857129139005, 39.978125414460401 ], [ -75.196756594886196, 39.978082482005703 ], [ -75.196352746344999, 39.977910018516503 ], [ -75.196085330942793, 39.9777895983528 ], [ -75.195859275602501, 39.977682986084602 ], [ -75.195599977810701, 39.977553821853498 ], [ -75.195418630046404, 39.9774573436301 ], [ -75.195277599229598, 39.9773756714836 ], [ -75.195139973471896, 39.977290258299199 ], [ -75.194972102345304, 39.977178991113703 ], [ -75.194808106645993, 39.977063626586499 ], [ -75.194520120594802, 39.976848750681697 ], [ -75.193865428825205, 39.976342065847298 ], [ -75.193738977624406, 39.976238654409897 ], [ -75.193651334031699, 39.976160684095198 ], [ -75.193542236346104, 39.976052538576099 ], [ -75.193467853311404, 39.975968051006397 ], [ -75.193356688479199, 39.975821529500102 ], [ -75.193253235133398, 39.975670581847901 ], [ -75.193157211741095, 39.975516059557201 ], [ -75.193070758387407, 39.975362429772801 ], [ -75.193169454187696, 39.975352114756703 ], [ -75.194234055508403, 39.975240843932703 ], [ -75.194352051954297, 39.975228510628597 ], [ -75.194405951551005, 39.975222876856698 ], [ -75.194612399071104, 39.975201297339297 ], [ -75.194663137050995, 39.975195993991498 ], [ -75.194900422937394, 39.975171190293104 ], [ -75.195414019021001, 39.975111531781202 ], [ -75.195757903792, 39.975072999230399 ], [ -75.1982699923947, 39.974791479997798 ], [ -75.198400282980202, 39.974777859908301 ], [ -75.198812182402406, 39.974731367339402 ], [ -75.198996126008893, 39.974710604172699 ], [ -75.199507679065206, 39.974655963753897 ], [ -75.201738797909201, 39.974403946276198 ], [ -75.2031559230347, 39.974254458196199 ], [ -75.203722515754706, 39.974191391660099 ], [ -75.204364092184804, 39.974426602592501 ], [ -75.206628607606206, 39.975256765164602 ], [ -75.206909628314506, 39.975362930712102 ], [ -75.207894403397006, 39.9757266825589 ], [ -75.208601618210807, 39.975990932600901 ], [ -75.209323537581099, 39.976259587962097 ], [ -75.210360678079198, 39.976645395971502 ], [ -75.211291970626206, 39.976992341492803 ], [ -75.213472607698506, 39.9778001758296 ], [ -75.214383089109205, 39.978137864326101 ], [ -75.216817805229397, 39.979035608538702 ], [ -75.219254483371003, 39.979944355849099 ], [ -75.221455298770096, 39.980758583520398 ], [ -75.222491526666303, 39.981145876023298 ], [ -75.223160075170298, 39.981390375729198 ], [ -75.223548206134296, 39.981483892955602 ], [ -75.223677038843306, 39.981518431528798 ], [ -75.223792639307902, 39.981529195075701 ], [ -75.224068731009893, 39.981517553917001 ], [ -75.225165500305707, 39.981346001215101 ], [ -75.226205316491601, 39.981617239553998 ], [ -75.226579549830603, 39.9821054704069 ], [ -75.226918865182299, 39.982545102841101 ], [ -75.227060007171005, 39.982700884118998 ], [ -75.227225113576694, 39.982533714236801 ], [ -75.227367197183796, 39.982238369515798 ], [ -75.228026031964902, 39.980739822309197 ], [ -75.228153531546596, 39.980472741292402 ], [ -75.228794447357203, 39.980714659032202 ], [ -75.229672098638304, 39.981045926198497 ], [ -75.229699947474003, 39.981071336800497 ], [ -75.229846123867603, 39.981204715554803 ], [ -75.230101815068807, 39.981565218038298 ], [ -75.230398085285898, 39.981986227884903 ], [ -75.230649771792997, 39.982356808831199 ], [ -75.230793649195903, 39.982525767492803 ], [ -75.230967146766503, 39.982516242786801 ], [ -75.231334330381799, 39.9826503030799 ], [ -75.233198693542306, 39.983341584433703 ], [ -75.233853097421303, 39.9835865554805 ], [ -75.234188355433702, 39.983711895718301 ], [ -75.234735540499699, 39.983909041636302 ], [ -75.236442020166194, 39.984539963042899 ], [ -75.236864057227095, 39.984663844036497 ], [ -75.237161750125907, 39.9847740900479 ], [ -75.237243381302207, 39.984849379467299 ], [ -75.237393170287305, 39.9848631805895 ], [ -75.237775984323306, 39.9849871139714 ], [ -75.238232811731507, 39.9850421540702 ], [ -75.239658847298102, 39.9851681914433 ], [ -75.240155677492098, 39.985222942804597 ], [ -75.241262959990195, 39.985324572967201 ], [ -75.242884276224103, 39.985498016617001 ], [ -75.243420149039395, 39.9855547517476 ], [ -75.243887076522498, 39.985593519606702 ], [ -75.244241262399697, 39.985640333373503 ], [ -75.244492935472493, 39.985676237073903 ], [ -75.244672837086995, 39.985728817759799 ], [ -75.244820156172594, 39.985804262328699 ], [ -75.2449906777438, 39.985899961050997 ], [ -75.245105588750704, 39.985999776109203 ], [ -75.245179831627397, 39.986103597699099 ], [ -75.245481300487697, 39.986628500796101 ], [ -75.246442345053893, 39.986183276943997 ], [ -75.246700162989796, 39.986063834722103 ], [ -75.245840095372898, 39.984519704958501 ], [ -75.245757418960807, 39.984282853956998 ], [ -75.247097219527106, 39.9836046666709 ], [ -75.248348647001094, 39.982977635245703 ], [ -75.249750715544295, 39.982272212160296 ], [ -75.251066457945797, 39.981610194711699 ], [ -75.251444550907806, 39.981417609555798 ], [ -75.251777092956402, 39.981253732789298 ], [ -75.252212337228599, 39.981021600538902 ], [ -75.252546453779402, 39.980779158054197 ], [ -75.252860470722595, 39.980499529542399 ], [ -75.253107396104198, 39.980189764756503 ], [ -75.253293316704898, 39.979886291997502 ], [ -75.253499067613205, 39.979542721141797 ], [ -75.253718808291595, 39.979287006106802 ], [ -75.253932155768396, 39.979076271379299 ], [ -75.254255398952196, 39.978844560900001 ], [ -75.254473580455794, 39.978712488507597 ], [ -75.254821165183699, 39.9785580755034 ], [ -75.255026118128598, 39.978477767324001 ], [ -75.255459915069494, 39.9783066618348 ], [ -75.255927022564606, 39.978129732105401 ], [ -75.2556647708209, 39.976764881551397 ], [ -75.255493766649593, 39.975863207391299 ], [ -75.255434312230193, 39.975532137695801 ], [ -75.255328043266303, 39.974955301987102 ], [ -75.255198715072098, 39.9742697731416 ], [ -75.255010326013902, 39.9732824305229 ], [ -75.254903790826205, 39.972700028436101 ], [ -75.254227281032996, 39.972591520151703 ], [ -75.253302111085503, 39.972441824076498 ], [ -75.253252185887405, 39.972136983540501 ], [ -75.253149675170604, 39.971644794815802 ], [ -75.253106263909004, 39.971395340109801 ], [ -75.253126886270493, 39.971347921055703 ], [ -75.253372961565603, 39.970177558408402 ], [ -75.253444140517601, 39.969831779129699 ], [ -75.2525678591646, 39.969725081923201 ], [ -75.251471264304001, 39.969587544163801 ], [ -75.250944765956007, 39.969521560728197 ], [ -75.250483541003405, 39.969469234884102 ], [ -75.250803233834802, 39.967946522718599 ], [ -75.250830398839497, 39.967803779407099 ], [ -75.250921510436299, 39.967436755052503 ], [ -75.250988338432506, 39.9671243658089 ], [ -75.251122181079097, 39.966407145171701 ], [ -75.250937230346096, 39.966375596320098 ], [ -75.250604272260901, 39.966335137964599 ], [ -75.250400332278602, 39.966316235354697 ], [ -75.250220268767507, 39.966301065497298 ], [ -75.250135010437106, 39.966308148526998 ], [ -75.249294312801794, 39.966202040100697 ], [ -75.2487551331904, 39.966135129910697 ], [ -75.248159590687905, 39.966060414585002 ], [ -75.247170957408201, 39.965936764177698 ], [ -75.247467085781594, 39.9645174959822 ], [ -75.247465213598403, 39.964461390044399 ], [ -75.247449172822002, 39.964399990788401 ], [ -75.247402330228994, 39.964350920105403 ], [ -75.247311133841507, 39.964314079673798 ], [ -75.247211231675493, 39.964299777682697 ], [ -75.247112626847795, 39.964303688619701 ], [ -75.247005538051297, 39.964324080939598 ], [ -75.246865222814193, 39.964337688218201 ], [ -75.246427603984102, 39.964285671920202 ], [ -75.246686249613603, 39.963047512270101 ], [ -75.246755825589602, 39.962714438842703 ], [ -75.247650654777402, 39.962822837717198 ], [ -75.247690063110596, 39.962826688494403 ], [ -75.247661604442598, 39.962941994803302 ], [ -75.247607449708994, 39.963001947770302 ], [ -75.247491248773699, 39.963128734473898 ], [ -75.247421395464499, 39.963200101993898 ], [ -75.247400912744197, 39.963258436823899 ], [ -75.247407216280394, 39.963336167717003 ], [ -75.247437513487995, 39.963426177189397 ], [ -75.247482296290997, 39.963537665091501 ], [ -75.247566859017397, 39.9636476690062 ], [ -75.247687022070593, 39.963786665628199 ], [ -75.247781176605102, 39.9638851215215 ], [ -75.2479056920631, 39.963988943501903 ], [ -75.248059558707595, 39.964083999021597 ], [ -75.248617685985707, 39.964361864169099 ], [ -75.248969985939993, 39.964503568349201 ], [ -75.249467344792507, 39.964730727562497 ], [ -75.249851592291705, 39.964917799928898 ], [ -75.249914327460999, 39.964956787787898 ], [ -75.249991811073301, 39.965010204677597 ], [ -75.250057512464906, 39.9650516077701 ], [ -75.250136033736695, 39.965076831737697 ], [ -75.250224320047806, 39.9650858090992 ], [ -75.250316264014998, 39.965078406778296 ], [ -75.250449543267194, 39.965027231048197 ], [ -75.250607939585905, 39.964957791422499 ], [ -75.250760230613196, 39.964888218599 ], [ -75.250916062354094, 39.964846938121397 ], [ -75.251050665937299, 39.964842815958001 ], [ -75.251104760450403, 39.964867507252599 ], [ -75.2512036181799, 39.964921387912398 ], [ -75.251285826287798, 39.965012527656299 ], [ -75.251344385346599, 39.965081990771203 ], [ -75.251338912147204, 39.965147707856097 ], [ -75.251343031991397, 39.965201877724702 ], [ -75.251371491311104, 39.965258928312601 ], [ -75.251430655542194, 39.965311945261703 ], [ -75.251499672166901, 39.965346365841697 ], [ -75.2516059319302, 39.965365138947298 ], [ -75.251710177238394, 39.9653556517761 ], [ -75.2518146805008, 39.965339117174999 ], [ -75.251925117119001, 39.9653274139283 ], [ -75.252096706562895, 39.9653146903253 ], [ -75.252337512511005, 39.965289365504901 ], [ -75.252638031767006, 39.9652606376292 ], [ -75.252846087551703, 39.965253409787401 ], [ -75.252974757211106, 39.965244453039602 ], [ -75.253079432687002, 39.965223218778497 ], [ -75.253224146562403, 39.965193449352398 ], [ -75.253317330774607, 39.9652354494702 ], [ -75.253410774155896, 39.965270400398197 ], [ -75.253585043154303, 39.965309461411699 ], [ -75.253715386347906, 39.965338161974501 ], [ -75.253939258648401, 39.965399463156302 ], [ -75.254048831804695, 39.965411252215702 ], [ -75.254143484204405, 39.965413311176697 ], [ -75.254225373622603, 39.965346904646701 ], [ -75.254304122885401, 39.9652827813429 ], [ -75.254340038950104, 39.965220077922602 ], [ -75.254382839078701, 39.965136361780402 ], [ -75.254459138387205, 39.965055726714198 ], [ -75.254546701728202, 39.965001199488803 ], [ -75.254634696371994, 39.964934926369402 ], [ -75.254741355664194, 39.964859652765099 ], [ -75.254940130304902, 39.964772275425403 ], [ -75.255115401602396, 39.9647008459674 ], [ -75.255269532074394, 39.964664224916 ], [ -75.255411017590305, 39.964639085749198 ], [ -75.255546741952301, 39.964604415733099 ], [ -75.255689089857995, 39.9645557818613 ], [ -75.255814066856701, 39.964480906410799 ], [ -75.255855053323998, 39.964446528153204 ], [ -75.255894107415997, 39.964381540918097 ], [ -75.255969627862001, 39.964322048604203 ], [ -75.256085271919204, 39.964251672266698 ], [ -75.256195413360999, 39.964164716950002 ], [ -75.256283750282407, 39.964089044637802 ], [ -75.256385421393304, 39.963983095104901 ], [ -75.256588822425996, 39.9638111685422 ], [ -75.256689630418805, 39.963728712209303 ], [ -75.256748847881894, 39.963697081405201 ], [ -75.256819503726106, 39.9636868606514 ], [ -75.256902199206706, 39.963681603725 ], [ -75.256984119912502, 39.963697491430601 ], [ -75.257129381162102, 39.963735916816503 ], [ -75.257253701831402, 39.963762130962998 ], [ -75.257338588976395, 39.963780433539704 ], [ -75.257421284497696, 39.963775177139603 ], [ -75.257489317720498, 39.963753141997103 ], [ -75.257545741013502, 39.963714395347701 ], [ -75.257632782963, 39.963673963112797 ], [ -75.257707352993194, 39.963640313740697 ], [ -75.257790910226603, 39.963611561794899 ], [ -75.257861479662907, 39.963603689207503 ], [ -75.257936776201504, 39.963633540028702 ], [ -75.257995945309403, 39.963686553620803 ], [ -75.258016603176003, 39.963748136172697 ], [ -75.258015433999205, 39.963863323792403 ], [ -75.258016455464002, 39.9640020720895 ], [ -75.257994344129202, 39.964105048762796 ], [ -75.2579644519205, 39.964170235658102 ], [ -75.257946428271097, 39.964245085748402 ], [ -75.257947067623704, 39.964310935771898 ], [ -75.257977896313804, 39.964386846010598 ], [ -75.258010706035407, 39.964408720130102 ], [ -75.258061577915498, 39.964438040365103 ], [ -75.258122039296495, 39.964455812744198 ], [ -75.258192178679806, 39.964459687594399 ], [ -75.2582746164816, 39.964461477903903 ], [ -75.258341960776406, 39.964458237222402 ], [ -75.258409046532705, 39.964462045626803 ], [ -75.258472044683401, 39.9644939805831 ], [ -75.258512980425607, 39.964544246363801 ], [ -75.2585496574643, 39.964627338166103 ], [ -75.258593709108396, 39.964717643023199 ], [ -75.258640493878204, 39.9647750904969 ], [ -75.258686417176406, 39.964856031436803 ], [ -75.258708775190996, 39.964912947597 ], [ -75.258715696091897, 39.964974231730402 ], [ -75.258718355987995, 39.965068340954403 ], [ -75.258714774408503, 39.965249312291498 ], [ -75.258702514054505, 39.965333692139197 ], [ -75.258712744808093, 39.965387994299299 ], [ -75.258740779590198, 39.965456790702198 ], [ -75.258768814462101, 39.965525586197799 ], [ -75.258800418806899, 39.965580352411003 ], [ -75.258841613905105, 39.965623569847203 ], [ -75.258892314761894, 39.9656575882303 ], [ -75.258976860078803, 39.965685288429299 ], [ -75.259080156064599, 39.965701638634798 ], [ -75.259217468802504, 39.9657069710968 ], [ -75.2593366351702, 39.965707206332702 ], [ -75.259403205413705, 39.965725110609803 ], [ -75.259425994968097, 39.965770279883898 ], [ -75.259430207440602, 39.965822099752103 ], [ -75.259430331448598, 39.965902046218801 ], [ -75.259452777743704, 39.965956612548801 ], [ -75.259554351660398, 39.966019951108699 ], [ -75.259651025283006, 39.966050264718099 ], [ -75.259780940695293, 39.966090705112101 ], [ -75.259911113441902, 39.9661240971054 ], [ -75.260067046412701, 39.966205073225403 ], [ -75.260312301034404, 39.966266825793603 ], [ -75.2604928283627, 39.9663229667594 ], [ -75.260586003181302, 39.966282653603798 ], [ -75.260664078643899, 39.966279056001 ], [ -75.260753089497598, 39.966289806853801 ], [ -75.260831423313405, 39.966279158206397 ], [ -75.2609355990258, 39.966251431460002 ], [ -75.261028902617198, 39.966207593379302 ], [ -75.261118271249202, 39.966146030334897 ], [ -75.261163858350798, 39.966090573200603 ], [ -75.261218608864795, 39.966035314809602 ], [ -75.261286134792499, 39.966006792796001 ], [ -75.261389147707305, 39.966010791231199 ], [ -75.261447670310702, 39.966040283051299 ], [ -75.261482705465397, 39.966085141742397 ], [ -75.261550004287102, 39.9661254077485 ], [ -75.261664195738206, 39.966168454799501 ], [ -75.261739010626101, 39.966191244156001 ], [ -75.261814343171295, 39.966199933423098 ], [ -75.261895289162396, 39.966180521836399 ], [ -75.262015822041107, 39.966144328153597 ], [ -75.262095509789305, 39.966096666617503 ], [ -75.262105898534003, 39.966063376947702 ], [ -75.262119094513295, 39.966016036881904 ], [ -75.262141259155101, 39.965974182777302 ], [ -75.262165133689805, 39.965948242041101 ], [ -75.262245209581707, 39.965890004024899 ], [ -75.262273239946197, 39.965862873070002 ], [ -75.262275303689606, 39.965860875276697 ], [ -75.2622756532772, 39.965860537778099 ], [ -75.262345028626498, 39.965793388482503 ], [ -75.2623856467156, 39.965748406153303 ], [ -75.262424620426302, 39.965685749532902 ], [ -75.262460592101306, 39.9656424314785 ], [ -75.262514114992896, 39.965620660808199 ], [ -75.262562024749798, 39.965626990950703 ], [ -75.262620176500306, 39.965635307237001 ], [ -75.262681635474806, 39.965647223453303 ], [ -75.262768420667499, 39.965656160373797 ], [ -75.262839751786302, 39.965648886844903 ], [ -75.262921083996801, 39.965618899031199 ], [ -75.262963476230894, 39.965588067124997 ], [ -75.263031710753395, 39.9655401558107 ], [ -75.263095234412106, 39.965495670618402 ], [ -75.263146659680601, 39.965468562698199 ], [ -75.263197181671998, 39.965466129431697 ], [ -75.263253865344197, 39.965483233341999 ], [ -75.263310034093607, 39.965514437322703 ], [ -75.2633864945212, 39.965554900795503 ], [ -75.263470150146105, 39.965586701282803 ], [ -75.263533319523802, 39.965614528595999 ], [ -75.263617555897994, 39.965630465267303 ], [ -75.263698049134504, 39.9656233906491 ], [ -75.263773203444501, 39.965605615495001 ], [ -75.263857211902206, 39.965565101125399 ], [ -75.263931544318396, 39.965538489202103 ], [ -75.263992518541201, 39.965501003914802 ], [ -75.264019004412802, 39.965466298729403 ], [ -75.264059299848697, 39.965430129505897 ], [ -75.264134404825299, 39.9653823664109 ], [ -75.264244383696905, 39.965321247541901 ], [ -75.264375301276203, 39.965251762415598 ], [ -75.264498507750901, 39.965205041118203 ], [ -75.2645563522359, 39.965190418758802 ], [ -75.264645814802705, 39.965188829274503 ], [ -75.264760279734503, 39.965193072767498 ], [ -75.264921701209602, 39.965198332264599 ], [ -75.265061426453101, 39.965201358423499 ], [ -75.265255740545101, 39.965216150468201 ], [ -75.265390369627994, 39.9652331771142 ], [ -75.265451055211798, 39.9652662419713 ], [ -75.265530164563998, 39.965359679888202 ], [ -75.2655694615123, 39.9654134484176 ], [ -75.265658991876407, 39.965535334377698 ], [ -75.265747007464796, 39.965636020592598 ], [ -75.265807920857199, 39.965725535170499 ], [ -75.265860188841202, 39.965800752192301 ], [ -75.265924167910498, 39.965869167104898 ], [ -75.266051266802194, 39.9659354201805 ], [ -75.266196448515402, 39.965977369423101 ], [ -75.266316626429102, 39.966013485754203 ], [ -75.266398637519103, 39.966027608059697 ], [ -75.266547528035204, 39.966030830756502 ], [ -75.266710290350801, 39.966030825222099 ], [ -75.266797849665906, 39.966018608963502 ], [ -75.266912509388206, 39.966017563001799 ], [ -75.267026524930898, 39.966034141587301 ], [ -75.267140911801505, 39.966071894955199 ], [ -75.267217762777307, 39.966101781282902 ], [ -75.267295615282293, 39.966166967329499 ], [ -75.267367240580896, 39.966214379082203 ], [ -75.267384759981795, 39.966223162541901 ], [ -75.267477548661702, 39.966269684252403 ], [ -75.267534428495296, 39.966281497864003 ], [ -75.267600855960097, 39.966282935029902 ], [ -75.267673318838405, 39.966307433716899 ], [ -75.267781788426404, 39.9663503508025 ], [ -75.267912582779999, 39.966409626083099 ], [ -75.268132764725195, 39.9665008213126 ], [ -75.268395129804105, 39.966598220831898 ], [ -75.268462819541895, 39.966627907262101 ], [ -75.268516635171906, 39.966660821859598 ], [ -75.268570194504605, 39.9667007865052 ], [ -75.268703898186303, 39.966805986633503 ], [ -75.268774946930606, 39.966869260366003 ], [ -75.268849738426994, 39.966955545963003 ], [ -75.268919627597, 39.9670505452494 ], [ -75.269019127006999, 39.967244965158798 ], [ -75.269047103096, 39.967294960272298 ], [ -75.269082143914304, 39.967339816641903 ], [ -75.269126863432305, 39.967370770132298 ], [ -75.269160772041801, 39.967383850373601 ], [ -75.269208683627994, 39.967390178641402 ], [ -75.269274790425499, 39.967400426725 ], [ -75.269359223432005, 39.967411071869201 ], [ -75.269446848415399, 39.9673970908526 ], [ -75.269500047490396, 39.967384129687801 ], [ -75.269551215382705, 39.967364068974703 ], [ -75.269616253989398, 39.967340779824397 ], [ -75.2696718094397, 39.9673261053902 ], [ -75.269742948530407, 39.967324114883901 ], [ -75.269804410281196, 39.967336027285299 ], [ -75.269858807423901, 39.967353078438997 ], [ -75.269921659291299, 39.967389715923503 ], [ -75.269963572374394, 39.967434719647898 ], [ -75.270005164957894, 39.967488536171203 ], [ -75.270033450873598, 39.967561468692601 ], [ -75.270057272114201, 39.967662528066597 ], [ -75.270075121451498, 39.9677387623653 ], [ -75.270100678917501, 39.967792232283102 ], [ -75.270143275931702, 39.967881349425603 ], [ -75.270194455432801, 39.967986527387197 ], [ -75.270300381163494, 39.968193432954102 ], [ -75.270391636819099, 39.968331226688399 ], [ -75.270404094674106, 39.968366774864997 ], [ -75.270415264699494, 39.9684375732745 ], [ -75.2704248526165, 39.968488934783899 ], [ -75.270450604800203, 39.968537117334201 ], [ -75.270503522247793, 39.968594706630299 ], [ -75.270572668396298, 39.968647354188398 ], [ -75.2706016754708, 39.968669148712202 ], [ -75.270653847248695, 39.968684387247301 ], [ -75.270720471301303, 39.968680534418297 ], [ -75.270775769107402, 39.968672910377798 ], [ -75.270840681088004, 39.968653145135903 ], [ -75.270914948647899, 39.968628291405103 ], [ -75.270988894583397, 39.968612249517399 ], [ -75.271045969932601, 39.9686187740732 ], [ -75.271112078169594, 39.968629021998403 ], [ -75.271171186084302, 39.968642646012903 ], [ -75.271243459804396, 39.968672430659602 ], [ -75.271330688034496, 39.968700774172802 ], [ -75.271410476756799, 39.968713080668898 ], [ -75.271492813668999, 39.968718387440902 ], [ -75.271593476012995, 39.968724089970301 ], [ -75.271700689806195, 39.968738752747903 ], [ -75.271805162564704, 39.968765704217802 ], [ -75.271865275748894, 39.968814628528598 ], [ -75.2719251961433, 39.968868840124301 ], [ -75.271988604389804, 39.968953114474402 ], [ -75.272026067585699, 39.968994493940599 ], [ -75.272089307934095, 39.969020553802999 ], [ -75.272199186115003, 39.969056441366398 ], [ -75.272346476397701, 39.969103720513701 ], [ -75.272507896184806, 39.969140719777002 ], [ -75.272627697369401, 39.969187405031299 ], [ -75.272729430252895, 39.969226644471398 ], [ -75.272817869621903, 39.9692532479446 ], [ -75.272960514537203, 39.969302189225303 ], [ -75.273056339994199, 39.969314841642301 ], [ -75.273188185274194, 39.969314160264297 ], [ -75.273282555221598, 39.969303849227501 ], [ -75.273418286784903, 39.969290903482303 ], [ -75.273494137126306, 39.969285484940201 ], [ -75.273572022605407, 39.969287165875699 ], [ -75.273684011266596, 39.969296638343401 ], [ -75.273812034556997, 39.969306456724901 ], [ -75.273914733153504, 39.969319256741798 ], [ -75.274015396623795, 39.969324956246702 ], [ -75.274152903978006, 39.969326160062202 ], [ -75.274328305593599, 39.969325534204899 ], [ -75.274490156270502, 39.969319324258102 ], [ -75.274810008220896, 39.969302412133302 ], [ -75.274892762382294, 39.9692962595281 ], [ -75.275029093289504, 39.969298318080497 ], [ -75.275087250877306, 39.969306628074399 ], [ -75.275199711081299, 39.969334629845598 ], [ -75.275269375257693, 39.969373175348501 ], [ -75.275322682700704, 39.969420186877201 ], [ -75.275365731320093, 39.9695128398984 ], [ -75.275397524548495, 39.969584082464699 ], [ -75.275458322807907, 39.969787362561704 ], [ -75.275496357844901, 39.969938998402199 ], [ -75.275570045039203, 39.970134619608103 ], [ -75.275609341407602, 39.970220135103297 ], [ -75.275654569295597, 39.970268736357198 ], [ -75.275707214846605, 39.9703025042744 ], [ -75.275821239691894, 39.970319075021202 ], [ -75.276007428179796, 39.970321325315403 ], [ -75.276189254934096, 39.970333183061399 ], [ -75.276247477742004, 39.9703397297259 ], [ -75.276305185896803, 39.970360377365402 ], [ -75.276373770458903, 39.9703971338608 ], [ -75.276414009498197, 39.9704253425218 ], [ -75.276440751743095, 39.970477954371901 ], [ -75.2764698159543, 39.970529735105899 ], [ -75.276510264634695, 39.970599399779402 ], [ -75.276614692760802, 39.970785099022798 ], [ -75.276642579622205, 39.9708377363919 ], [ -75.276658541991097, 39.970871594319 ], [ -75.276670649452498, 39.970916835965198 ], [ -75.276677287204706, 39.9709549032155 ], [ -75.276664454548794, 39.970992550795799 ], [ -75.276639181520693, 39.9710255208185 ], [ -75.276590139311594, 39.971065916156597 ], [ -75.2765314260064, 39.971104338886001 ], [ -75.276473792804794, 39.971144548994197 ], [ -75.276488287561705, 39.971187195032797 ], [ -75.276526708870804, 39.971233885969397 ], [ -75.276584953745001, 39.971271301501801 ], [ -75.276691288018895, 39.971263009629403 ], [ -75.276762719769494, 39.971253084236601 ], [ -75.276827953298607, 39.971224503703297 ], [ -75.276899330358503, 39.971184589631399 ], [ -75.277075553525194, 39.971114302367198 ], [ -75.277138014526599, 39.9710988910455 ], [ -75.277200186774905, 39.971091411127396 ], [ -75.277268975536799, 39.971091129352097 ], [ -75.277341134373998, 39.971092684279803 ], [ -75.277424299379703, 39.971106824289102 ], [ -75.277493752543407, 39.971119785825799 ], [ -75.277543572533503, 39.9711367346044 ], [ -75.277579422826307, 39.971159556802 ], [ -75.277612919131201, 39.971184091492098 ], [ -75.2776598066731, 39.971218615575701 ], [ -75.277689385311405, 39.971256295864698 ], [ -75.277707509880202, 39.971293728465902 ], [ -75.277715325858907, 39.971330938965203 ], [ -75.277691551570996, 39.971354239719197 ], [ -75.277649644704994, 39.971371858321298 ], [ -75.277598668628102, 39.971386635317003 ], [ -75.277553645885803, 39.9713953670297 ], [ -75.277526723610407, 39.971410662264901 ], [ -75.277511000039894, 39.971433254386803 ], [ -75.277506536967906, 39.971461381508099 ], [ -75.277507544983393, 39.971496681209203 ], [ -75.277516730939695, 39.971527747708102 ], [ -75.277532596463104, 39.971564250500997 ], [ -75.277556801550901, 39.971592112356902 ], [ -75.277594590353303, 39.971624677193397 ], [ -75.277642880290799, 39.971652176798202 ], [ -75.277678185120394, 39.971669016393001 ], [ -75.277768067361293, 39.971687772437797 ], [ -75.277889330071801, 39.971702398615498 ], [ -75.277969764156595, 39.971723353875298 ], [ -75.278021502902902, 39.971760509562799 ], [ -75.278299265132702, 39.971937090285699 ], [ -75.2783554983926, 39.9720223992325 ], [ -75.278452035357802, 39.972115784091301 ], [ -75.278539734584101, 39.972194561899101 ], [ -75.278611831635601, 39.9722730036138 ], [ -75.278659314870794, 39.9723413044075 ], [ -75.278700032718703, 39.972423875198601 ], [ -75.278727044890303, 39.972539790791302 ], [ -75.278762296278899, 39.972643870111703 ], [ -75.278778923195901, 39.972701894657 ], [ -75.278783243083097, 39.972754848324598 ], [ -75.2787859895693, 39.972851018867402 ], [ -75.278797662738896, 39.972959395346102 ], [ -75.278812717537903, 39.973060636786599 ], [ -75.278833663349999, 39.973171615864104 ], [ -75.278861812709707, 39.973256318841699 ], [ -75.278918657988001, 39.973324821111603 ], [ -75.278954532637798, 39.973368843482298 ], [ -75.278973232560006, 39.973455746767598 ], [ -75.2790015557282, 39.973535647606901 ], [ -75.279049726652104, 39.973627991314302 ], [ -75.279084554693796, 39.973700824337797 ], [ -75.279111393381896, 39.973821541013798 ], [ -75.279126448839406, 39.973922782410597 ], [ -75.279173757931503, 39.973995884141097 ], [ -75.279243960636705, 39.974040645536903 ], [ -75.279361146458797, 39.974081613496502 ], [ -75.279468621927705, 39.974131983057802 ], [ -75.279603745818306, 39.974194961419798 ], [ -75.279808112897399, 39.9743291103077 ], [ -75.279957356147804, 39.974433239989601 ], [ -75.280029457211498, 39.974511680808803 ], [ -75.280047597298093, 39.974549615171398 ], [ -75.280087504923401, 39.974633068943199 ], [ -75.280133418729704, 39.9747445851132 ], [ -75.280195373318193, 39.974844432803202 ], [ -75.280306753991795, 39.975000893317798 ], [ -75.279430616103596, 39.975445834757203 ], [ -75.277679962065307, 39.976346116159803 ], [ -75.276381591522593, 39.977013776099099 ], [ -75.276146682777394, 39.977118819771597 ], [ -75.275297404893095, 39.977498583091901 ], [ -75.273574789397898, 39.978268835500799 ], [ -75.273032086399297, 39.978510155588999 ], [ -75.272268824114093, 39.978849542614 ], [ -75.271424994594994, 39.979226738826299 ], [ -75.269272213249295, 39.980179608426603 ], [ -75.266259666080003, 39.981515573124 ], [ -75.265593673626896, 39.981810900755299 ], [ -75.264772086424102, 39.982175216335499 ], [ -75.264384794256998, 39.982346949764903 ], [ -75.263717910474696, 39.982642653900101 ], [ -75.263716287747798, 39.982643373772902 ], [ -75.262186238488994, 39.983490335601402 ], [ -75.260731324362794, 39.984290141533101 ], [ -75.259511411335893, 39.984960731753098 ], [ -75.258729337414593, 39.985390625989901 ], [ -75.258569540081496, 39.985521172942498 ], [ -75.258502736091998, 39.985575748909298 ], [ -75.256897869295798, 39.986766319037102 ], [ -75.256298406773993, 39.987209865783399 ], [ -75.256120912252797, 39.987321089838403 ], [ -75.255699221099306, 39.987518731296802 ], [ -75.254002441930197, 39.9883139612582 ], [ -75.2514697729316, 39.989501668814398 ], [ -75.250823379464094, 39.989804781683802 ], [ -75.249191486853704, 39.990571741091699 ], [ -75.248013008666803, 39.991125578826598 ], [ -75.245686196471496, 39.992219024968101 ], [ -75.243790782324496, 39.993109682526999 ], [ -75.2416531152506, 39.994114108645498 ], [ -75.239026913157801, 39.9953450405091 ], [ -75.237361725971397, 39.996125478189697 ], [ -75.235287919385399, 39.997097368829898 ], [ -75.234245348252799, 39.997588506198603 ], [ -75.233230782612395, 39.9980565117176 ], [ -75.232153113613904, 39.998558950778701 ], [ -75.230889529418207, 39.999148045988797 ], [ -75.229455226592094, 39.999820262514 ], [ -75.228741667330596, 40.000155487672799 ], [ -75.228377660659206, 40.0003264925259 ], [ -75.226416493234296, 40.001247784314003 ], [ -75.223631736066295, 40.002555871099702 ], [ -75.220698284264998, 40.003933676911601 ], [ -75.219226468908801, 40.004624920479003 ], [ -75.218347687188498, 40.005037628125102 ], [ -75.215776833612395, 40.006244926290499 ], [ -75.214572154246099, 40.006810621254097 ], [ -75.213757192136001, 40.007155123714902 ], [ -75.213047529765603, 40.007455107130603 ], [ -75.210768586467793, 40.008560546750502 ], [ -75.209268305747003, 40.009496190030198 ], [ -75.208424635465704, 40.010035661418101 ], [ -75.208381169864296, 40.0100619743531 ], [ -75.208379173726598, 40.010063182556998 ], [ -75.208107505822099, 40.010241245694097 ], [ -75.208026321787102, 40.010294798650897 ], [ -75.2079482816698, 40.010346277678003 ], [ -75.207887834885597, 40.010384643779297 ], [ -75.207832593511696, 40.010419705804502 ], [ -75.207625481017303, 40.0105779056248 ], [ -75.207572197671496, 40.0106071381582 ], [ -75.207263937872497, 40.010776262967298 ], [ -75.207253603059499, 40.0108851039775 ], [ -75.207240460755102, 40.0110235077547 ], [ -75.206994053730398, 40.011205279544399 ], [ -75.206164655343102, 40.011817107114901 ], [ -75.206000501152005, 40.011716537523803 ], [ -75.205590520020095, 40.0114726074099 ], [ -75.205561486137597, 40.011455332388998 ], [ -75.205251049087494, 40.0112799621877 ], [ -75.204923031256499, 40.011105386221999 ], [ -75.204551581122104, 40.010919065896701 ], [ -75.204136256637597, 40.0107213360602 ], [ -75.203728604499403, 40.010537136693202 ], [ -75.203714942888297, 40.010530963679997 ], [ -75.203288738669201, 40.010347735200199 ], [ -75.202897389416506, 40.010187493474 ], [ -75.202500899989104, 40.010034196583803 ], [ -75.202220656663499, 40.0099307670881 ], [ -75.201898127316696, 40.009816154011801 ], [ -75.201573657890194, 40.009705057708899 ], [ -75.201247680982206, 40.009597221070003 ], [ -75.2010015958233, 40.009519431621897 ], [ -75.200712696609898, 40.009431917925099 ], [ -75.199549623986101, 40.009095130816 ], [ -75.199251434770503, 40.009004862553198 ], [ -75.199054189388605, 40.008945152237402 ], [ -75.198686586560896, 40.008825263981301 ], [ -75.197795069687302, 40.0085189271621 ], [ -75.197506965089801, 40.008424205826003 ], [ -75.197413137128095, 40.008393357903898 ], [ -75.197412901978396, 40.0083932860014 ], [ -75.1970982588781, 40.008297401441702 ], [ -75.196926856054603, 40.008248889366001 ], [ -75.196764912583404, 40.0082030543456 ], [ -75.195671851811795, 40.007914135333998 ], [ -75.195295626189306, 40.007810963200903 ], [ -75.194923443267399, 40.007701178099197 ], [ -75.194597473815193, 40.007595559490198 ], [ -75.194477343986804, 40.0075524187205 ], [ -75.194359020489102, 40.007506241996602 ], [ -75.194242280803294, 40.0074574316248 ], [ -75.194088705128706, 40.0073889484324 ], [ -75.193861721446197, 40.007280866780498 ], [ -75.193852915244804, 40.007276476532603 ], [ -75.193376019312197, 40.007038720369202 ], [ -75.193192511910198, 40.006949292246802 ], [ -75.193089174072, 40.006898932962798 ], [ -75.192961150275906, 40.0068365422471 ], [ -75.192804663472998, 40.006749919151602 ], [ -75.192714230190902, 40.006692362289002 ], [ -75.192619819703097, 40.006622134203297 ], [ -75.192561570381699, 40.006571501153203 ], [ -75.192480049545395, 40.006490202887299 ], [ -75.192429148540199, 40.0064343589572 ], [ -75.192356234486496, 40.006347445343103 ], [ -75.192093897362895, 40.006012225180598 ], [ -75.192016371510107, 40.005904442177297 ], [ -75.191956915103205, 40.005812610402202 ], [ -75.191904182050493, 40.005718874106897 ], [ -75.191859040330101, 40.0056231138866 ], [ -75.191774840130904, 40.005428896172198 ], [ -75.191697765617207, 40.005232053962402 ], [ -75.191640910822301, 40.005066356873698 ], [ -75.191592409060206, 40.004899442128199 ], [ -75.191560661311399, 40.004765218937003 ], [ -75.191516860977899, 40.004529269262797 ], [ -75.191458054959597, 40.004190467683998 ], [ -75.191410443619105, 40.003884297738999 ], [ -75.191378808229302, 40.003645669202001 ], [ -75.191356580571494, 40.003440972309001 ], [ -75.191339765622502, 40.003236281616203 ], [ -75.191330501979195, 40.003065813676798 ], [ -75.191326081808896, 40.0028955311722 ], [ -75.191326366156602, 40.002759494474397 ], [ -75.191330294510294, 40.002623666035497 ], [ -75.191339330055698, 40.002453943819297 ], [ -75.191352161688201, 40.002284185474203 ], [ -75.191372137332195, 40.002080452605497 ], [ -75.191420055512296, 40.001706985520798 ], [ -75.191485726545395, 40.001299831693402 ], [ -75.191555939941907, 40.000923307891 ], [ -75.191567865179906, 40.000859354394898 ], [ -75.191738982671197, 40.000015266336803 ], [ -75.191827182800793, 39.999624333401201 ], [ -75.191965992676998, 39.999076348327499 ], [ -75.192228621353195, 39.998107222682499 ], [ -75.1923252432737, 39.997739261767002 ], [ -75.192449954374197, 39.997482618902801 ], [ -75.192672397050202, 39.996998185683402 ], [ -75.192719488476996, 39.996899122124802 ], [ -75.192779286050893, 39.996773330328601 ], [ -75.192893013918194, 39.996551169874301 ], [ -75.193017114180506, 39.996333093976403 ], [ -75.193074350417703, 39.9962412282595 ], [ -75.193154874185794, 39.996120371462197 ], [ -75.193259701265802, 39.995970576799103 ], [ -75.193368362949798, 39.995821942356699 ], [ -75.1935731445366, 39.995557619394297 ], [ -75.193796013473204, 39.995289770497997 ], [ -75.194015047126001, 39.9950433464317 ], [ -75.1942504233444, 39.994794494532997 ], [ -75.194494345192197, 39.9945518872021 ], [ -75.194719074338906, 39.9943413514331 ], [ -75.194776150113697, 39.994290378048703 ], [ -75.194950443750699, 39.994134718454497 ], [ -75.195186879996697, 39.993931058507499 ], [ -75.1960918425915, 39.993177934758798 ], [ -75.196449048416795, 39.992873743758203 ], [ -75.196492637429699, 39.9928351989481 ], [ -75.196652824454802, 39.992693549102903 ], [ -75.196823799106696, 39.992536893987001 ], [ -75.196836266634406, 39.992525050978699 ], [ -75.196963169956305, 39.992404495355601 ], [ -75.197126413968107, 39.992243234024002 ], [ -75.197286257872605, 39.992079944380997 ], [ -75.197443182904706, 39.99191491285 ], [ -75.197775063769996, 39.991552482352802 ], [ -75.1979183686082, 39.991390294582303 ], [ -75.198074391544694, 39.991213711130897 ], [ -75.198839272596999, 39.990333300435701 ], [ -75.199039563217795, 39.990107747965098 ], [ -75.199242885696194, 39.989883959143 ], [ -75.199837151535107, 39.989245428535703 ], [ -75.200150881078699, 39.988914031682697 ], [ -75.200471351333306, 39.9885868373877 ], [ -75.200745988760701, 39.988319112340697 ], [ -75.200914951020195, 39.988161251779303 ], [ -75.201087558860806, 39.988005825369797 ], [ -75.201263874046802, 39.987852810140197 ], [ -75.201443387228295, 39.987701857788103 ], [ -75.201840652065698, 39.987380176354897 ], [ -75.202680762471402, 39.986721888788303 ], [ -75.203050195302595, 39.986426861793703 ], [ -75.203351566209804, 39.986176878372497 ], [ -75.203746489823502, 39.985838710776001 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 9, "disday": "1ATHU", "sandis": "1A", "collday": "THU", "Shape__Area": 4378818.5, "Shape__Length": 9663.1902117277677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.230172897731606, 39.9788037693394 ], [ -75.227134808937905, 39.977389301650199 ], [ -75.226613346940198, 39.977459364241298 ], [ -75.226768055836303, 39.977220384184498 ], [ -75.226834086411003, 39.977095526996003 ], [ -75.226750685832101, 39.976314836036103 ], [ -75.226716971497297, 39.976143496287797 ], [ -75.226657174850104, 39.975758938623699 ], [ -75.226480069460706, 39.974850340021298 ], [ -75.226469569573993, 39.974798102648201 ], [ -75.226376607226598, 39.974252236944103 ], [ -75.226256570031296, 39.9736484956534 ], [ -75.226133369113001, 39.972973252606103 ], [ -75.226005074050704, 39.972316198375303 ], [ -75.2259895575191, 39.972231420985104 ], [ -75.225844163675902, 39.971439822824102 ], [ -75.225836708938303, 39.971373734638902 ], [ -75.225618710883793, 39.970488280380003 ], [ -75.225375466261099, 39.969526874584801 ], [ -75.225216191185396, 39.968597758686499 ], [ -75.225142821793696, 39.968154782289503 ], [ -75.225048668680103, 39.9675943845047 ], [ -75.224965752663394, 39.967119924211701 ], [ -75.2248898296276, 39.966652047245503 ], [ -75.224815182304198, 39.966215275503998 ], [ -75.224743785304497, 39.965774282867997 ], [ -75.224643041878096, 39.9651930282782 ], [ -75.2245930381508, 39.964905103016797 ], [ -75.224221803041303, 39.963095741972502 ], [ -75.224543922317295, 39.961576901948597 ], [ -75.224707670916999, 39.960817318333902 ], [ -75.224869856584604, 39.960014820743702 ], [ -75.224998495806105, 39.9594445531012 ], [ -75.225044522635699, 39.959229849077502 ], [ -75.225088551026104, 39.9590087373087 ], [ -75.225189187909194, 39.958485939514397 ], [ -75.225354586593397, 39.957723806591801 ], [ -75.225517163105295, 39.956962502484302 ], [ -75.225636731442506, 39.956381209233399 ], [ -75.225748076425305, 39.9558232708277 ], [ -75.227726135587901, 39.956065922113801 ], [ -75.229526918886407, 39.9562892229022 ], [ -75.2316767747527, 39.956553305034198 ], [ -75.232633142723401, 39.956673013034703 ], [ -75.233735451886204, 39.9568110057197 ], [ -75.234436157528805, 39.956897644642297 ], [ -75.235013600966298, 39.956964124879597 ], [ -75.235747941605794, 39.957058453249601 ], [ -75.235506455075196, 39.958201225018001 ], [ -75.236226395348496, 39.958290312262399 ], [ -75.236820348036304, 39.958366213353699 ], [ -75.237450339765601, 39.958442552828203 ], [ -75.237289735092602, 39.959157305688798 ], [ -75.237291643298704, 39.959201443061602 ], [ -75.237129681151302, 39.959963978215598 ], [ -75.236973350371997, 39.960707466089097 ], [ -75.236810834258094, 39.961480097948801 ], [ -75.236679159627101, 39.962102626480402 ], [ -75.236642681868602, 39.9622946510978 ], [ -75.236590152054603, 39.962528584324701 ], [ -75.236483638182307, 39.963056203478097 ], [ -75.236314900978499, 39.963813502370002 ], [ -75.236165600589203, 39.964574350683002 ], [ -75.236005699262705, 39.965334899913501 ], [ -75.235844741203493, 39.966094702330501 ], [ -75.235524701393601, 39.967614573044401 ], [ -75.235354497394198, 39.968455503367899 ], [ -75.236010058475301, 39.968632115863102 ], [ -75.236204826453204, 39.968686207083799 ], [ -75.236540720543701, 39.968781054585101 ], [ -75.236711846183795, 39.968832002445197 ], [ -75.237105082328696, 39.968942155239603 ], [ -75.237243072484702, 39.968986630078902 ], [ -75.237295241983801, 39.969269226054202 ], [ -75.237457954763101, 39.970150605342504 ], [ -75.237744523369003, 39.971687926753297 ], [ -75.237985163758907, 39.972966632158702 ], [ -75.238279884700006, 39.9745623838147 ], [ -75.238572493870095, 39.976110593129398 ], [ -75.238692664343702, 39.976736220572803 ], [ -75.238794740129094, 39.977289795839397 ], [ -75.238847248995299, 39.977566504786999 ], [ -75.238893864785993, 39.9778275092713 ], [ -75.239008387200798, 39.978432315006998 ], [ -75.239052234921104, 39.978662861102997 ], [ -75.2391276385125, 39.979079033745698 ], [ -75.239191013450494, 39.979424282722903 ], [ -75.239260643868505, 39.979763682300998 ], [ -75.2393053973326, 39.980025059345898 ], [ -75.2393815176396, 39.980433426793198 ], [ -75.236133402769696, 39.980794457994797 ], [ -75.236165582671902, 39.980979350470399 ], [ -75.235690938582295, 39.980812750061197 ], [ -75.2353230484308, 39.980705952284502 ], [ -75.234624423379898, 39.980553284567698 ], [ -75.2340495345031, 39.980411110741898 ], [ -75.233962784005797, 39.980383262035801 ], [ -75.232841324266502, 39.979972845854803 ], [ -75.232424253471393, 39.979806571754096 ], [ -75.232100443143196, 39.979703238766803 ], [ -75.230799272951003, 39.9791012852466 ], [ -75.230172897731606, 39.9788037693394 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 10, "disday": "1ATUE", "sandis": "1A", "collday": "TUE", "Shape__Area": 5247780.36328125, "Shape__Length": 13046.444363362461 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.231334330381799, 39.9826503030799 ], [ -75.230967146766503, 39.982516242786801 ], [ -75.230793649195903, 39.982525767492803 ], [ -75.230649771792997, 39.982356808831199 ], [ -75.230398085285898, 39.981986227884903 ], [ -75.230101815068807, 39.981565218038298 ], [ -75.229846123867603, 39.981204715554803 ], [ -75.229699947474003, 39.981071336800497 ], [ -75.229672098638304, 39.981045926198497 ], [ -75.228794447357203, 39.980714659032202 ], [ -75.2288011712414, 39.980701596333702 ], [ -75.228895080820095, 39.980449704449697 ], [ -75.228947376806502, 39.980188516397199 ], [ -75.228969478709601, 39.979925321663998 ], [ -75.228949454434996, 39.979660258184403 ], [ -75.228841756016607, 39.979412419337997 ], [ -75.228680363479597, 39.979176792235897 ], [ -75.228474544125305, 39.978969135970999 ], [ -75.228227959463297, 39.978785783513999 ], [ -75.227975379432607, 39.978605782895798 ], [ -75.226302370250494, 39.977960247829003 ], [ -75.226452993981795, 39.977726250928598 ], [ -75.226613346940198, 39.977459364241298 ], [ -75.227134808937905, 39.977389301650199 ], [ -75.230172897731606, 39.9788037693394 ], [ -75.230799272951003, 39.9791012852466 ], [ -75.232100443143196, 39.979703238766803 ], [ -75.232424253471393, 39.979806571754096 ], [ -75.232841324266502, 39.979972845854803 ], [ -75.233962784005797, 39.980383262035801 ], [ -75.2340495345031, 39.980411110741898 ], [ -75.234624423379898, 39.980553284567698 ], [ -75.2353230484308, 39.980705952284502 ], [ -75.235690938582295, 39.980812750061197 ], [ -75.236165582671902, 39.980979350470399 ], [ -75.236133402769696, 39.980794457994797 ], [ -75.2393815176396, 39.980433426793198 ], [ -75.2393053973326, 39.980025059345898 ], [ -75.239260643868505, 39.979763682300998 ], [ -75.239191013450494, 39.979424282722903 ], [ -75.2391276385125, 39.979079033745698 ], [ -75.239052234921104, 39.978662861102997 ], [ -75.239008387200798, 39.978432315006998 ], [ -75.238893864785993, 39.9778275092713 ], [ -75.238847248995299, 39.977566504786999 ], [ -75.238794740129094, 39.977289795839397 ], [ -75.238692664343702, 39.976736220572803 ], [ -75.238572493870095, 39.976110593129398 ], [ -75.238279884700006, 39.9745623838147 ], [ -75.237985163758907, 39.972966632158702 ], [ -75.237744523369003, 39.971687926753297 ], [ -75.237457954763101, 39.970150605342504 ], [ -75.237295241983801, 39.969269226054202 ], [ -75.237243072484702, 39.968986630078902 ], [ -75.237105082328696, 39.968942155239603 ], [ -75.236711846183795, 39.968832002445197 ], [ -75.236540720543701, 39.968781054585101 ], [ -75.236204826453204, 39.968686207083799 ], [ -75.236010058475301, 39.968632115863102 ], [ -75.235354497394198, 39.968455503367899 ], [ -75.235524701393601, 39.967614573044401 ], [ -75.235844741203493, 39.966094702330501 ], [ -75.236005699262705, 39.965334899913501 ], [ -75.236165600589203, 39.964574350683002 ], [ -75.236823925471597, 39.964657347061802 ], [ -75.237480714968996, 39.964737478686502 ], [ -75.238138822965098, 39.9648199275127 ], [ -75.238847154827198, 39.964904617805303 ], [ -75.239477814891202, 39.964983764181703 ], [ -75.240112542597799, 39.965064187153402 ], [ -75.240756999709205, 39.965143596708899 ], [ -75.241102590865196, 39.965187319890802 ], [ -75.241347623556194, 39.965218027922504 ], [ -75.242090005182305, 39.965312934445599 ], [ -75.242764055415407, 39.9653935335688 ], [ -75.243080194467097, 39.9654353115302 ], [ -75.243384801693793, 39.965472002859599 ], [ -75.243563763779605, 39.965493450193598 ], [ -75.2440649861678, 39.965553162562202 ], [ -75.245054294692494, 39.965677085366401 ], [ -75.245521834520005, 39.965732019520203 ], [ -75.246110802516498, 39.965806361019901 ], [ -75.246427603984102, 39.964285671920202 ], [ -75.246865222814193, 39.964337688218201 ], [ -75.247005538051297, 39.964324080939598 ], [ -75.247112626847795, 39.964303688619701 ], [ -75.247211231675493, 39.964299777682697 ], [ -75.247311133841507, 39.964314079673798 ], [ -75.247402330228994, 39.964350920105403 ], [ -75.247449172822002, 39.964399990788401 ], [ -75.247465213598403, 39.964461390044399 ], [ -75.247467085781594, 39.9645174959822 ], [ -75.247170957408201, 39.965936764177698 ], [ -75.248159590687905, 39.966060414585002 ], [ -75.2487551331904, 39.966135129910697 ], [ -75.249294312801794, 39.966202040100697 ], [ -75.250135010437106, 39.966308148526998 ], [ -75.250220268767507, 39.966301065497298 ], [ -75.250400332278602, 39.966316235354697 ], [ -75.250604272260901, 39.966335137964599 ], [ -75.250937230346096, 39.966375596320098 ], [ -75.251122181079097, 39.966407145171701 ], [ -75.250988338432506, 39.9671243658089 ], [ -75.250921510436299, 39.967436755052503 ], [ -75.250830398839497, 39.967803779407099 ], [ -75.250803233834802, 39.967946522718599 ], [ -75.250483541003405, 39.969469234884102 ], [ -75.250944765956007, 39.969521560728197 ], [ -75.251471264304001, 39.969587544163801 ], [ -75.2525678591646, 39.969725081923201 ], [ -75.253444140517601, 39.969831779129699 ], [ -75.253372961565603, 39.970177558408402 ], [ -75.253126886270493, 39.971347921055703 ], [ -75.253106263909004, 39.971395340109801 ], [ -75.253149675170604, 39.971644794815802 ], [ -75.253252185887405, 39.972136983540501 ], [ -75.253302111085503, 39.972441824076498 ], [ -75.254227281032996, 39.972591520151703 ], [ -75.254903790826205, 39.972700028436101 ], [ -75.255010326013902, 39.9732824305229 ], [ -75.255198715072098, 39.9742697731416 ], [ -75.255328043266303, 39.974955301987102 ], [ -75.255434312230193, 39.975532137695801 ], [ -75.255493766649593, 39.975863207391299 ], [ -75.2556647708209, 39.976764881551397 ], [ -75.255927022564606, 39.978129732105401 ], [ -75.255459915069494, 39.9783066618348 ], [ -75.255026118128598, 39.978477767324001 ], [ -75.254821165183699, 39.9785580755034 ], [ -75.254473580455794, 39.978712488507597 ], [ -75.254255398952196, 39.978844560900001 ], [ -75.253932155768396, 39.979076271379299 ], [ -75.253718808291595, 39.979287006106802 ], [ -75.253499067613205, 39.979542721141797 ], [ -75.253293316704898, 39.979886291997502 ], [ -75.253107396104198, 39.980189764756503 ], [ -75.252860470722595, 39.980499529542399 ], [ -75.252546453779402, 39.980779158054197 ], [ -75.252212337228599, 39.981021600538902 ], [ -75.251777092956402, 39.981253732789298 ], [ -75.251444550907806, 39.981417609555798 ], [ -75.251066457945797, 39.981610194711699 ], [ -75.249750715544295, 39.982272212160296 ], [ -75.248348647001094, 39.982977635245703 ], [ -75.247097219527106, 39.9836046666709 ], [ -75.245757418960807, 39.984282853956998 ], [ -75.245840095372898, 39.984519704958501 ], [ -75.246700162989796, 39.986063834722103 ], [ -75.246442345053893, 39.986183276943997 ], [ -75.245481300487697, 39.986628500796101 ], [ -75.245179831627397, 39.986103597699099 ], [ -75.245105588750704, 39.985999776109203 ], [ -75.2449906777438, 39.985899961050997 ], [ -75.244820156172594, 39.985804262328699 ], [ -75.244672837086995, 39.985728817759799 ], [ -75.244492935472493, 39.985676237073903 ], [ -75.244241262399697, 39.985640333373503 ], [ -75.243887076522498, 39.985593519606702 ], [ -75.243420149039395, 39.9855547517476 ], [ -75.242884276224103, 39.985498016617001 ], [ -75.241262959990195, 39.985324572967201 ], [ -75.240155677492098, 39.985222942804597 ], [ -75.239658847298102, 39.9851681914433 ], [ -75.238232811731507, 39.9850421540702 ], [ -75.237775984323306, 39.9849871139714 ], [ -75.237393170287305, 39.9848631805895 ], [ -75.237243381302207, 39.984849379467299 ], [ -75.237161750125907, 39.9847740900479 ], [ -75.236864057227095, 39.984663844036497 ], [ -75.236442020166194, 39.984539963042899 ], [ -75.234735540499699, 39.983909041636302 ], [ -75.234188355433702, 39.983711895718301 ], [ -75.233853097421303, 39.9835865554805 ], [ -75.233198693542306, 39.983341584433703 ], [ -75.231334330381799, 39.9826503030799 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 11, "disday": "1AWED", "sandis": "1A", "collday": "WED", "Shape__Area": 4365053.54296875, "Shape__Length": 9489.7422500817956 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.236590152054603, 39.962528584324701 ], [ -75.236642681868602, 39.9622946510978 ], [ -75.236679159627101, 39.962102626480402 ], [ -75.236810834258094, 39.961480097948801 ], [ -75.236973350371997, 39.960707466089097 ], [ -75.237129681151302, 39.959963978215598 ], [ -75.237291643298704, 39.959201443061602 ], [ -75.237289735092602, 39.959157305688798 ], [ -75.237450339765601, 39.958442552828203 ], [ -75.236820348036304, 39.958366213353699 ], [ -75.236226395348496, 39.958290312262399 ], [ -75.235506455075196, 39.958201225018001 ], [ -75.235747941605794, 39.957058453249601 ], [ -75.235856024451095, 39.956546140132502 ], [ -75.236000335308006, 39.955840653707902 ], [ -75.236117082058001, 39.955292694095 ], [ -75.236218714448, 39.954780345705501 ], [ -75.236332406442102, 39.954245556421 ], [ -75.236427701032895, 39.953786589940101 ], [ -75.236546366843001, 39.953257866863503 ], [ -75.236648337181293, 39.952725514512601 ], [ -75.236747061469501, 39.9522637866541 ], [ -75.236862844278207, 39.951705602518899 ], [ -75.236977912248406, 39.951157737053698 ], [ -75.237061523589105, 39.950710211877798 ], [ -75.237171811675694, 39.950211483642398 ], [ -75.237337403647402, 39.949456137134497 ], [ -75.237483824399007, 39.948695898009703 ], [ -75.237588567776697, 39.9481662376255 ], [ -75.237694989192207, 39.947699527690602 ], [ -75.237806975517699, 39.947173825293703 ], [ -75.237983025879501, 39.946341005385499 ], [ -75.238731285128395, 39.946195192433201 ], [ -75.239342213361397, 39.946084577351002 ], [ -75.240054954708199, 39.9459266421688 ], [ -75.240269387656397, 39.9458751841508 ], [ -75.239699272631896, 39.945372976945798 ], [ -75.239188792905793, 39.9449467104969 ], [ -75.238878740788095, 39.944689529623602 ], [ -75.238893238083605, 39.944683645455903 ], [ -75.239194227635096, 39.944558648631698 ], [ -75.239494694736294, 39.944432744018599 ], [ -75.2397964225881, 39.944308011397098 ], [ -75.2400973227316, 39.944182110225803 ], [ -75.240395123647303, 39.944052489652698 ], [ -75.240687551449895, 39.943916598798197 ], [ -75.240972212699305, 39.943771731922602 ], [ -75.241248415254603, 39.9436170405273 ], [ -75.241519240488003, 39.943456061789902 ], [ -75.241788065853697, 39.943292684412597 ], [ -75.242058272278399, 39.943130798942697 ], [ -75.242333350117207, 39.942974408208499 ], [ -75.242616599228199, 39.942826968441601 ], [ -75.242902533713007, 39.942682409510503 ], [ -75.243184339990805, 39.942533303356598 ], [ -75.243417204311996, 39.942405952761803 ], [ -75.243436489933302, 39.9424216649725 ], [ -75.243533122805601, 39.942451992174199 ], [ -75.243846466339704, 39.942487054544202 ], [ -75.244071640637998, 39.942510784328299 ], [ -75.244411934070399, 39.942560542578903 ], [ -75.244661007954406, 39.942598901018798 ], [ -75.245015071718996, 39.942606634103399 ], [ -75.245228210574297, 39.942625396471797 ], [ -75.245411692420305, 39.942619998553297 ], [ -75.245564479313202, 39.942618631513703 ], [ -75.245741858157004, 39.942613099811403 ], [ -75.245888712862794, 39.9426069005426 ], [ -75.246053362865894, 39.942615197305201 ], [ -75.246193594022003, 39.9426229616925 ], [ -75.246351273236201, 39.942654619057599 ], [ -75.246472671665103, 39.942676078861297 ], [ -75.246569133135495, 39.942711102907097 ], [ -75.246664556200997, 39.942774318779698 ], [ -75.246746730268896, 39.9428654617953 ], [ -75.246824988858606, 39.942980031591198 ], [ -75.2468740451977, 39.943140991338801 ], [ -75.246966873069596, 39.943274689884497 ], [ -75.247023764880694, 39.943388793255203 ], [ -75.247030123442798, 39.943419140474397 ], [ -75.247044549652799, 39.943488000957402 ], [ -75.247053817130194, 39.943568147319503 ], [ -75.247110363166399, 39.943691649450699 ], [ -75.247212113878305, 39.943914891156602 ], [ -75.247305980593694, 39.944020396587803 ], [ -75.247380669573602, 39.944148996701898 ], [ -75.2474239699159, 39.944300424220899 ], [ -75.247511387152699, 39.944415193305502 ], [ -75.2476354328073, 39.944530762306101 ], [ -75.247758960997004, 39.944660427606401 ], [ -75.247900456641304, 39.9447998892513 ], [ -75.248093670868201, 39.944945181071397 ], [ -75.248169919277402, 39.945031491439401 ], [ -75.248215470780295, 39.945121834512598 ], [ -75.248235218728198, 39.945249234791099 ], [ -75.248322639691494, 39.945364004181201 ], [ -75.248416337167399, 39.945474207204498 ], [ -75.248565498115099, 39.945571511947698 ], [ -75.248707862068102, 39.945687479174602 ], [ -75.248897510088298, 39.945846799506697 ], [ -75.249081053356505, 39.946005987305703 ], [ -75.249246110047906, 39.946169474035699 ], [ -75.249429655037005, 39.946328660375599 ], [ -75.249495252702602, 39.946372414436503 ], [ -75.249555090649395, 39.946406636554499 ], [ -75.249615448477996, 39.946426763150598 ], [ -75.249711744013098, 39.946466483056902 ], [ -75.249812588211498, 39.9465486251895 ], [ -75.249919191389594, 39.9466402981949 ], [ -75.249968143750095, 39.946721308268998 ], [ -75.250037600563999, 39.946826279269303 ], [ -75.250117363981502, 39.946983203448497 ], [ -75.250154913414505, 39.947125098976599 ], [ -75.250205017802003, 39.947257863548799 ], [ -75.250230357235793, 39.947399493856999 ], [ -75.250272283167206, 39.947588511041502 ], [ -75.250309832055194, 39.947730407391902 ], [ -75.250341795070099, 39.947858073383301 ], [ -75.2503674807176, 39.947990305746501 ], [ -75.250418277522101, 39.948104275297403 ], [ -75.250476217379301, 39.9481901841311 ], [ -75.250559095635495, 39.948262528605099 ], [ -75.250725543925896, 39.948388423345499 ], [ -75.251065353598904, 39.948701494893101 ], [ -75.251194826657297, 39.948835987953103 ], [ -75.251319060618201, 39.9489468535782 ], [ -75.251443812140394, 39.949043622619001 ], [ -75.251508204337796, 39.949120266882296 ], [ -75.251559003932599, 39.949234235025202 ], [ -75.251569717509796, 39.949441382694701 ], [ -75.251519552736099, 39.949642501250899 ], [ -75.251414439900401, 39.949842422966498 ], [ -75.251311745440503, 39.949976561877499 ], [ -75.251244819014303, 39.950134992089403 ], [ -75.251196897962004, 39.9502750253776 ], [ -75.251154737078593, 39.9504245904699 ], [ -75.2511519148986, 39.9505844170261 ], [ -75.251141922045406, 39.950690007208003 ], [ -75.251175615986597, 39.950770685185397 ], [ -75.251269354685903, 39.950963182099699 ], [ -75.251351200414504, 39.9510637197425 ], [ -75.251427459857496, 39.951150027034203 ], [ -75.251493063495602, 39.951193779048097 ], [ -75.251543921503, 39.951223102156 ], [ -75.251587292461906, 39.951289883044801 ], [ -75.251610965398001, 39.951393855779003 ], [ -75.251611312104401, 39.951509076613497 ], [ -75.251628101576799, 39.9516340609945 ], [ -75.251648031740402, 39.951756762185603 ], [ -75.251650508542895, 39.9518555710114 ], [ -75.2516465348602, 39.951963643895503 ], [ -75.251615691674303, 39.952054672299901 ], [ -75.251579088936694, 39.952136170719299 ], [ -75.251513801245196, 39.952249962080401 ], [ -75.251412543519194, 39.9523864831258 ], [ -75.251284300785699, 39.952550631745602 ], [ -75.2511881402162, 39.952673155921502 ], [ -75.251154415778501, 39.952759419189697 ], [ -75.251153839956004, 39.952858161544903 ], [ -75.251180910341603, 39.952952802928898 ], [ -75.251208241174893, 39.953040396120997 ], [ -75.251184712778894, 39.953098666063198 ], [ -75.251151506543493, 39.953170832908199 ], [ -75.251103209720895, 39.9532379687586 ], [ -75.251050333135396, 39.953305003927397 ], [ -75.250924593706898, 39.9534010197413 ], [ -75.250792401997998, 39.953506299401802 ], [ -75.250650620684794, 39.953623126122899 ], [ -75.250490261825405, 39.953746602671202 ], [ -75.250354325343807, 39.953870610253503 ], [ -75.250139043210297, 39.954075185212098 ], [ -75.250050366683098, 39.954160250723902 ], [ -75.250006129167403, 39.954241582328002 ], [ -75.249956705510698, 39.954339259302799 ], [ -75.249890781531903, 39.954387199651102 ], [ -75.249839948114897, 39.9544401720146 ], [ -75.249800893946599, 39.954505157205197 ], [ -75.249770652313799, 39.9545797389911 ], [ -75.249749741886305, 39.954649822765198 ], [ -75.249762584820104, 39.9547159389912 ], [ -75.249769754837104, 39.954770174546098 ], [ -75.249752070480397, 39.954835625456703 ], [ -75.249697691926798, 39.954984923855399 ], [ -75.249615289348796, 39.955190041425404 ], [ -75.249597864112005, 39.955248444104697 ], [ -75.249559326842302, 39.955299332772803 ], [ -75.2494959360981, 39.955361435853703 ], [ -75.249424596062497, 39.955390447917999 ], [ -75.249359535344396, 39.955414894538798 ], [ -75.249282781693793, 39.955424977618698 ], [ -75.249236470303799, 39.9554380758332 ], [ -75.249201505895599, 39.955474934549997 ], [ -75.249166107917802, 39.955523539940202 ], [ -75.249145715461793, 39.955579526290798 ], [ -75.249124198771099, 39.955666055162503 ], [ -75.249137357224996, 39.955765096962899 ], [ -75.249176638946906, 39.9558600050458 ], [ -75.249219405248098, 39.9559432320357 ], [ -75.249264273662902, 39.956052370486702 ], [ -75.249276597560396, 39.956132583176903 ], [ -75.249236504204902, 39.956225760996603 ], [ -75.249116343344099, 39.956336003419501 ], [ -75.249047450023298, 39.956381527920598 ], [ -75.248990422622896, 39.956436715610899 ], [ -75.248959660310206, 39.956525394490399 ], [ -75.248928033064303, 39.956637567678598 ], [ -75.248949658283294, 39.956755603177101 ], [ -75.249007888343101, 39.9569167607278 ], [ -75.249067131095501, 39.956967430130298 ], [ -75.2491965040266, 39.957021978024798 ], [ -75.249316718397907, 39.957076327038997 ], [ -75.249403351297701, 39.957129943971097 ], [ -75.2495107368308, 39.957205503592199 ], [ -75.249513717731006, 39.957207601198398 ], [ -75.249534393477205, 39.957222149642803 ], [ -75.249640408958101, 39.957330269025803 ], [ -75.249780179529907, 39.957434420761501 ], [ -75.250039099645505, 39.957663435923699 ], [ -75.250180713461901, 39.957800545914203 ], [ -75.250244939695605, 39.957881888476003 ], [ -75.250361958238997, 39.958023165490999 ], [ -75.250465009413304, 39.958128866981397 ], [ -75.250561694876396, 39.9582414844472 ], [ -75.250668144565196, 39.958337855238298 ], [ -75.250737873604706, 39.9584357775787 ], [ -75.250795216538805, 39.958538132326403 ], [ -75.250841615917295, 39.958647302510698 ], [ -75.250878019965498, 39.958737444960299 ], [ -75.250884241832097, 39.958817524499501 ], [ -75.2508945804814, 39.958951773880599 ], [ -75.250885450205402, 39.959033869689101 ], [ -75.250852154320299, 39.9591083861405 ], [ -75.250755350185798, 39.959165059838199 ], [ -75.250608660201493, 39.959248862120504 ], [ -75.250456037076106, 39.959327832689098 ], [ -75.250294254544599, 39.959406603498003 ], [ -75.250083363610798, 39.959491356994199 ], [ -75.249827942920803, 39.9595821944921 ], [ -75.249654378891194, 39.9596489506526 ], [ -75.249555038366694, 39.9596914603801 ], [ -75.249445502151701, 39.959761963245803 ], [ -75.249320094419005, 39.959848579379099 ], [ -75.249303684981996, 39.959861595124998 ], [ -75.249216229844095, 39.959930961790199 ], [ -75.249125097607305, 39.959999514832496 ], [ -75.248975436873295, 39.960080898765 ], [ -75.248838853264999, 39.960139055328099 ], [ -75.248692678999603, 39.960208757876003 ], [ -75.248549555472707, 39.960278528560998 ], [ -75.248461648610103, 39.960342447346797 ], [ -75.248386440438694, 39.960434860204899 ], [ -75.248337270648406, 39.960525488290003 ], [ -75.2482845281652, 39.9606301470792 ], [ -75.248201254415605, 39.960734139192603 ], [ -75.248060863122106, 39.960895669094398 ], [ -75.247977329137001, 39.961006709247002 ], [ -75.247925191409095, 39.961094921764598 ], [ -75.247894166020501, 39.961190648550499 ], [ -75.247874542721704, 39.961350107857498 ], [ -75.247874308178993, 39.961439452273403 ], [ -75.2478689184221, 39.961502820398501 ], [ -75.247843134515904, 39.961622173759402 ], [ -75.247825012717797, 39.961699371039501 ], [ -75.247810032066894, 39.961774286135302 ], [ -75.247776818008404, 39.961846451988698 ], [ -75.247743776932197, 39.961913919331401 ], [ -75.247710562735193, 39.9619860851653 ], [ -75.247704568240493, 39.962065898510502 ], [ -75.247729506156205, 39.962176953518401 ], [ -75.2477640670688, 39.962234138170899 ], [ -75.247779530393998, 39.962312067903802 ], [ -75.247755673432394, 39.962462031218301 ], [ -75.247693928947101, 39.962811027978702 ], [ -75.247690063110596, 39.962826688494403 ], [ -75.247650654777402, 39.962822837717198 ], [ -75.246755825589602, 39.962714438842703 ], [ -75.246686249613603, 39.963047512270101 ], [ -75.246427603984102, 39.964285671920202 ], [ -75.246110802516498, 39.965806361019901 ], [ -75.245521834520005, 39.965732019520203 ], [ -75.245054294692494, 39.965677085366401 ], [ -75.2440649861678, 39.965553162562202 ], [ -75.243563763779605, 39.965493450193598 ], [ -75.243384801693793, 39.965472002859599 ], [ -75.243080194467097, 39.9654353115302 ], [ -75.242764055415407, 39.9653935335688 ], [ -75.242090005182305, 39.965312934445599 ], [ -75.241347623556194, 39.965218027922504 ], [ -75.241102590865196, 39.965187319890802 ], [ -75.240756999709205, 39.965143596708899 ], [ -75.240112542597799, 39.965064187153402 ], [ -75.239477814891202, 39.964983764181703 ], [ -75.238847154827198, 39.964904617805303 ], [ -75.238138822965098, 39.9648199275127 ], [ -75.237480714968996, 39.964737478686502 ], [ -75.236823925471597, 39.964657347061802 ], [ -75.236165600589203, 39.964574350683002 ], [ -75.236314900978499, 39.963813502370002 ], [ -75.236483638182307, 39.963056203478097 ], [ -75.236590152054603, 39.962528584324701 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 12, "disday": "1BTUE", "sandis": "1B", "collday": "TUE", "Shape__Area": 7409197.56640625, "Shape__Length": 12598.703971935518 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.226205316491601, 39.981617239553998 ], [ -75.225165500305707, 39.981346001215101 ], [ -75.224068731009893, 39.981517553917001 ], [ -75.223792639307902, 39.981529195075701 ], [ -75.223677038843306, 39.981518431528798 ], [ -75.223548206134296, 39.981483892955602 ], [ -75.223160075170298, 39.981390375729198 ], [ -75.222491526666303, 39.981145876023298 ], [ -75.221455298770096, 39.980758583520398 ], [ -75.219254483371003, 39.979944355849099 ], [ -75.216817805229397, 39.979035608538702 ], [ -75.214383089109205, 39.978137864326101 ], [ -75.213472607698506, 39.9778001758296 ], [ -75.2133069033613, 39.977226465879198 ], [ -75.213124515924605, 39.976554755214501 ], [ -75.213012137914902, 39.976147377088999 ], [ -75.212617524312407, 39.974731007014597 ], [ -75.212423555798097, 39.973992984582097 ], [ -75.212214779443102, 39.973251708678397 ], [ -75.212173131447102, 39.973146510175397 ], [ -75.212150038950796, 39.973020726890901 ], [ -75.2120575602965, 39.9725170146381 ], [ -75.211864166233198, 39.971512597234401 ], [ -75.211817242126401, 39.971264169431898 ], [ -75.211726075064007, 39.970731252786301 ], [ -75.211634340286395, 39.970229079169897 ], [ -75.211579231834605, 39.969946510507903 ], [ -75.211518392399498, 39.969663829437998 ], [ -75.211337657763494, 39.9687351442901 ], [ -75.210104614660693, 39.967970988422302 ], [ -75.209761002658496, 39.967759538124497 ], [ -75.209543609800903, 39.9676261358346 ], [ -75.2084654349446, 39.966958925175099 ], [ -75.207562604483897, 39.966390135253697 ], [ -75.207536116582105, 39.966166763568097 ], [ -75.207501245873502, 39.965905882058401 ], [ -75.207421162512901, 39.965489327912202 ], [ -75.207301568736298, 39.964787438741801 ], [ -75.207102675894006, 39.963670427758302 ], [ -75.206890789567197, 39.962494317948298 ], [ -75.206793213605906, 39.9618981712254 ], [ -75.206683705341405, 39.961244456035097 ], [ -75.206470247714705, 39.960019672235902 ], [ -75.206272591181502, 39.958832318985102 ], [ -75.206173469139401, 39.958237598592397 ], [ -75.206077668627202, 39.957668223074499 ], [ -75.2060582797222, 39.957573390464098 ], [ -75.2061970441912, 39.956892405480602 ], [ -75.206266378322098, 39.956565444054299 ], [ -75.206278556040004, 39.956508020993397 ], [ -75.206345440215301, 39.956146687779203 ], [ -75.206131340374796, 39.956119653264302 ], [ -75.206152900318301, 39.9559433219464 ], [ -75.206276924715397, 39.955356915519097 ], [ -75.206435702630202, 39.954598054370003 ], [ -75.206674996330406, 39.9534566135533 ], [ -75.206932510047594, 39.952229935896099 ], [ -75.2069927275612, 39.951910329696098 ], [ -75.207045529135598, 39.951679753038 ], [ -75.207148156345298, 39.951170677794103 ], [ -75.208065647334706, 39.951282724296902 ], [ -75.209328162134298, 39.951445846401299 ], [ -75.210771296167195, 39.951623330407102 ], [ -75.212396511130805, 39.951820480753099 ], [ -75.214375557826401, 39.952062961490498 ], [ -75.216351888313596, 39.9523118187794 ], [ -75.218350528746598, 39.952562205352699 ], [ -75.2193526759755, 39.952693482274199 ], [ -75.220297020988596, 39.952802058971201 ], [ -75.221287182892496, 39.9529318012491 ], [ -75.222281831625395, 39.953049063923899 ], [ -75.224246134693402, 39.953294246529801 ], [ -75.226225919784198, 39.953537185974199 ], [ -75.226115522592806, 39.954058374925403 ], [ -75.226004978816206, 39.954600987211201 ], [ -75.225875702193605, 39.9552266422061 ], [ -75.225748076425305, 39.9558232708277 ], [ -75.225636731442506, 39.956381209233399 ], [ -75.225517163105295, 39.956962502484302 ], [ -75.225354586593397, 39.957723806591801 ], [ -75.225189187909194, 39.958485939514397 ], [ -75.225088551026104, 39.9590087373087 ], [ -75.225044522635699, 39.959229849077502 ], [ -75.224998495806105, 39.9594445531012 ], [ -75.224869856584604, 39.960014820743702 ], [ -75.224707670916999, 39.960817318333902 ], [ -75.224543922317295, 39.961576901948597 ], [ -75.224221803041303, 39.963095741972502 ], [ -75.2245930381508, 39.964905103016797 ], [ -75.224643041878096, 39.9651930282782 ], [ -75.224743785304497, 39.965774282867997 ], [ -75.224815182304198, 39.966215275503998 ], [ -75.2248898296276, 39.966652047245503 ], [ -75.224965752663394, 39.967119924211701 ], [ -75.225048668680103, 39.9675943845047 ], [ -75.225142821793696, 39.968154782289503 ], [ -75.225216191185396, 39.968597758686499 ], [ -75.225375466261099, 39.969526874584801 ], [ -75.225618710883793, 39.970488280380003 ], [ -75.225836708938303, 39.971373734638902 ], [ -75.225844163675902, 39.971439822824102 ], [ -75.2259895575191, 39.972231420985104 ], [ -75.226005074050704, 39.972316198375303 ], [ -75.226133369113001, 39.972973252606103 ], [ -75.226256570031296, 39.9736484956534 ], [ -75.226376607226598, 39.974252236944103 ], [ -75.226469569573993, 39.974798102648201 ], [ -75.226480069460706, 39.974850340021298 ], [ -75.226657174850104, 39.975758938623699 ], [ -75.226716971497297, 39.976143496287797 ], [ -75.226750685832101, 39.976314836036103 ], [ -75.226834086411003, 39.977095526996003 ], [ -75.226768055836303, 39.977220384184498 ], [ -75.226613346940198, 39.977459364241298 ], [ -75.226452993981795, 39.977726250928598 ], [ -75.226302370250494, 39.977960247829003 ], [ -75.227975379432607, 39.978605782895798 ], [ -75.228227959463297, 39.978785783513999 ], [ -75.228474544125305, 39.978969135970999 ], [ -75.228680363479597, 39.979176792235897 ], [ -75.228841756016607, 39.979412419337997 ], [ -75.228949454434996, 39.979660258184403 ], [ -75.228969478709601, 39.979925321663998 ], [ -75.228947376806502, 39.980188516397199 ], [ -75.228895080820095, 39.980449704449697 ], [ -75.2288011712414, 39.980701596333702 ], [ -75.228794447357203, 39.980714659032202 ], [ -75.228153531546596, 39.980472741292402 ], [ -75.228026031964902, 39.980739822309197 ], [ -75.227367197183796, 39.982238369515798 ], [ -75.227225113576694, 39.982533714236801 ], [ -75.227060007171005, 39.982700884118998 ], [ -75.226918865182299, 39.982545102841101 ], [ -75.226579549830603, 39.9821054704069 ], [ -75.226205316491601, 39.981617239553998 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 13, "disday": "1BFRI", "sandis": "1B", "collday": "FRI", "Shape__Area": 38858942.65625, "Shape__Length": 39463.525117959551 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.239703949023195, 39.929352336810702 ], [ -75.239783918992799, 39.929114313770597 ], [ -75.239876595667596, 39.928833315679 ], [ -75.239396339850103, 39.928734642898803 ], [ -75.238732019772101, 39.928594179466799 ], [ -75.238314121683601, 39.928869317298698 ], [ -75.238310580722498, 39.928926124057803 ], [ -75.237728449982498, 39.929329065587197 ], [ -75.236999382150302, 39.929184454504103 ], [ -75.236289767791803, 39.929054019735702 ], [ -75.235933268653397, 39.928989310494401 ], [ -75.235591498141503, 39.928914707581797 ], [ -75.235440811015494, 39.928916185999903 ], [ -75.235307683960997, 39.928921280258301 ], [ -75.235100658853995, 39.928886367753002 ], [ -75.234414570955295, 39.9287536098511 ], [ -75.234128483057006, 39.9286982502068 ], [ -75.232976754054306, 39.928475377466597 ], [ -75.234340512737802, 39.927535336911603 ], [ -75.233102587650095, 39.926461200189699 ], [ -75.232488752687701, 39.9259533209813 ], [ -75.231879464151305, 39.925443221657403 ], [ -75.233124652594199, 39.924567070899997 ], [ -75.232962377384297, 39.924421071374702 ], [ -75.232733083788503, 39.924228623556402 ], [ -75.232440032631104, 39.923979533556398 ], [ -75.232180493384206, 39.923758924796303 ], [ -75.233409012968494, 39.922894236666401 ], [ -75.2329739639096, 39.922519647262298 ], [ -75.2326941990992, 39.922287197094398 ], [ -75.232496761165507, 39.922117819710401 ], [ -75.232254945356004, 39.921920404311301 ], [ -75.232066402727398, 39.921762564104903 ], [ -75.231851193665406, 39.9215717137753 ], [ -75.231566913068306, 39.9213409878341 ], [ -75.232224711274398, 39.920874608501997 ], [ -75.232890051641405, 39.920404050159298 ], [ -75.232622117704807, 39.920174164978 ], [ -75.231494629758899, 39.919232482673301 ], [ -75.230097457597495, 39.918055244554601 ], [ -75.230614203047296, 39.917691385225901 ], [ -75.231094469540196, 39.917352976444803 ], [ -75.231611153173205, 39.916984081231298 ], [ -75.231348435045504, 39.916759329395198 ], [ -75.2311433470759, 39.9165869034099 ], [ -75.230932142250197, 39.916418662924698 ], [ -75.230697750781204, 39.916231951173103 ], [ -75.230485720556899, 39.916048690975401 ], [ -75.230199982222899, 39.915816368460398 ], [ -75.232733414854295, 39.913314530250901 ], [ -75.239792305591607, 39.9078392691681 ], [ -75.237771833341199, 39.906117889979498 ], [ -75.235165794265896, 39.9064622777816 ], [ -75.234982773588001, 39.906622086335702 ], [ -75.234734621282996, 39.906881036602897 ], [ -75.234346115718097, 39.907316158874401 ], [ -75.234051956397096, 39.9076511478019 ], [ -75.232946765916694, 39.9088820246739 ], [ -75.232632078778295, 39.909212205037399 ], [ -75.232323940536702, 39.909519127731699 ], [ -75.231967130390302, 39.909883238211698 ], [ -75.231631075551505, 39.910158176905902 ], [ -75.231181557957399, 39.910511285477 ], [ -75.230346284486203, 39.911108610584897 ], [ -75.229178260524407, 39.911906865265301 ], [ -75.2283948988823, 39.9124766116066 ], [ -75.227722235254504, 39.912945810485603 ], [ -75.227212995136995, 39.913382778037203 ], [ -75.227078061978702, 39.913520573645698 ], [ -75.226569715351602, 39.914147912140699 ], [ -75.226276776820796, 39.914601856592803 ], [ -75.226061204813703, 39.914967819022003 ], [ -75.225908790554399, 39.915366069472398 ], [ -75.225840128372297, 39.915654606465203 ], [ -75.225815496639697, 39.916103089507899 ], [ -75.225576786313994, 39.9161660278357 ], [ -75.225401632848602, 39.916235134141303 ], [ -75.225269371410207, 39.916333849062603 ], [ -75.225067512235398, 39.916602092140401 ], [ -75.224212371262595, 39.917841386287797 ], [ -75.223802180409194, 39.918458615180903 ], [ -75.223385270921696, 39.919058695561198 ], [ -75.222774547830397, 39.919927670680998 ], [ -75.221875946926701, 39.919560141151898 ], [ -75.216406893018501, 39.917323047322199 ], [ -75.216042320865, 39.917144701435099 ], [ -75.215825748953307, 39.916965612534902 ], [ -75.208703491552598, 39.918307807431198 ], [ -75.208329131560603, 39.918399483958403 ], [ -75.207454079257602, 39.918704848171103 ], [ -75.207037485434597, 39.918834795734298 ], [ -75.206348815896007, 39.918989635081303 ], [ -75.201919396262397, 39.919804143808697 ], [ -75.2018699705838, 39.919731947062999 ], [ -75.201796122382106, 39.919608342155797 ], [ -75.201754697991007, 39.919473445588402 ], [ -75.201744505367799, 39.919330427675703 ], [ -75.201755342542199, 39.919187540161502 ], [ -75.201778346110402, 39.919050385834701 ], [ -75.201812066471305, 39.918913962525799 ], [ -75.201855103000398, 39.918778048987598 ], [ -75.201905783721102, 39.918643170281598 ], [ -75.201962436571094, 39.918509854171198 ], [ -75.202023395496298, 39.918378593416001 ], [ -75.202087447563798, 39.918248624934499 ], [ -75.202138613480898, 39.918149357460102 ], [ -75.202154083026898, 39.918119343631702 ], [ -75.202222832817995, 39.917990620147698 ], [ -75.202293226601995, 39.917862327798403 ], [ -75.202653459190699, 39.917222874522402 ], [ -75.2027238769208, 39.917094493275698 ], [ -75.202792657108901, 39.916965651238201 ], [ -75.202919598449796, 39.916720852495999 ], [ -75.202993859832503, 39.916577643952401 ], [ -75.203192627926995, 39.916188878597602 ], [ -75.203282945993394, 39.916010326923498 ], [ -75.203282993994904, 39.916010232483103 ], [ -75.203914732892102, 39.914761316899302 ], [ -75.204664419310006, 39.913409793072702 ], [ -75.204725314323497, 39.913300009629502 ], [ -75.204857162905199, 39.913062307978102 ], [ -75.205544748574098, 39.912079666638398 ], [ -75.205951825031605, 39.911602038134902 ], [ -75.206293310215599, 39.9112735604294 ], [ -75.206672444874002, 39.910989724742102 ], [ -75.206961650102102, 39.910840543928003 ], [ -75.207471096460296, 39.910690177816399 ], [ -75.208020416354103, 39.910595484549503 ], [ -75.208737070790804, 39.910504470969002 ], [ -75.209462688207793, 39.910465231322803 ], [ -75.210366516616205, 39.910491289714997 ], [ -75.211969547064399, 39.910737244332203 ], [ -75.212431739052704, 39.910747990796402 ], [ -75.212508960070494, 39.910749785575703 ], [ -75.213252893143405, 39.9107131870365 ], [ -75.213793468984704, 39.910633797981497 ], [ -75.214284181415707, 39.910491705631301 ], [ -75.214587659064193, 39.910340315990297 ], [ -75.214992710090101, 39.910031161760401 ], [ -75.215277236446795, 39.909668148380099 ], [ -75.215291250441993, 39.9096288582898 ], [ -75.215462970920399, 39.909147412171102 ], [ -75.215556444311503, 39.9084459088862 ], [ -75.215619464640397, 39.907040039142203 ], [ -75.215619543432894, 39.9069215104969 ], [ -75.215620118486598, 39.9060625540668 ], [ -75.215557720417706, 39.905228722789701 ], [ -75.215407813905699, 39.904260495864797 ], [ -75.215194357201, 39.903295436903697 ], [ -75.214899012388997, 39.902347528949498 ], [ -75.2144493972379, 39.901289000233803 ], [ -75.213894460189906, 39.900253538530599 ], [ -75.213240336398002, 39.8992628741224 ], [ -75.212620510680907, 39.898577880330798 ], [ -75.211718577608707, 39.897778156297498 ], [ -75.211667004588307, 39.897732428096603 ], [ -75.211031281041201, 39.897237415315303 ], [ -75.210211084509595, 39.896687563291799 ], [ -75.209066148479806, 39.896004349950502 ], [ -75.208021506590299, 39.895451869104797 ], [ -75.207240606580697, 39.8951050183367 ], [ -75.206414038265905, 39.894816880719098 ], [ -75.205730278030202, 39.894645924744303 ], [ -75.204867967876098, 39.894430319618898 ], [ -75.200460330274296, 39.893630884096901 ], [ -75.199434584033, 39.893365556790698 ], [ -75.198418320942196, 39.893034737028103 ], [ -75.198361772230498, 39.893009719469397 ], [ -75.197633024866903, 39.892687318495199 ], [ -75.197388287025404, 39.892534020974303 ], [ -75.197083113399003, 39.892342866159296 ], [ -75.196592369714395, 39.891928734356497 ], [ -75.196069457331404, 39.891342990292998 ], [ -75.1956659541801, 39.890722155442198 ], [ -75.195314388209994, 39.889934651381502 ], [ -75.194989231417793, 39.888838019639103 ], [ -75.194966842343206, 39.888727246145798 ], [ -75.194766961786797, 39.887738278281397 ], [ -75.1946997312576, 39.886816916788597 ], [ -75.194513091791507, 39.884259002765802 ], [ -75.1941663444575, 39.877697914043502 ], [ -75.194231028092304, 39.877669447778601 ], [ -75.195429002383094, 39.877107577397503 ], [ -75.197009026898598, 39.876267870142797 ], [ -75.198186922370397, 39.875689617360301 ], [ -75.199430260129603, 39.875017362388697 ], [ -75.200650563516604, 39.874408214661401 ], [ -75.2021043070216, 39.873629260242097 ], [ -75.202990341187302, 39.873124007817601 ], [ -75.205097772056007, 39.871977762709498 ], [ -75.205793952592202, 39.8715796268989 ], [ -75.206658711184005, 39.8710897821299 ], [ -75.20731421216, 39.870674825467198 ], [ -75.207947889081794, 39.870291196396202 ], [ -75.211976617251494, 39.8674718625238 ], [ -75.216039928564399, 39.871124361124302 ], [ -75.215791001097998, 39.875050286214702 ], [ -75.215729052070898, 39.876027241045499 ], [ -75.215724691637305, 39.876096445165402 ], [ -75.215724060682007, 39.876113380857703 ], [ -75.215902162581699, 39.876068829599902 ], [ -75.216049605013794, 39.876033941778097 ], [ -75.216205915263004, 39.876000236455504 ], [ -75.216350625643798, 39.875966918654001 ], [ -75.216373099631596, 39.875961664482901 ], [ -75.216702487533695, 39.875885958524002 ], [ -75.216847673644395, 39.8758524758289 ], [ -75.217015657028696, 39.875816324470797 ], [ -75.217518388058593, 39.875754752633298 ], [ -75.217703280404393, 39.875729090426397 ], [ -75.217861711125806, 39.875710191744503 ], [ -75.218036150505398, 39.8756921178054 ], [ -75.218321202141794, 39.875687515776001 ], [ -75.218332164122302, 39.875687671473202 ], [ -75.2187964417069, 39.875681572360598 ], [ -75.218826972985596, 39.875681177299498 ], [ -75.218887504651704, 39.8756829009317 ], [ -75.218923305275695, 39.875678670449602 ], [ -75.219242877309995, 39.875600894311702 ], [ -75.219446191590606, 39.875553152608703 ], [ -75.219623689945294, 39.875511763759199 ], [ -75.219649943795801, 39.875500671948203 ], [ -75.2197066503673, 39.875485446653499 ], [ -75.219737057320501, 39.8754825122898 ], [ -75.219773358111894, 39.875488849615103 ], [ -75.220867174610405, 39.8755795812841 ], [ -75.221042799904595, 39.875595093032402 ], [ -75.221232726864997, 39.875611330984398 ], [ -75.221282635119806, 39.875615618315202 ], [ -75.222085669425297, 39.875683667742898 ], [ -75.222700980857397, 39.875739407339303 ], [ -75.222872355012299, 39.875760016767501 ], [ -75.223069279836594, 39.875783322062397 ], [ -75.223155371779399, 39.875793590859601 ], [ -75.223767726238904, 39.875867185767703 ], [ -75.224655925040494, 39.876032427529601 ], [ -75.224859459931594, 39.876069391282897 ], [ -75.225030377378403, 39.876102719406198 ], [ -75.225954491402405, 39.876275982790702 ], [ -75.226846633010396, 39.876411871179997 ], [ -75.226891962796898, 39.876413665784497 ], [ -75.227120932385404, 39.876445105573403 ], [ -75.228473462049095, 39.876640446219398 ], [ -75.228727347618204, 39.876676672939197 ], [ -75.2289085720071, 39.876701858921699 ], [ -75.229988122108495, 39.876856226482303 ], [ -75.230478584719705, 39.876898111289101 ], [ -75.230646545724994, 39.876910600637402 ], [ -75.230849062147598, 39.876928353502798 ], [ -75.230999150849001, 39.8769422081686 ], [ -75.231058001597802, 39.876947829353 ], [ -75.231872137940897, 39.877019226113397 ], [ -75.231930848266103, 39.877025674480102 ], [ -75.232312271182195, 39.877065654372799 ], [ -75.2325511598075, 39.877091078860197 ], [ -75.232659618819994, 39.877102444514797 ], [ -75.232816679825802, 39.877120481914801 ], [ -75.232993474033407, 39.877137528972199 ], [ -75.233272836284598, 39.877164037373703 ], [ -75.233958333918096, 39.877186684475603 ], [ -75.234020745548605, 39.877188585515597 ], [ -75.234124053321295, 39.877190252773097 ], [ -75.234304836115797, 39.877145217515199 ], [ -75.234483699291999, 39.877103828516397 ], [ -75.234655285999196, 39.877062791284203 ], [ -75.234686900656698, 39.8770549924593 ], [ -75.235027344842507, 39.876973778963801 ], [ -75.235540760665501, 39.8767609242365 ], [ -75.235798544448997, 39.876588448254601 ], [ -75.235930129419302, 39.876497483953599 ], [ -75.236052660824697, 39.876413061234501 ], [ -75.236372444306099, 39.876196702509098 ], [ -75.236642947105295, 39.875745796910003 ], [ -75.236716312261194, 39.875623470510199 ], [ -75.236775813987705, 39.875484244564703 ], [ -75.236935090034294, 39.875126031329003 ], [ -75.237501980741897, 39.875089629711603 ], [ -75.237593345777, 39.874991187330203 ], [ -75.237538464319897, 39.874921001072003 ], [ -75.237503125892204, 39.8748764828891 ], [ -75.237462684120004, 39.874813418424601 ], [ -75.238112802618403, 39.874602224761901 ], [ -75.2382480005529, 39.874455879993 ], [ -75.238328212906595, 39.874371616629404 ], [ -75.238379462271396, 39.874310947032399 ], [ -75.238691635402503, 39.873968334644303 ], [ -75.238995512072094, 39.873845614017803 ], [ -75.239174094838404, 39.873618055425297 ], [ -75.239263071030905, 39.873499687118098 ], [ -75.239350313594002, 39.8733812330102 ], [ -75.239406447578801, 39.873308914736803 ], [ -75.240101563633004, 39.873039253032303 ], [ -75.240107107164405, 39.872867864705803 ], [ -75.240103828452405, 39.872740201218797 ], [ -75.240102187262195, 39.872638672715901 ], [ -75.240104231884601, 39.872606645693899 ], [ -75.240473683169697, 39.872390951500599 ], [ -75.240899942457901, 39.872409234252402 ], [ -75.240940013361694, 39.872414427477402 ], [ -75.241091176687306, 39.872447172971597 ], [ -75.241218455486205, 39.872475190370999 ], [ -75.241373074363693, 39.872510887121102 ], [ -75.241421716283895, 39.872520876412899 ], [ -75.241557882662704, 39.8725495177817 ], [ -75.241748687862398, 39.872594671968798 ], [ -75.242220931964397, 39.872786229170501 ], [ -75.242292031757103, 39.872817682041898 ], [ -75.2425700019255, 39.872964321219399 ], [ -75.242697124075505, 39.873030798749802 ], [ -75.242732324572501, 39.873048634728697 ], [ -75.246736909897706, 39.875077567284698 ], [ -75.246778575399006, 39.875112378260098 ], [ -75.246826870856097, 39.875152730999602 ], [ -75.247400965930098, 39.875632376930703 ], [ -75.248432961099098, 39.876494564824803 ], [ -75.250118018332998, 39.876253217704203 ], [ -75.250351103418794, 39.876219831041901 ], [ -75.251729874691904, 39.876022329748601 ], [ -75.251771869751096, 39.876016313997603 ], [ -75.252259070954494, 39.875946520456502 ], [ -75.253438055329397, 39.876018214369701 ], [ -75.253980806961195, 39.876051215036298 ], [ -75.256130158504405, 39.8761818736659 ], [ -75.257422991609204, 39.876260446000202 ], [ -75.258579977610395, 39.876330748723703 ], [ -75.258591100670301, 39.876331424840501 ], [ -75.259522879428999, 39.876388034841199 ], [ -75.261251666605006, 39.876493046866599 ], [ -75.262531781719204, 39.8765707877536 ], [ -75.262541104928005, 39.8765873313626 ], [ -75.264833856284795, 39.880655402156599 ], [ -75.265005252840496, 39.880990880620701 ], [ -75.265114213448001, 39.881664963784601 ], [ -75.264546853956205, 39.882121714229598 ], [ -75.264299754531706, 39.882250237070402 ], [ -75.263083579590401, 39.882363837777199 ], [ -75.262264689886507, 39.882579892214402 ], [ -75.261947408851398, 39.8828969374837 ], [ -75.261887358767297, 39.8830767594443 ], [ -75.261966640564097, 39.883248231447403 ], [ -75.262434366980003, 39.883642340317998 ], [ -75.264136143866295, 39.884141820519297 ], [ -75.264445905282003, 39.884322965029597 ], [ -75.264640035712603, 39.884741815189003 ], [ -75.264229170521205, 39.885010280452697 ], [ -75.263155022592699, 39.885308688279402 ], [ -75.262731331332503, 39.885562108266598 ], [ -75.262618769279001, 39.885813051994802 ], [ -75.262684660736994, 39.886034009663902 ], [ -75.2628055615249, 39.886091128918103 ], [ -75.263685617890502, 39.886153338810203 ], [ -75.263983280427695, 39.886104952945999 ], [ -75.264285463880995, 39.886201057573402 ], [ -75.264800281029594, 39.886453471779397 ], [ -75.264853326046094, 39.886545128940398 ], [ -75.264935896567906, 39.886681834168598 ], [ -75.265039521248198, 39.8868414808842 ], [ -75.265107099691605, 39.886989103429201 ], [ -75.265137195153102, 39.887164019550099 ], [ -75.265130833406602, 39.887338146117798 ], [ -75.265097719173596, 39.887545421115099 ], [ -75.264980342857896, 39.887762111628803 ], [ -75.264879396706803, 39.8879285660487 ], [ -75.264727613785197, 39.888088296753203 ], [ -75.264598526404598, 39.888226032597601 ], [ -75.264448385564705, 39.888340826670301 ], [ -75.264263016884698, 39.8884211280375 ], [ -75.263998261801504, 39.888477221212703 ], [ -75.263727652276202, 39.888493837036997 ], [ -75.263378272975999, 39.888469392574301 ], [ -75.262978674908894, 39.8884213722461 ], [ -75.262681570503304, 39.888364331505798 ], [ -75.262474940807607, 39.888427303908898 ], [ -75.262295012971293, 39.888558313436903 ], [ -75.262201761390799, 39.888713689250203 ], [ -75.262135620238794, 39.888925867958299 ], [ -75.262097824780199, 39.889161147920397 ], [ -75.262082725308801, 39.8893744345838 ], [ -75.262089652207095, 39.889683763618002 ], [ -75.262103103352004, 39.889914533838997 ], [ -75.262125078924797, 39.890111761496797 ], [ -75.262111416482895, 39.890285729593103 ], [ -75.262104224815005, 39.890482323216297 ], [ -75.262037671820295, 39.890705736404797 ], [ -75.261884019533397, 39.891315137005599 ], [ -75.261856801569195, 39.891460703582098 ], [ -75.261792095206999, 39.891633563548602 ], [ -75.261735297937705, 39.891789730488199 ], [ -75.261607225090401, 39.891899378033898 ], [ -75.261506728734105, 39.891953410605097 ], [ -75.261315288290106, 39.8919998471574 ], [ -75.261100327899001, 39.892090743703903 ], [ -75.260731823347598, 39.892189547765803 ], [ -75.260143531088403, 39.892311684468901 ], [ -75.259930830432907, 39.892340792191497 ], [ -75.259747502302801, 39.892364916431497 ], [ -75.259543121547495, 39.892366096951498 ], [ -75.259351678601604, 39.892412530224703 ], [ -75.259109397613699, 39.892452236185697 ], [ -75.258960266901596, 39.892538938164002 ], [ -75.258779908747997, 39.892681175748898 ], [ -75.258570588390796, 39.892817162243702 ], [ -75.258388995108007, 39.892993100938597 ], [ -75.258214485757804, 39.893174814645 ], [ -75.258024775472407, 39.893373061434403 ], [ -75.257831210520095, 39.8935768462959 ], [ -75.257671900698298, 39.8937420259034 ], [ -75.257435552310795, 39.894017958201502 ], [ -75.256912420096498, 39.8945518606238 ], [ -75.256744990050507, 39.894739347521998 ], [ -75.256667536998194, 39.894861334385602 ], [ -75.256664447895602, 39.894945589033199 ], [ -75.256711993521904, 39.895042187680502 ], [ -75.256793734267802, 39.895201366854799 ], [ -75.256970068807206, 39.895368223812397 ], [ -75.257126792872896, 39.895472818147098 ], [ -75.257276431175796, 39.8955716377857 ], [ -75.2573916066696, 39.895714677979399 ], [ -75.257364583210105, 39.895854626688497 ], [ -75.257278808395, 39.896004540273601 ], [ -75.257149073183797, 39.896159119017398 ], [ -75.256937060728802, 39.896368122667297 ], [ -75.256764187519593, 39.896504898012701 ], [ -75.256452223732097, 39.896852263086899 ], [ -75.256238559106293, 39.8971062016128 ], [ -75.256092792931199, 39.897299780327401 ], [ -75.255984106585501, 39.897477301837199 ], [ -75.255806901040302, 39.897732032912302 ], [ -75.255619992466606, 39.897952823123603 ], [ -75.255509036181095, 39.8981921306967 ], [ -75.255332446359503, 39.898430009779801 ], [ -75.255227670361407, 39.898500808759998 ], [ -75.255158533102801, 39.898594868447397 ], [ -75.255097719653193, 39.898661001974098 ], [ -75.255094216283595, 39.8987564901647 ], [ -75.255099134311806, 39.898777398372303 ], [ -75.255119471665793, 39.898863847759301 ], [ -75.255168871359402, 39.898909894076397 ], [ -75.255236440370197, 39.899057522431399 ], [ -75.255341709619103, 39.899172242653201 ], [ -75.255489292994497, 39.899327233461797 ], [ -75.255622084816295, 39.899487523470199 ], [ -75.255667843888304, 39.899526517569399 ], [ -75.255519884089296, 39.899678365456303 ], [ -75.255522260768998, 39.899681372424403 ], [ -75.253714372620095, 39.901667774578598 ], [ -75.251291105161798, 39.904412698179897 ], [ -75.253492101004696, 39.9055973679991 ], [ -75.252478302423299, 39.906637368566102 ], [ -75.252396135584306, 39.906640842955298 ], [ -75.252154212533796, 39.906669300637503 ], [ -75.251992724021406, 39.9066938892298 ], [ -75.2517570619856, 39.906750589833102 ], [ -75.251630389578807, 39.906820908712199 ], [ -75.2514994504876, 39.906907998322701 ], [ -75.251304864858895, 39.907038671755402 ], [ -75.251058604700901, 39.9071850832403 ], [ -75.250872136571601, 39.907293447774698 ], [ -75.250715874762506, 39.907374363216697 ], [ -75.250446699575903, 39.907548381205402 ], [ -75.250319403670701, 39.907635548964699 ], [ -75.250272544691995, 39.907718848334902 ], [ -75.250225066018501, 39.907818999839499 ], [ -75.250206555516201, 39.907925403375202 ], [ -75.250186599330704, 39.908071126198401 ], [ -75.250200219061995, 39.908296280977602 ], [ -75.250194230113607, 39.908459173123603 ], [ -75.250168012859504, 39.908576652085898 ], [ -75.250118468240004, 39.908732972288 ], [ -75.250046835178495, 39.908894432095401 ], [ -75.250004583573599, 39.909050911292198 ], [ -75.249934808735404, 39.909161819073901 ], [ -75.249893795958798, 39.909284596626598 ], [ -75.249919873212903, 39.9093694873225 ], [ -75.249993512111303, 39.909448933444203 ], [ -75.250036295785904, 39.909478833287501 ], [ -75.250151550752307, 39.909520697318001 ], [ -75.250281806064706, 39.9095516448238 ], [ -75.250471446146705, 39.9095557795902 ], [ -75.250652551452205, 39.909593456596802 ], [ -75.250883682107897, 39.9096603311461 ], [ -75.251107106743106, 39.909738279824403 ], [ -75.2512286242427, 39.909808386578803 ], [ -75.251298672696706, 39.909888613107903 ], [ -75.251286631179497, 39.910017644725897 ], [ -75.251238120254897, 39.910145880578597 ], [ -75.2511235510067, 39.9102839191656 ], [ -75.251002100483007, 39.910410565983497 ], [ -75.250872323523595, 39.910565137607698 ], [ -75.250721696084199, 39.910691147230402 ], [ -75.250615450993607, 39.910801260385 ], [ -75.250538176311096, 39.9109176263336 ], [ -75.250401102418195, 39.911072038384702 ], [ -75.2501947366124, 39.911224939445901 ], [ -75.249928435341602, 39.911320318507698 ], [ -75.249750487213902, 39.9113951386636 ], [ -75.249520241567694, 39.911502546581097 ], [ -75.249334999922198, 39.911577206139199 ], [ -75.249163931063507, 39.911663418039602 ], [ -75.248984742619101, 39.911771938626401 ], [ -75.248856818213696, 39.911875955129702 ], [ -75.248764537148205, 39.912003236078498 ], [ -75.248722280661198, 39.9121597147982 ], [ -75.248687111206493, 39.912321969414599 ], [ -75.248599436549497, 39.912522429318898 ], [ -75.248559245996006, 39.9126227383653 ], [ -75.248511141392498, 39.912739739498797 ], [ -75.248433859737403, 39.912856104001598 ], [ -75.2483792875354, 39.912950477908602 ], [ -75.248296158255997, 39.913027364801998 ], [ -75.248213442195393, 39.9130930171739 ], [ -75.248056957196695, 39.9131795457686 ], [ -75.247833583370706, 39.913298343028899 ], [ -75.247603536160497, 39.913400130341799 ], [ -75.247402249599702, 39.9135137866799 ], [ -75.247202412107598, 39.913588125265399 ], [ -75.247146930381604, 39.913653779465399 ], [ -75.247118453602297, 39.913687478419 ], [ -75.247070966116695, 39.9137876286118 ], [ -75.247066209960295, 39.913916818114799 ], [ -75.247119600571395, 39.914052899182302 ], [ -75.247224672601206, 39.9141732427195 ], [ -75.247335879163799, 39.914307709768501 ], [ -75.2474138843112, 39.914427726281303 ], [ -75.247488224494305, 39.914542101815002 ], [ -75.247496820359999, 39.914558645150798 ], [ -75.247554644823893, 39.914591376218603 ], [ -75.247634382155496, 39.914645564224898 ], [ -75.247708424939205, 39.914731096850801 ], [ -75.247717793511598, 39.914846686004097 ], [ -75.2476567084761, 39.914964234262598 ], [ -75.2475568001136, 39.915087928642201 ], [ -75.247488264904206, 39.915222797070598 ], [ -75.247349745277106, 39.915408585552697 ], [ -75.247190204822999, 39.915641118918401 ], [ -75.247139027873999, 39.9157361556829 ], [ -75.247059535251097, 39.915860295336302 ], [ -75.246990788234399, 39.915939214450802 ], [ -75.246922169700596, 39.916014639580403 ], [ -75.2468442200162, 39.916096854459703 ], [ -75.246784611704499, 39.916174225050597 ], [ -75.246754880869005, 39.916241757665802 ], [ -75.246766088428899, 39.916338157190097 ], [ -75.246788937016802, 39.9164575375016 ], [ -75.246837062786696, 39.916568728227297 ], [ -75.246879300505796, 39.916716504931301 ], [ -75.246941938330494, 39.916879490633399 ], [ -75.2469419757374, 39.916879586955297 ], [ -75.246963737961494, 39.916936006471097 ], [ -75.247003124807406, 39.916976201837201 ], [ -75.247041957608303, 39.917000651061201 ], [ -75.247105326878298, 39.917037000108699 ], [ -75.247157416205994, 39.917071354064902 ], [ -75.247190288150406, 39.917103539682699 ], [ -75.247203522270297, 39.917144912920797 ], [ -75.247212027136598, 39.917191427602397 ], [ -75.247195053154798, 39.9172207772246 ], [ -75.247174048918197, 39.917245624907203 ], [ -75.247241221347906, 39.917411681777203 ], [ -75.247306665441698, 39.917624727275197 ], [ -75.247349256792504, 39.917794950703403 ], [ -75.247359952625303, 39.918002097974302 ], [ -75.247349967412703, 39.918439221755399 ], [ -75.247334697395104, 39.918688126391999 ], [ -75.247335955861402, 39.9188198266963 ], [ -75.247392592802001, 39.919023274414201 ], [ -75.247499198733905, 39.919279541367601 ], [ -75.247586064999098, 39.919408407755199 ], [ -75.247624458721603, 39.919526810754 ], [ -75.247625025917998, 39.919677305971902 ], [ -75.247598070173098, 39.919911847856902 ], [ -75.247582924351903, 39.919991461461102 ], [ -75.247529607936599, 39.920112565223803 ], [ -75.247489187464097, 39.920215140402597 ], [ -75.247478586789299, 39.920337176410399 ], [ -75.247467814246207, 39.920463911847001 ], [ -75.247462970849298, 39.920595478966902 ], [ -75.2474703329341, 39.920727312472103 ], [ -75.247470144761095, 39.920981248559499 ], [ -75.247462582721397, 39.921352588800197 ], [ -75.247487386684099, 39.921508316163496 ], [ -75.247518294212597, 39.9216641758237 ], [ -75.247516156093795, 39.921688244221002 ], [ -75.247507867500204, 39.921781513353302 ], [ -75.247473375302704, 39.921888920206101 ], [ -75.247393915857899, 39.922056479772401 ], [ -75.247291775615906, 39.922176517863498 ], [ -75.247165395274095, 39.922291324501799 ], [ -75.247070394650393, 39.9223833027689 ], [ -75.246937739388102, 39.922502674483802 ], [ -75.246643578457807, 39.922778409483499 ], [ -75.246523127561701, 39.9228980471906 ], [ -75.246364327897197, 39.923063873893803 ], [ -75.246268458594798, 39.9231793457826 ], [ -75.246190206205497, 39.923314012295798 ], [ -75.246160603207898, 39.923454443340098 ], [ -75.246142339500096, 39.923618636088698 ], [ -75.246135589447306, 39.923801890269999 ], [ -75.246131435571002, 39.923914661519298 ], [ -75.246097113187204, 39.924017369453303 ], [ -75.246074477554799, 39.924134440316799 ], [ -75.246033706346196, 39.924246411981002 ], [ -75.245992588780794, 39.924367782434402 ], [ -75.245946579103304, 39.924456126473999 ], [ -75.245868324574005, 39.924590793665502 ], [ -75.245796864725605, 39.9247067973659 ], [ -75.245728110221506, 39.9248322664738 ], [ -75.245681905623798, 39.9248917689875 ], [ -75.245638341055397, 39.924947871131003 ], [ -75.245555020388394, 39.925054211097198 ], [ -75.245440666106006, 39.925173980945303 ], [ -75.245266535579404, 39.925424118838002 ], [ -75.245200484981098, 39.925559051290797 ], [ -75.245129196116906, 39.925670356073198 ], [ -75.245051977518401, 39.925776829902901 ], [ -75.244994278738304, 39.925850810514802 ], [ -75.244870140100005, 39.925904529640903 ], [ -75.244764137123894, 39.925963348030898 ], [ -75.244627966005496, 39.926012101746799 ], [ -75.244521962685397, 39.926070919012602 ], [ -75.244403233079893, 39.926143566767799 ], [ -75.244337871722806, 39.926259703799801 ], [ -75.2443035466151, 39.926362411219202 ], [ -75.244332609582301, 39.926485313746603 ], [ -75.244414588813896, 39.9265811569825 ], [ -75.244509467612701, 39.926658471963002 ], [ -75.244578894334396, 39.926763446279303 ], [ -75.244599496073405, 39.9268673538269 ], [ -75.244581921644198, 39.927012750546403 ], [ -75.244581616188199, 39.927186740061501 ], [ -75.244553565778403, 39.927284881462299 ], [ -75.244499891836796, 39.927415381703398 ], [ -75.2444282534574, 39.927536083945903 ], [ -75.2443440616576, 39.927665917324802 ], [ -75.244271731017605, 39.927805415291203 ], [ -75.244201129985399, 39.927897924571802 ], [ -75.244123387753902, 39.928018493269299 ], [ -75.244057159111804, 39.928158124457397 ], [ -75.244003414932607, 39.928373269482002 ], [ -75.243987051530198, 39.928485773917103 ], [ -75.243968607992798, 39.928654664805997 ], [ -75.243968820681104, 39.9288145579198 ], [ -75.243973444482506, 39.929186164620603 ], [ -75.243968807561998, 39.929477624714501 ], [ -75.243969855118195, 39.929610081003403 ], [ -75.243926617537596, 39.929602248945002 ], [ -75.243406880341595, 39.9295068641648 ], [ -75.243256405304194, 39.929479247312301 ], [ -75.242703696681701, 39.929377635308697 ], [ -75.242611999715095, 39.929360777546002 ], [ -75.242257286504298, 39.929296641642303 ], [ -75.242168628206898, 39.929560363575199 ], [ -75.242095395072397, 39.929783552806803 ], [ -75.241999692514298, 39.9300452762498 ], [ -75.240738403291004, 39.9297966172984 ], [ -75.239627235035201, 39.929579439849597 ], [ -75.239703949023195, 39.929352336810702 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 14, "disday": "1BMON", "sandis": "1B", "collday": "MON", "Shape__Area": 7278446.91796875, "Shape__Length": 12058.401905434854 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.204364092184804, 39.974426602592501 ], [ -75.203722515754706, 39.974191391660099 ], [ -75.2031559230347, 39.974254458196199 ], [ -75.201738797909201, 39.974403946276198 ], [ -75.199507679065206, 39.974655963753897 ], [ -75.198996126008893, 39.974710604172699 ], [ -75.198812182402406, 39.974731367339402 ], [ -75.198400282980202, 39.974777859908301 ], [ -75.1982699923947, 39.974791479997798 ], [ -75.195757903792, 39.975072999230399 ], [ -75.195414019021001, 39.975111531781202 ], [ -75.194900422937394, 39.975171190293104 ], [ -75.194663137050995, 39.975195993991498 ], [ -75.194612399071104, 39.975201297339297 ], [ -75.194405951551005, 39.975222876856698 ], [ -75.194352051954297, 39.975228510628597 ], [ -75.194234055508403, 39.975240843932703 ], [ -75.193169454187696, 39.975352114756703 ], [ -75.193070758387407, 39.975362429772801 ], [ -75.192987989446294, 39.975199288987703 ], [ -75.192913982786706, 39.975038616626897 ], [ -75.192781479866497, 39.974740220048901 ], [ -75.192770755312395, 39.974716068322401 ], [ -75.192617827379394, 39.974359874445298 ], [ -75.1923884304301, 39.973807307025503 ], [ -75.191939586818094, 39.972699181160401 ], [ -75.191738862269204, 39.9722111174787 ], [ -75.191706705162304, 39.972113378237196 ], [ -75.191686878093293, 39.972053111986298 ], [ -75.191626791305396, 39.971851832414103 ], [ -75.191461273682407, 39.971241884475397 ], [ -75.191383357114603, 39.970972600961701 ], [ -75.191295273586107, 39.970707529934998 ], [ -75.191245768242396, 39.970577257524198 ], [ -75.191205706690397, 39.970480768136603 ], [ -75.191147850697703, 39.9703539549363 ], [ -75.191100768363796, 39.970260375070602 ], [ -75.191032540639199, 39.970137858972102 ], [ -75.190976405119002, 39.970047860482403 ], [ -75.190913414322495, 39.969959794906799 ], [ -75.190843786849001, 39.9698737040503 ], [ -75.190768119609601, 39.969789596708502 ], [ -75.190658873788195, 39.969680551895898 ], [ -75.190571447717801, 39.969601102541901 ], [ -75.190448699676296, 39.9694982985609 ], [ -75.190364768474097, 39.9694328944258 ], [ -75.190352779112601, 39.969423552020402 ], [ -75.190220879344295, 39.969327048007102 ], [ -75.190085703790402, 39.9692341702916 ], [ -75.189914291764794, 39.969123201689797 ], [ -75.189742096829605, 39.969018262017499 ], [ -75.189635055284398, 39.968960016448399 ], [ -75.189448671946906, 39.968870860739202 ], [ -75.189254420151698, 39.968789464296698 ], [ -75.189241774590599, 39.968784644603602 ], [ -75.189054729157306, 39.9687133566743 ], [ -75.188527506332207, 39.968522503898001 ], [ -75.188328347909405, 39.968444984171597 ], [ -75.188017610003797, 39.968312157443698 ], [ -75.187507114365204, 39.9680990300715 ], [ -75.1873516997737, 39.968031504605797 ], [ -75.187198671225403, 39.967961640036499 ], [ -75.186975609289803, 39.9678506818396 ], [ -75.186867833147801, 39.967791686466398 ], [ -75.186763075123494, 39.967729890497701 ], [ -75.186661685446694, 39.9676649810066 ], [ -75.186529108444802, 39.967575663696302 ], [ -75.186236276667501, 39.967367960790497 ], [ -75.186115599761294, 39.967277479870503 ], [ -75.186045317799696, 39.967224783411098 ], [ -75.185857822043999, 39.967078262854599 ], [ -75.185807291280895, 39.967037203571401 ], [ -75.185673832006202, 39.966928759592797 ], [ -75.185463665893195, 39.966751052310897 ], [ -75.185263101811898, 39.9665744890927 ], [ -75.185258403111902, 39.9665703529461 ], [ -75.185058112154607, 39.966387235197502 ], [ -75.184835386900602, 39.966175732869999 ], [ -75.184729365011805, 39.966067515490003 ], [ -75.184631784162505, 39.9659545122569 ], [ -75.184519125168293, 39.965807959665199 ], [ -75.184413602920998, 39.965657333587401 ], [ -75.184226281306707, 39.965375822041302 ], [ -75.184210185629794, 39.9653516330917 ], [ -75.184105401418904, 39.965200445654197 ], [ -75.183878713464694, 39.964895573806203 ], [ -75.183543094791006, 39.964444193359199 ], [ -75.183470730453905, 39.964350353547403 ], [ -75.183348401442103, 39.964196696051097 ], [ -75.183252888825294, 39.964081830356399 ], [ -75.183029088268, 39.963827857159899 ], [ -75.182719892667805, 39.963494627276901 ], [ -75.182087706625694, 39.962835074947598 ], [ -75.1818278971122, 39.962558466273997 ], [ -75.181550555921902, 39.9622499759598 ], [ -75.181284121990402, 39.961935750910797 ], [ -75.181021166025303, 39.961618575664602 ], [ -75.180809270850006, 39.961357049862798 ], [ -75.1806016853931, 39.961093562238801 ], [ -75.180421823171201, 39.960857596613202 ], [ -75.180247289067694, 39.960619882221401 ], [ -75.180078986966805, 39.960380325808003 ], [ -75.1799165963901, 39.960136936195298 ], [ -75.179903775750404, 39.960114642688303 ], [ -75.179852907582898, 39.960026185221203 ], [ -75.179822646858696, 39.959973563999398 ], [ -75.179773417340996, 39.9598553224223 ], [ -75.179730852715494, 39.959722312987701 ], [ -75.179704094958595, 39.959621021876501 ], [ -75.179630991116596, 39.959316286471001 ], [ -75.179471638134004, 39.958747197110696 ], [ -75.179410275754705, 39.9585120700551 ], [ -75.179371958046502, 39.958343847660899 ], [ -75.179340184470007, 39.9581754042716 ], [ -75.179316672319601, 39.958006746838599 ], [ -75.179305093754195, 39.957871590618701 ], [ -75.179301700411699, 39.957701562144102 ], [ -75.179305206324997, 39.957599094755103 ], [ -75.179312460671198, 39.957496455472203 ], [ -75.179336881558299, 39.957291204394799 ], [ -75.179372296918601, 39.957086894350802 ], [ -75.179423953696798, 39.956851170437297 ], [ -75.179459958867497, 39.956718153528698 ], [ -75.179526178379504, 39.956520377625097 ], [ -75.179612410988696, 39.956298466891297 ], [ -75.179669153043903, 39.956159156959799 ], [ -75.179735916972902, 39.955995239658598 ], [ -75.179785719277803, 39.955866234943301 ], [ -75.179832415848097, 39.955734491834001 ], [ -75.179873932899497, 39.955601752382599 ], [ -75.179896360632398, 39.955521647635003 ], [ -75.179901880950396, 39.9555019301309 ], [ -75.179916747103306, 39.9554488304872 ], [ -75.179923794718505, 39.9554214210238 ], [ -75.180015343312803, 39.955065336062603 ], [ -75.180073622467404, 39.954865590813803 ], [ -75.180106871185501, 39.9547667279124 ], [ -75.180143827436595, 39.954668767977502 ], [ -75.180226268465802, 39.954481675318704 ], [ -75.180312692699403, 39.954492248340699 ], [ -75.181006990391694, 39.954577188007399 ], [ -75.181095312085702, 39.954587993039098 ], [ -75.181095439081005, 39.954588009398101 ], [ -75.181164160324499, 39.954596415761799 ], [ -75.181221273221993, 39.9546034025499 ], [ -75.182188740614905, 39.9547061547065 ], [ -75.183336831926695, 39.954828078734799 ], [ -75.185165448729293, 39.9550638821039 ], [ -75.1853605466696, 39.955089039125397 ], [ -75.187066528719697, 39.955304923137902 ], [ -75.187230480914494, 39.955324668847503 ], [ -75.187480672119307, 39.955354801158997 ], [ -75.187962119595198, 39.955412781578197 ], [ -75.188268752441601, 39.955451048246502 ], [ -75.189491321902295, 39.955602272066102 ], [ -75.191466937880804, 39.955852158007502 ], [ -75.191736092931293, 39.955893000608803 ], [ -75.194155526724401, 39.956189066449603 ], [ -75.196123108839998, 39.956438283424298 ], [ -75.198010210381895, 39.956663752809703 ], [ -75.199624934096803, 39.956869819202304 ], [ -75.201956438786894, 39.957158458261802 ], [ -75.203407031199106, 39.957338717456899 ], [ -75.204147804818206, 39.957431419417098 ], [ -75.205039060111503, 39.9575407428283 ], [ -75.206077668627202, 39.957668223074499 ], [ -75.206173469139401, 39.958237598592397 ], [ -75.206272591181502, 39.958832318985102 ], [ -75.206470247714705, 39.960019672235902 ], [ -75.206683705341405, 39.961244456035097 ], [ -75.206793213605906, 39.9618981712254 ], [ -75.206890789567197, 39.962494317948298 ], [ -75.207102675894006, 39.963670427758302 ], [ -75.207301568736298, 39.964787438741801 ], [ -75.207421162512901, 39.965489327912202 ], [ -75.207501245873502, 39.965905882058401 ], [ -75.207536116582105, 39.966166763568097 ], [ -75.207562604483897, 39.966390135253697 ], [ -75.2084654349446, 39.966958925175099 ], [ -75.209543609800903, 39.9676261358346 ], [ -75.209761002658496, 39.967759538124497 ], [ -75.210104614660693, 39.967970988422302 ], [ -75.211337657763494, 39.9687351442901 ], [ -75.211518392399498, 39.969663829437998 ], [ -75.211579231834605, 39.969946510507903 ], [ -75.211634340286395, 39.970229079169897 ], [ -75.211726075064007, 39.970731252786301 ], [ -75.211817242126401, 39.971264169431898 ], [ -75.211864166233198, 39.971512597234401 ], [ -75.2120575602965, 39.9725170146381 ], [ -75.212150038950796, 39.973020726890901 ], [ -75.212173131447102, 39.973146510175397 ], [ -75.212214779443102, 39.973251708678397 ], [ -75.212423555798097, 39.973992984582097 ], [ -75.212617524312407, 39.974731007014597 ], [ -75.213012137914902, 39.976147377088999 ], [ -75.213124515924605, 39.976554755214501 ], [ -75.2133069033613, 39.977226465879198 ], [ -75.213472607698506, 39.9778001758296 ], [ -75.211291970626206, 39.976992341492803 ], [ -75.210360678079198, 39.976645395971502 ], [ -75.209323537581099, 39.976259587962097 ], [ -75.208601618210807, 39.975990932600901 ], [ -75.207894403397006, 39.9757266825589 ], [ -75.206909628314506, 39.975362930712102 ], [ -75.206628607606206, 39.975256765164602 ], [ -75.204364092184804, 39.974426602592501 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 15, "disday": "1BTHU", "sandis": "1B", "collday": "THU", "Shape__Area": 8396260.453125, "Shape__Length": 19806.580796758994 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.216373528868701, 39.9341746988691 ], [ -75.215571408210494, 39.933498745392001 ], [ -75.215857077699795, 39.933076044481702 ], [ -75.216076325145295, 39.932751621610599 ], [ -75.213759694760498, 39.933328603373397 ], [ -75.213528471823295, 39.933269974612202 ], [ -75.212662482567197, 39.932973035544698 ], [ -75.212553518411994, 39.932935672103298 ], [ -75.212507601066903, 39.932895035461001 ], [ -75.212452281675894, 39.932849927220701 ], [ -75.212431132597303, 39.932818931497202 ], [ -75.212412460326107, 39.932787991474797 ], [ -75.212401644472195, 39.932745776251103 ], [ -75.212375059170199, 39.932661236189702 ], [ -75.212363048885095, 39.932584651922703 ], [ -75.212360657667901, 39.932515911991104 ], [ -75.212357358305496, 39.9324808368414 ], [ -75.212745962418495, 39.932285939165801 ], [ -75.212818573646601, 39.932199778976198 ], [ -75.212954968477902, 39.9319877055784 ], [ -75.213074138724707, 39.931688042095303 ], [ -75.213128104705802, 39.931433288191897 ], [ -75.213157638292003, 39.931238166336897 ], [ -75.213169475274796, 39.931048770818101 ], [ -75.213205635639596, 39.930846453279699 ], [ -75.213276680366107, 39.930732719060799 ], [ -75.213496477263703, 39.9304209578209 ], [ -75.213809647198204, 39.929950681959902 ], [ -75.214034289289003, 39.929612279806001 ], [ -75.211176963140801, 39.9284182810296 ], [ -75.211184098167493, 39.928407793644404 ], [ -75.211267013832497, 39.9282834465535 ], [ -75.211348363137105, 39.928158571884801 ], [ -75.211427927160898, 39.928033140468301 ], [ -75.211505486985502, 39.927907123134197 ], [ -75.211580823693893, 39.927780490713502 ], [ -75.211653719540195, 39.927653214063298 ], [ -75.211723955644104, 39.927525263115299 ], [ -75.211791314229501, 39.927396609627401 ], [ -75.211855542214096, 39.927267199348798 ], [ -75.2119157751806, 39.927136457233402 ], [ -75.2119718731212, 39.927004278375101 ], [ -75.212024073021595, 39.926870835610899 ], [ -75.212072610697007, 39.926736301751298 ], [ -75.212117723097506, 39.926600850531997 ], [ -75.212159647239304, 39.926464653887699 ], [ -75.212198617765097, 39.926327884600703 ], [ -75.212234871621305, 39.926190716405003 ], [ -75.212268646989301, 39.926053321259197 ], [ -75.212300178473996, 39.925915872844698 ], [ -75.212329703084507, 39.925778543093401 ], [ -75.212357520454901, 39.9256412683593 ], [ -75.2123838548587, 39.925503182337003 ], [ -75.212408280064395, 39.9253643548833 ], [ -75.212430316264104, 39.925224974503003 ], [ -75.212449483486594, 39.925085234202299 ], [ -75.212465301898902, 39.924945323386503 ], [ -75.212477291571801, 39.924805434161797 ], [ -75.212484973816302, 39.924665756859397 ], [ -75.212487866439901, 39.924526481732897 ], [ -75.212485491829895, 39.924387801839302 ], [ -75.2124773690377, 39.924249905656197 ], [ -75.212462484163396, 39.924112681545303 ], [ -75.212438540256898, 39.923975121807899 ], [ -75.212405925464793, 39.923837551278503 ], [ -75.212365326156601, 39.923700456362603 ], [ -75.212317428762503, 39.923564321664202 ], [ -75.212262923178798, 39.923429632764901 ], [ -75.212202495820605, 39.923296874268601 ], [ -75.212136834230094, 39.923166531705803 ], [ -75.212066609840804, 39.9230390830432 ], [ -75.211990366087306, 39.922913923895997 ], [ -75.211907289600802, 39.922790461408198 ], [ -75.211818123000398, 39.9226687714688 ], [ -75.211723603186698, 39.922548926237397 ], [ -75.211624470427097, 39.922431001554003 ], [ -75.211521463947705, 39.922315069633598 ], [ -75.211415324003397, 39.922201206320402 ], [ -75.211306787435902, 39.922089484682502 ], [ -75.211196410202405, 39.921979901705299 ], [ -75.211081490878399, 39.921871596576899 ], [ -75.210960839844205, 39.921765497103401 ], [ -75.210834357654804, 39.921663138175198 ], [ -75.2107019470903, 39.921566057434298 ], [ -75.210563512119506, 39.921475791646799 ], [ -75.210418954357706, 39.921393877525801 ], [ -75.210268072538796, 39.921320689913003 ], [ -75.210110938409599, 39.921253117407602 ], [ -75.209948528534497, 39.921190704085703 ], [ -75.209781871285003, 39.921133267278698 ], [ -75.209611992589501, 39.921080626972902 ], [ -75.209439920779303, 39.921032601411 ], [ -75.209266680709405, 39.920989007864399 ], [ -75.209093300673999, 39.920949665488202 ], [ -75.208919385164606, 39.920914134838 ], [ -75.208742817314203, 39.920882133834098 ], [ -75.208564128459798, 39.920854254487899 ], [ -75.208383934474696, 39.9208311123122 ], [ -75.208202850156098, 39.920813320096897 ], [ -75.2080214913953, 39.920801492461997 ], [ -75.207840472941001, 39.9207962431054 ], [ -75.207660410737901, 39.920798184854398 ], [ -75.207480993014798, 39.920805734044698 ], [ -75.207301577854395, 39.920816779808803 ], [ -75.207122160660006, 39.920830849919398 ], [ -75.206942740347998, 39.920847472226598 ], [ -75.206763314670198, 39.920866174554803 ], [ -75.206583879112699, 39.920886482876099 ], [ -75.205866004787197, 39.920974340938798 ], [ -75.205686489799703, 39.920995598467698 ], [ -75.205506950409799, 39.921015628909501 ], [ -75.205327384442697, 39.921033959187902 ], [ -75.205147790898295, 39.9210501162529 ], [ -75.204968165206296, 39.921063628777098 ], [ -75.204788506376502, 39.921074023710297 ], [ -75.204607129587401, 39.921080607719098 ], [ -75.204423345508602, 39.921082165352701 ], [ -75.204239036479507, 39.921077460765403 ], [ -75.204056083683696, 39.921065258097798 ], [ -75.203876370587196, 39.9210443233547 ], [ -75.203701779596699, 39.921013419826103 ], [ -75.203533337859895, 39.920971400840003 ], [ -75.203366541243994, 39.920918489847203 ], [ -75.203202118543601, 39.920855725681598 ], [ -75.203042137998693, 39.920784126477898 ], [ -75.202888672504798, 39.920704710485701 ], [ -75.202743789088103, 39.920618495834802 ], [ -75.202609559495301, 39.920526498967703 ], [ -75.2024847953316, 39.9204283628494 ], [ -75.202365603332296, 39.920323090992198 ], [ -75.202252430236499, 39.920211877260897 ], [ -75.202145778080805, 39.920095938374303 ], [ -75.202046150022795, 39.919976491978403 ], [ -75.201954046869204, 39.9198547556677 ], [ -75.201919396262397, 39.919804143808697 ], [ -75.206348815896007, 39.918989635081303 ], [ -75.207037485434597, 39.918834795734298 ], [ -75.207454079257602, 39.918704848171103 ], [ -75.208329131560603, 39.918399483958403 ], [ -75.208703491552598, 39.918307807431198 ], [ -75.215825748953307, 39.916965612534902 ], [ -75.216042320865, 39.917144701435099 ], [ -75.216406893018501, 39.917323047322199 ], [ -75.221875946926701, 39.919560141151898 ], [ -75.222774547830397, 39.919927670680998 ], [ -75.223385270921696, 39.919058695561198 ], [ -75.223802180409194, 39.918458615180903 ], [ -75.224212371262595, 39.917841386287797 ], [ -75.225067512235398, 39.916602092140401 ], [ -75.225269371410207, 39.916333849062603 ], [ -75.225401632848602, 39.916235134141303 ], [ -75.225576786313994, 39.9161660278357 ], [ -75.225815496639697, 39.916103089507899 ], [ -75.225840128372297, 39.915654606465203 ], [ -75.225908790554399, 39.915366069472398 ], [ -75.226061204813703, 39.914967819022003 ], [ -75.226276776820796, 39.914601856592803 ], [ -75.226569715351602, 39.914147912140699 ], [ -75.227078061978702, 39.913520573645698 ], [ -75.227212995136995, 39.913382778037203 ], [ -75.227722235254504, 39.912945810485603 ], [ -75.2283948988823, 39.9124766116066 ], [ -75.229178260524407, 39.911906865265301 ], [ -75.230346284486203, 39.911108610584897 ], [ -75.231181557957399, 39.910511285477 ], [ -75.231631075551505, 39.910158176905902 ], [ -75.231967130390302, 39.909883238211698 ], [ -75.232323940536702, 39.909519127731699 ], [ -75.232632078778295, 39.909212205037399 ], [ -75.232946765916694, 39.9088820246739 ], [ -75.234051956397096, 39.9076511478019 ], [ -75.234346115718097, 39.907316158874401 ], [ -75.234734621282996, 39.906881036602897 ], [ -75.234982773588001, 39.906622086335702 ], [ -75.235165794265896, 39.9064622777816 ], [ -75.237771833341199, 39.906117889979498 ], [ -75.239792305591607, 39.9078392691681 ], [ -75.232733414854295, 39.913314530250901 ], [ -75.230199982222899, 39.915816368460398 ], [ -75.230485720556899, 39.916048690975401 ], [ -75.230697750781204, 39.916231951173103 ], [ -75.230932142250197, 39.916418662924698 ], [ -75.2311433470759, 39.9165869034099 ], [ -75.231348435045504, 39.916759329395198 ], [ -75.231611153173205, 39.916984081231298 ], [ -75.231094469540196, 39.917352976444803 ], [ -75.230614203047296, 39.917691385225901 ], [ -75.230097457597495, 39.918055244554601 ], [ -75.231494629758899, 39.919232482673301 ], [ -75.232622117704807, 39.920174164978 ], [ -75.232890051641405, 39.920404050159298 ], [ -75.232224711274398, 39.920874608501997 ], [ -75.231566913068306, 39.9213409878341 ], [ -75.231851193665406, 39.9215717137753 ], [ -75.232066402727398, 39.921762564104903 ], [ -75.232254945356004, 39.921920404311301 ], [ -75.232496761165507, 39.922117819710401 ], [ -75.2326941990992, 39.922287197094398 ], [ -75.2329739639096, 39.922519647262298 ], [ -75.233409012968494, 39.922894236666401 ], [ -75.232180493384206, 39.923758924796303 ], [ -75.232440032631104, 39.923979533556398 ], [ -75.232733083788503, 39.924228623556402 ], [ -75.232962377384297, 39.924421071374702 ], [ -75.233124652594199, 39.924567070899997 ], [ -75.231879464151305, 39.925443221657403 ], [ -75.232488752687701, 39.9259533209813 ], [ -75.233102587650095, 39.926461200189699 ], [ -75.234340512737802, 39.927535336911603 ], [ -75.232976754054306, 39.928475377466597 ], [ -75.234128483057006, 39.9286982502068 ], [ -75.234414570955295, 39.9287536098511 ], [ -75.235100658853995, 39.928886367753002 ], [ -75.235307683960997, 39.928921280258301 ], [ -75.235440811015494, 39.928916185999903 ], [ -75.235591498141503, 39.928914707581797 ], [ -75.235933268653397, 39.928989310494401 ], [ -75.236289767791803, 39.929054019735702 ], [ -75.236999382150302, 39.929184454504103 ], [ -75.237728449982498, 39.929329065587197 ], [ -75.238310580722498, 39.928926124057803 ], [ -75.238314121683601, 39.928869317298698 ], [ -75.238732019772101, 39.928594179466799 ], [ -75.239396339850103, 39.928734642898803 ], [ -75.239876595667596, 39.928833315679 ], [ -75.239783918992799, 39.929114313770597 ], [ -75.239703949023195, 39.929352336810702 ], [ -75.239627235035201, 39.929579439849597 ], [ -75.240738403291004, 39.9297966172984 ], [ -75.241999692514298, 39.9300452762498 ], [ -75.242095395072397, 39.929783552806803 ], [ -75.242168628206898, 39.929560363575199 ], [ -75.242257286504298, 39.929296641642303 ], [ -75.242611999715095, 39.929360777546002 ], [ -75.242703696681701, 39.929377635308697 ], [ -75.243256405304194, 39.929479247312301 ], [ -75.243406880341595, 39.9295068641648 ], [ -75.243926617537596, 39.929602248945002 ], [ -75.243969855118195, 39.929610081003403 ], [ -75.243969886443395, 39.9296140244345 ], [ -75.243984211919198, 39.929722497220297 ], [ -75.244011784001998, 39.929803043967297 ], [ -75.244101082424294, 39.9298661285968 ], [ -75.244191073879506, 39.929910419162198 ], [ -75.244280373745298, 39.929973504577802 ], [ -75.2443569458312, 39.930050418679201 ], [ -75.244407547123203, 39.930169089452797 ], [ -75.244430334516906, 39.930296557078897 ], [ -75.244383453843497, 39.930408395704802 ], [ -75.244276404084005, 39.930495406433799 ], [ -75.244133079928503, 39.930572218976103 ], [ -75.243952613906998, 39.930662327462002 ], [ -75.243815393260107, 39.930739272999602 ], [ -75.243695961700695, 39.930830714909703 ], [ -75.243637738486299, 39.930918792153101 ], [ -75.243607086109094, 39.931087415283599 ], [ -75.243560030272405, 39.931203952069197 ], [ -75.243518210982501, 39.9313441165135 ], [ -75.243476911396897, 39.931470183649303 ], [ -75.243436304751, 39.931577456780701 ], [ -75.243420111744101, 39.9316852626064 ], [ -75.243404438546904, 39.931778972037499 ], [ -75.243402359101694, 39.931835357605998 ], [ -75.243344827834406, 39.9319046389097 ], [ -75.243281365398602, 39.931969088259201 ], [ -75.243187732396095, 39.932023473519997 ], [ -75.243106478925895, 39.932073426131701 ], [ -75.243051306093093, 39.932161568894102 ], [ -75.242936934242493, 39.932281337107803 ], [ -75.242846285050305, 39.9324204329751 ], [ -75.242724075838296, 39.932587055214697 ], [ -75.242626454673697, 39.932749511731103 ], [ -75.2425312587538, 39.932846185594798 ], [ -75.242454894758396, 39.932929162484101 ], [ -75.242352728258297, 39.933049197031998 ], [ -75.242288051421397, 39.933146537126099 ], [ -75.242241684235694, 39.933244277558899 ], [ -75.242171249327598, 39.933332087112298 ], [ -75.242126790168896, 39.933378141374803 ], [ -75.242014495358305, 39.933441521322003 ], [ -75.241890860659694, 39.933481141732102 ], [ -75.241718916144606, 39.933505596772001 ], [ -75.241559526130601, 39.933520920679896 ], [ -75.241399615721306, 39.933550341649102 ], [ -75.241190701776901, 39.933583392712102 ], [ -75.240975683183294, 39.933616308943598 ], [ -75.240761532900805, 39.933625731431597 ], [ -75.2405182515745, 39.933596895981204 ], [ -75.240245839718895, 39.9335298006066 ], [ -75.240162941666995, 39.933501681913199 ], [ -75.239925833285895, 39.933565994439199 ], [ -75.239528971989699, 39.933575666431402 ], [ -75.239202753377398, 39.933465022334303 ], [ -75.238940878421403, 39.933282918187501 ], [ -75.238741030287102, 39.933132581114499 ], [ -75.2384994705005, 39.933042147373399 ], [ -75.238255353265401, 39.933016405292499 ], [ -75.238208302604704, 39.9330114437644 ], [ -75.238002618639996, 39.933019102149501 ], [ -75.237778675417402, 39.933093259068102 ], [ -75.2368373950071, 39.933765953574799 ], [ -75.236649033175894, 39.933906588657798 ], [ -75.2359204452505, 39.934450561804802 ], [ -75.235607086763096, 39.934563059636702 ], [ -75.235375692850994, 39.934624885239799 ], [ -75.235161434098501, 39.9346505966979 ], [ -75.234885375040307, 39.934638460342697 ], [ -75.234533135330693, 39.934602170794498 ], [ -75.234298285471695, 39.934491785864601 ], [ -75.234142883701793, 39.9344214779873 ], [ -75.233863898475605, 39.934354174539898 ], [ -75.233696669536698, 39.934332862219499 ], [ -75.233579273841599, 39.934337506086898 ], [ -75.233417867408903, 39.934359570736099 ], [ -75.233286792028196, 39.934385232601898 ], [ -75.233168596076794, 39.934411514838402 ], [ -75.233051235580206, 39.934451200492397 ], [ -75.232726411942807, 39.934646667587998 ], [ -75.231098633382004, 39.935782282215001 ], [ -75.229728539058598, 39.936752154508298 ], [ -75.229230313582406, 39.937100521981499 ], [ -75.228845068519107, 39.937367539490403 ], [ -75.228360658822794, 39.9377096433115 ], [ -75.227833575788793, 39.938086508821002 ], [ -75.227385697887499, 39.938401998332999 ], [ -75.226856978901793, 39.938776162958597 ], [ -75.226385938891397, 39.939105256960801 ], [ -75.225953417329606, 39.9394073136014 ], [ -75.225482927174696, 39.9397342537887 ], [ -75.224116490560505, 39.940700457025102 ], [ -75.223618356862005, 39.941055138316102 ], [ -75.223428517302295, 39.941184695544997 ], [ -75.223241053699795, 39.941320881209698 ], [ -75.222756114948993, 39.941663994284497 ], [ -75.221548608289694, 39.940661661468297 ], [ -75.220281316583495, 39.939581208803702 ], [ -75.219779889740195, 39.939159694844101 ], [ -75.219373586484096, 39.938819011339803 ], [ -75.218876841308997, 39.938402767319097 ], [ -75.220245011685904, 39.9374477860121 ], [ -75.219615821160801, 39.936910120460297 ], [ -75.218986196522096, 39.9363785612478 ], [ -75.217812889300106, 39.935366733016203 ], [ -75.217207014644302, 39.9348567504763 ], [ -75.2170616047366, 39.934742715053403 ], [ -75.216753988103505, 39.934501470280601 ], [ -75.216373528868701, 39.9341746988691 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 16, "disday": "1BWED", "sandis": "1B", "collday": "WED", "Shape__Area": 10242394.98046875, "Shape__Length": 17230.682194535369 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.182282894359801, 39.950743561651898 ], [ -75.182354303032994, 39.950615288314303 ], [ -75.182431144412305, 39.950489685496898 ], [ -75.182479368237196, 39.950419499406699 ], [ -75.182515055088402, 39.950367559282803 ], [ -75.182607676324807, 39.950249715854 ], [ -75.182688537496404, 39.950158306113302 ], [ -75.182708467532706, 39.950135775478998 ], [ -75.182814270860206, 39.950024046547099 ], [ -75.182924534013296, 39.949914335582001 ], [ -75.183038747129402, 39.949806472583603 ], [ -75.183276997748806, 39.949595613510198 ], [ -75.183400019049301, 39.949492277522097 ], [ -75.183612421839996, 39.9493200847811 ], [ -75.184288722207498, 39.9487923610425 ], [ -75.184919204205499, 39.948315089099097 ], [ -75.184933835254697, 39.948304013989102 ], [ -75.185326030067998, 39.948014707647403 ], [ -75.185721882281996, 39.947728312772703 ], [ -75.1861212389733, 39.9474449421391 ], [ -75.186395200939799, 39.947253716196897 ], [ -75.186518983660903, 39.947168961186797 ], [ -75.1868752190111, 39.946925040971102 ], [ -75.189467063663898, 39.945254007713302 ], [ -75.189531738879793, 39.945214508696999 ], [ -75.189590759478094, 39.945176918802801 ], [ -75.189657016521494, 39.945132870695303 ], [ -75.189721965527099, 39.945087683311897 ], [ -75.189785572829095, 39.945041380230599 ], [ -75.189847807135195, 39.944993984181401 ], [ -75.189923621025599, 39.9449332391006 ], [ -75.189997180396006, 39.9448708731965 ], [ -75.190068423697795, 39.9448069355565 ], [ -75.190137297468695, 39.944741478151101 ], [ -75.190210255550497, 39.944667779326799 ], [ -75.190280208440299, 39.944592374460399 ], [ -75.190347089033907, 39.944515335942199 ], [ -75.190410833668807, 39.944436738041603 ], [ -75.191639930767195, 39.943245203605699 ], [ -75.191640270046094, 39.9432448976223 ], [ -75.191988894971303, 39.9429305022718 ], [ -75.192047119709599, 39.942882276857297 ], [ -75.192112933189406, 39.942827767629403 ], [ -75.1922431315446, 39.942731598923999 ], [ -75.192381549678004, 39.9426446856192 ], [ -75.192529537299194, 39.942567524501698 ], [ -75.192685665780701, 39.942496833745203 ], [ -75.192848237122007, 39.942432507884398 ], [ -75.193015574591101, 39.942374560869297 ], [ -75.193185997888804, 39.942323008381202 ], [ -75.193357829061995, 39.942277866163202 ], [ -75.193530052843002, 39.942239363861098 ], [ -75.193582452986305, 39.942230360299199 ], [ -75.193786926567597, 39.942199133936398 ], [ -75.193886315616496, 39.942186874228199 ], [ -75.193973299841105, 39.942179886402002 ], [ -75.194068312513906, 39.942172253895102 ], [ -75.194250746380604, 39.942164687089402 ], [ -75.194432014395503, 39.942163655155397 ], [ -75.194611551889807, 39.942169047307303 ], [ -75.194791513752605, 39.942181490004899 ], [ -75.194971517411105, 39.9422002322925 ], [ -75.195150955941102, 39.942224419109003 ], [ -75.195329218797795, 39.942253198019699 ], [ -75.195505700205899, 39.942285713997201 ], [ -75.195680102212094, 39.942321330609502 ], [ -75.195853641562294, 39.942360719180797 ], [ -75.196026141687199, 39.942404000121698 ], [ -75.196197161563902, 39.942451135685502 ], [ -75.196366260167096, 39.942502088128101 ], [ -75.196532995198297, 39.942556822382798 ], [ -75.196696925559905, 39.942615302510802 ], [ -75.196754253729296, 39.942637979386902 ], [ -75.196898121675702, 39.942694886362098 ], [ -75.197016590468095, 39.9427446117259 ], [ -75.197173523139398, 39.9428140538216 ], [ -75.197640298364604, 39.943029212595 ], [ -75.197796653652205, 39.943099787041199 ], [ -75.197954444721603, 39.943168076725101 ], [ -75.198114302352295, 39.9432330568143 ], [ -75.198276619706206, 39.943294200849401 ], [ -75.198603953420005, 39.943414867870899 ], [ -75.1987686570764, 39.9434744262417 ], [ -75.198934092861194, 39.943532949178604 ], [ -75.199100289504301, 39.9435900453798 ], [ -75.199267278002907, 39.943645325395998 ], [ -75.199435087045401, 39.943698398825198 ], [ -75.199603746485707, 39.943748875291398 ], [ -75.199773287275605, 39.943796366244797 ], [ -75.199943738125299, 39.943840480382697 ], [ -75.200115151842198, 39.9438808080168 ], [ -75.200290120799806, 39.943914583918399 ], [ -75.200469314482902, 39.943940186726898 ], [ -75.200651204478305, 39.9439577923877 ], [ -75.200834261268994, 39.943967575029099 ], [ -75.201016955270205, 39.943969710589798 ], [ -75.201197759271906, 39.943964374169703 ], [ -75.201376004408502, 39.943951795089603 ], [ -75.201554430609207, 39.943932544207598 ], [ -75.201732884692007, 39.943907177645499 ], [ -75.201910765826995, 39.943876233471698 ], [ -75.202087470852206, 39.943840249707002 ], [ -75.202262401324901, 39.943799763579101 ], [ -75.202434955200104, 39.943755314942401 ], [ -75.202604531745095, 39.943707440079599 ], [ -75.202773408175702, 39.943657219424502 ], [ -75.202943537950503, 39.943604939630497 ], [ -75.203113297550999, 39.943549817709801 ], [ -75.203281060014703, 39.943491068805599 ], [ -75.203445200649298, 39.943427909923201 ], [ -75.2036040936935, 39.94335955535 ], [ -75.203756112116693, 39.943285222056701 ], [ -75.203899631264306, 39.943204126173299 ], [ -75.204034628871597, 39.943115580672 ], [ -75.204166283877399, 39.943019856406799 ], [ -75.204293769469302, 39.9429176819717 ], [ -75.204415503992806, 39.942809781825602 ], [ -75.204529901099605, 39.942696881229601 ], [ -75.204635376933894, 39.942579701900698 ], [ -75.204665796549307, 39.942541030990697 ], [ -75.204730347489999, 39.942458970061502 ], [ -75.204813228882003, 39.9423354092362 ], [ -75.204882485835398, 39.942209726909198 ], [ -75.204940946483902, 39.942081265955103 ], [ -75.204991558435196, 39.941949679132698 ], [ -75.205035100784002, 39.941815418022699 ], [ -75.205072356197803, 39.941678932480201 ], [ -75.205104103730505, 39.941540674981397 ], [ -75.2051311248715, 39.941401095351601 ], [ -75.205154201004305, 39.941260646115801 ], [ -75.205173518523594, 39.941123977891102 ], [ -75.2051741124383, 39.941119777070902 ], [ -75.205191640545706, 39.940978940739797 ], [ -75.205222669101602, 39.940699166326901 ], [ -75.205236427433604, 39.940560750243002 ], [ -75.205244621849104, 39.940422126017303 ], [ -75.205247741449696, 39.940283205391502 ], [ -75.205246800280506, 39.940144041498002 ], [ -75.205242808869599, 39.940004687391301 ], [ -75.205216597098698, 39.939446420124298 ], [ -75.205212541619602, 39.939306904212103 ], [ -75.205211510622604, 39.939167515772802 ], [ -75.2052152750327, 39.938888903307202 ], [ -75.205217261805103, 39.938684802308202 ], [ -75.205220706263802, 39.9383310218521 ], [ -75.205225329489707, 39.938052071641401 ], [ -75.2052334381696, 39.937773344727901 ], [ -75.205239318604697, 39.9376341168444 ], [ -75.205246693867394, 39.9374950095253 ], [ -75.205255769172098, 39.937356043542103 ], [ -75.205266754409806, 39.937217239769602 ], [ -75.205279855960995, 39.937078619004701 ], [ -75.205311847087799, 39.936801244604503 ], [ -75.205329458767295, 39.936661639997602 ], [ -75.205348776990206, 39.936521720059297 ], [ -75.205358707917398, 39.936457738428203 ], [ -75.205370489890697, 39.936381830725402 ], [ -75.205395285664807, 39.936242316130503 ], [ -75.205423850097603, 39.936103522157097 ], [ -75.205456872510695, 39.935965793864398 ], [ -75.205495038747202, 39.935829475331801 ], [ -75.205539038120193, 39.935694911615698 ], [ -75.205589556397399, 39.935562448592798 ], [ -75.205623138717101, 39.935486813689401 ], [ -75.205647285223904, 39.935432431367197 ], [ -75.205713566473506, 39.935304968986003 ], [ -75.205788329095299, 39.935179769735903 ], [ -75.205870381863093, 39.9350565440824 ], [ -75.205958529949896, 39.934935005116202 ], [ -75.206051585688201, 39.9348148624847 ], [ -75.206148354300296, 39.9346958283841 ], [ -75.206247645727103, 39.934577614217098 ], [ -75.206548740067802, 39.9342250041448 ], [ -75.206839232203293, 39.933871671700999 ], [ -75.207035068666201, 39.933637498680902 ], [ -75.207332529506004, 39.9332879984171 ], [ -75.208031272135301, 39.932474683733901 ], [ -75.208228867753405, 39.932241321805101 ], [ -75.208424232621795, 39.9320068910922 ], [ -75.208438399390801, 39.931989629178602 ], [ -75.208520852721904, 39.9318891673392 ], [ -75.208808144107493, 39.931534689019202 ], [ -75.209285245766594, 39.930942721256898 ], [ -75.2096631377606, 39.930467294578797 ], [ -75.209942893208407, 39.930109114806299 ], [ -75.210218470105204, 39.929749176818198 ], [ -75.210399407134403, 39.9295080732361 ], [ -75.210488937969203, 39.929387139281197 ], [ -75.210665948634102, 39.929144447299599 ], [ -75.210928137353505, 39.928777966459101 ], [ -75.211099833860501, 39.928531643202803 ], [ -75.211176963140801, 39.9284182810296 ], [ -75.214034289289003, 39.929612279806001 ], [ -75.213809647198204, 39.929950681959902 ], [ -75.213496477263703, 39.9304209578209 ], [ -75.213276680366107, 39.930732719060799 ], [ -75.213205635639596, 39.930846453279699 ], [ -75.213169475274796, 39.931048770818101 ], [ -75.213157638292003, 39.931238166336897 ], [ -75.213128104705802, 39.931433288191897 ], [ -75.213074138724707, 39.931688042095303 ], [ -75.212954968477902, 39.9319877055784 ], [ -75.212818573646601, 39.932199778976198 ], [ -75.212745962418495, 39.932285939165801 ], [ -75.212357358305496, 39.9324808368414 ], [ -75.212360657667901, 39.932515911991104 ], [ -75.212363048885095, 39.932584651922703 ], [ -75.212375059170199, 39.932661236189702 ], [ -75.212401644472195, 39.932745776251103 ], [ -75.212412460326107, 39.932787991474797 ], [ -75.212431132597303, 39.932818931497202 ], [ -75.212452281675894, 39.932849927220701 ], [ -75.212507601066903, 39.932895035461001 ], [ -75.212553518411994, 39.932935672103298 ], [ -75.212662482567197, 39.932973035544698 ], [ -75.213528471823295, 39.933269974612202 ], [ -75.213759694760498, 39.933328603373397 ], [ -75.216076325145295, 39.932751621610599 ], [ -75.215857077699795, 39.933076044481702 ], [ -75.215571408210494, 39.933498745392001 ], [ -75.216373528868701, 39.9341746988691 ], [ -75.216753988103505, 39.934501470280601 ], [ -75.2170616047366, 39.934742715053403 ], [ -75.217207014644302, 39.9348567504763 ], [ -75.217812889300106, 39.935366733016203 ], [ -75.218986196522096, 39.9363785612478 ], [ -75.219615821160801, 39.936910120460297 ], [ -75.220245011685904, 39.9374477860121 ], [ -75.218876841308997, 39.938402767319097 ], [ -75.219373586484096, 39.938819011339803 ], [ -75.219779889740195, 39.939159694844101 ], [ -75.220281316583495, 39.939581208803702 ], [ -75.221548608289694, 39.940661661468297 ], [ -75.222756114948993, 39.941663994284497 ], [ -75.224131871418905, 39.942845457719599 ], [ -75.224588601682001, 39.943216312404303 ], [ -75.224981791596903, 39.943543569043001 ], [ -75.225420134397993, 39.943916188637402 ], [ -75.225933720644306, 39.944354327688501 ], [ -75.226326279985102, 39.944677981378199 ], [ -75.226808556229699, 39.9450922870451 ], [ -75.227310576663101, 39.9455181070592 ], [ -75.227439127147903, 39.945607557915302 ], [ -75.227571087856305, 39.945671277234403 ], [ -75.227806812807103, 39.945706869389198 ], [ -75.227964628700093, 39.945695247704101 ], [ -75.228147205106296, 39.9456900266632 ], [ -75.228300469371206, 39.9457112494241 ], [ -75.2284363015374, 39.945752683770898 ], [ -75.228564648898598, 39.945827594867602 ], [ -75.228688284280096, 39.9459222719384 ], [ -75.228344768991803, 39.946176337053103 ], [ -75.228204779355593, 39.946279873626601 ], [ -75.2268358540842, 39.947257224327103 ], [ -75.227422015465294, 39.947779799939902 ], [ -75.227327163535804, 39.948288300439202 ], [ -75.227275183673598, 39.948498992691498 ], [ -75.227173047850698, 39.948967583592498 ], [ -75.227031792115795, 39.949711791530198 ], [ -75.226871364472103, 39.950469873796898 ], [ -75.226749524783898, 39.951029702171603 ], [ -75.226701441922899, 39.9512508252133 ], [ -75.226659796813394, 39.951477202112002 ], [ -75.226542130945305, 39.952009912904003 ], [ -75.226438884329994, 39.952541609133398 ], [ -75.226340124013802, 39.953018162004 ], [ -75.226225919784198, 39.953537185974199 ], [ -75.224246134693402, 39.953294246529801 ], [ -75.222281831625395, 39.953049063923899 ], [ -75.221287182892496, 39.9529318012491 ], [ -75.220297020988596, 39.952802058971201 ], [ -75.2193526759755, 39.952693482274199 ], [ -75.218350528746598, 39.952562205352699 ], [ -75.216351888313596, 39.9523118187794 ], [ -75.214375557826401, 39.952062961490498 ], [ -75.212396511130805, 39.951820480753099 ], [ -75.210771296167195, 39.951623330407102 ], [ -75.209328162134298, 39.951445846401299 ], [ -75.208065647334706, 39.951282724296902 ], [ -75.207148156345298, 39.951170677794103 ], [ -75.207045529135598, 39.951679753038 ], [ -75.2069927275612, 39.951910329696098 ], [ -75.206932510047594, 39.952229935896099 ], [ -75.206674996330406, 39.9534566135533 ], [ -75.206435702630202, 39.954598054370003 ], [ -75.206276924715397, 39.955356915519097 ], [ -75.206152900318301, 39.9559433219464 ], [ -75.206131340374796, 39.956119653264302 ], [ -75.206345440215301, 39.956146687779203 ], [ -75.206278556040004, 39.956508020993397 ], [ -75.206266378322098, 39.956565444054299 ], [ -75.2061970441912, 39.956892405480602 ], [ -75.2060582797222, 39.957573390464098 ], [ -75.206077668627202, 39.957668223074499 ], [ -75.205039060111503, 39.9575407428283 ], [ -75.204147804818206, 39.957431419417098 ], [ -75.203407031199106, 39.957338717456899 ], [ -75.201956438786894, 39.957158458261802 ], [ -75.199624934096803, 39.956869819202304 ], [ -75.198010210381895, 39.956663752809703 ], [ -75.196123108839998, 39.956438283424298 ], [ -75.194155526724401, 39.956189066449603 ], [ -75.191736092931293, 39.955893000608803 ], [ -75.191466937880804, 39.955852158007502 ], [ -75.189491321902295, 39.955602272066102 ], [ -75.188268752441601, 39.955451048246502 ], [ -75.187962119595198, 39.955412781578197 ], [ -75.187480672119307, 39.955354801158997 ], [ -75.187230480914494, 39.955324668847503 ], [ -75.187066528719697, 39.955304923137902 ], [ -75.1853605466696, 39.955089039125397 ], [ -75.185165448729293, 39.9550638821039 ], [ -75.183336831926695, 39.954828078734799 ], [ -75.182188740614905, 39.9547061547065 ], [ -75.181221273221993, 39.9546034025499 ], [ -75.181164160324499, 39.954596415761799 ], [ -75.181095439081005, 39.954588009398101 ], [ -75.181095312085702, 39.954587993039098 ], [ -75.181006990391694, 39.954577188007399 ], [ -75.180312692699403, 39.954492248340699 ], [ -75.180226268465802, 39.954481675318704 ], [ -75.180339080243499, 39.9542528117533 ], [ -75.180457153432698, 39.9540320074573 ], [ -75.180580686297503, 39.953812564231299 ], [ -75.180887277704798, 39.953281433300099 ], [ -75.180986116974495, 39.9531046239467 ], [ -75.181040192427901, 39.953007890489303 ], [ -75.181867111576693, 39.951543845865501 ], [ -75.181911051554707, 39.951466049649497 ], [ -75.182018828118302, 39.951267258506597 ], [ -75.182215280590796, 39.950873700295404 ], [ -75.182282894359801, 39.950743561651898 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 17, "disday": "2BFRI", "sandis": "2B", "collday": "FRI", "Shape__Area": 8112894.77734375, "Shape__Length": 13099.250901250716 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.147519021940099, 39.956230710182098 ], [ -75.147459043903297, 39.956221351179003 ], [ -75.147371092410594, 39.956225391832199 ], [ -75.146825901698804, 39.956155398072298 ], [ -75.146026192492997, 39.956057326331297 ], [ -75.145237249394597, 39.955956668709199 ], [ -75.144449112297295, 39.955864266466897 ], [ -75.1440198953634, 39.955810352679897 ], [ -75.143386852695997, 39.955730834020599 ], [ -75.142979557902194, 39.955676257493998 ], [ -75.142522957953602, 39.955620393967997 ], [ -75.141912836228798, 39.955547359147097 ], [ -75.141875502264497, 39.9555348709588 ], [ -75.141841635556901, 39.955523986117299 ], [ -75.133683190504001, 39.954522833274197 ], [ -75.133823849231902, 39.954271180680202 ], [ -75.134484662346907, 39.952951243031599 ], [ -75.134540405700093, 39.952839895727401 ], [ -75.134879549986593, 39.952084045720298 ], [ -75.135320864348998, 39.950821467986202 ], [ -75.135742735870195, 39.949526630596203 ], [ -75.1360388511428, 39.948276650888303 ], [ -75.136172674262397, 39.947484302673402 ], [ -75.1362895114964, 39.946596119048003 ], [ -75.136318244723199, 39.9458490997525 ], [ -75.136229192972806, 39.944940317835702 ], [ -75.136143028293702, 39.944429286947297 ], [ -75.136027251607103, 39.943742619183602 ], [ -75.135764732932898, 39.941970852257697 ], [ -75.135698175995699, 39.941014858598898 ], [ -75.135715575507604, 39.939488090574599 ], [ -75.135948978973303, 39.933957440085798 ], [ -75.135931055371202, 39.932811659144299 ], [ -75.135919066952397, 39.932556071377903 ], [ -75.135874286178606, 39.931601359576199 ], [ -75.135724544766504, 39.9306593769034 ], [ -75.135458273340603, 39.929523840526301 ], [ -75.135179783027993, 39.928706183993597 ], [ -75.134426165988302, 39.926811856284601 ], [ -75.134009307428499, 39.925831962202899 ], [ -75.133460304376101, 39.924626931918098 ], [ -75.146358773398006, 39.9263451604279 ], [ -75.146712140886507, 39.926393497675797 ], [ -75.146933372330693, 39.926423758459997 ], [ -75.147264419681704, 39.926451857634497 ], [ -75.149168947647794, 39.9267059511536 ], [ -75.151162369739396, 39.926971309712002 ], [ -75.151888486286097, 39.927071772064302 ], [ -75.152408877672102, 39.927138637129602 ], [ -75.152955316784798, 39.927211096701001 ], [ -75.153430251869906, 39.9272774078445 ], [ -75.153984686577104, 39.927345414970297 ], [ -75.155548439710302, 39.927559300059599 ], [ -75.155465252491496, 39.9279659734554 ], [ -75.155370775634793, 39.928346302353802 ], [ -75.155276989395702, 39.928772341121601 ], [ -75.155175966041199, 39.929202878854198 ], [ -75.155094710232504, 39.929560475792599 ], [ -75.154999678434805, 39.929993606074298 ], [ -75.154910998434403, 39.930441197239603 ], [ -75.154828426575605, 39.930791468711 ], [ -75.154737846183707, 39.931217171561201 ], [ -75.154646459348498, 39.931634386527698 ], [ -75.154559269294495, 39.932010876634102 ], [ -75.154457469026596, 39.932429240685003 ], [ -75.154375625141398, 39.9328365746589 ], [ -75.154286840747403, 39.933219120328502 ], [ -75.1541966927023, 39.933658519159003 ], [ -75.153864506921394, 39.935135150526101 ], [ -75.153792022242897, 39.935452615729702 ], [ -75.153776777101996, 39.935525109955698 ], [ -75.153701891800793, 39.935904628068698 ], [ -75.153591695423898, 39.936386068411899 ], [ -75.153433327304796, 39.9370688276775 ], [ -75.153289163105299, 39.937745069641501 ], [ -75.153217495336904, 39.9381175945907 ], [ -75.153167918323405, 39.938277880780902 ], [ -75.153081542108694, 39.938439656554699 ], [ -75.153113803700606, 39.9385243783166 ], [ -75.153067213902105, 39.938772222949602 ], [ -75.152959846201099, 39.939203140953197 ], [ -75.152852485460997, 39.939718162048599 ], [ -75.152773975883505, 39.940049009275299 ], [ -75.152548193221094, 39.941157191207203 ], [ -75.152437836986394, 39.941590591070202 ], [ -75.152336057277694, 39.942024326557501 ], [ -75.152263726045305, 39.9423742051532 ], [ -75.152120742849107, 39.943033866145697 ], [ -75.152029485515996, 39.9434643699405 ], [ -75.152025507419793, 39.943483150802003 ], [ -75.151979661963296, 39.943682765970003 ], [ -75.151921983266604, 39.943933895621697 ], [ -75.151843205475799, 39.944296862197803 ], [ -75.151809985334495, 39.944462639863801 ], [ -75.151725040084301, 39.944866433365497 ], [ -75.151699321364603, 39.944977912459997 ], [ -75.151618919258098, 39.945350844359801 ], [ -75.151556670242798, 39.9456250202634 ], [ -75.151548956048899, 39.9456589950777 ], [ -75.151445773623706, 39.946113460440699 ], [ -75.151253119876799, 39.947017801858102 ], [ -75.151106683468996, 39.947720957979797 ], [ -75.150939405242994, 39.948473287962798 ], [ -75.150769901475897, 39.949232989951 ], [ -75.150671834526904, 39.949426634311003 ], [ -75.150598187186603, 39.949751208728998 ], [ -75.1503781369547, 39.950743372454802 ], [ -75.149928085976995, 39.952766822851899 ], [ -75.149512607862704, 39.954653397773299 ], [ -75.149497728377895, 39.954762356992298 ], [ -75.149436074153499, 39.955034675042597 ], [ -75.149350046691495, 39.955245031470099 ], [ -75.149133624741197, 39.956200499688698 ], [ -75.149082068621397, 39.956570436073399 ], [ -75.149040705474704, 39.956867237018599 ], [ -75.149008991583997, 39.957041743122602 ], [ -75.148273034981599, 39.956952408482202 ], [ -75.148411432388102, 39.956339096412798 ], [ -75.147622414068096, 39.956246843947902 ], [ -75.147519021940099, 39.956230710182098 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 18, "disday": "2BMON", "sandis": "2B", "collday": "MON", "Shape__Area": 5660120.91015625, "Shape__Length": 12856.505655388186 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.177679130258696, 39.941867547967199 ], [ -75.177764249352293, 39.941470618310703 ], [ -75.177875770004306, 39.940979148181 ], [ -75.177975284283605, 39.940492529187303 ], [ -75.178061021981406, 39.940142566810401 ], [ -75.178073691441895, 39.9400892830202 ], [ -75.178253742177802, 39.939277119366302 ], [ -75.178364589923106, 39.9387534415415 ], [ -75.1784666499765, 39.938287741374999 ], [ -75.178526863307695, 39.938008437791503 ], [ -75.178617704767206, 39.937600393162199 ], [ -75.178702432441597, 39.937191278865797 ], [ -75.178716272676695, 39.937133256720799 ], [ -75.178788699896202, 39.936741438152502 ], [ -75.178876057681094, 39.936357913817197 ], [ -75.178905563129803, 39.936206049220303 ], [ -75.178952041894703, 39.936010880446901 ], [ -75.179038038162304, 39.935621868972603 ], [ -75.179133201918205, 39.935212269397098 ], [ -75.179240551172299, 39.934824821290903 ], [ -75.179305947581696, 39.934404174694201 ], [ -75.179385586894298, 39.933982946314998 ], [ -75.179465852898304, 39.933617999253201 ], [ -75.179556499424606, 39.933187446960403 ], [ -75.1806599775461, 39.933323090817098 ], [ -75.181164996279094, 39.933394796169097 ], [ -75.182808277754603, 39.933611705943697 ], [ -75.184451783024599, 39.9338229413056 ], [ -75.185007785181796, 39.933886328394998 ], [ -75.185528902335406, 39.933943063521497 ], [ -75.186247717987399, 39.934037346097 ], [ -75.186288731955401, 39.934042735565001 ], [ -75.186917736134902, 39.934125392397 ], [ -75.187345964505198, 39.934178670048396 ], [ -75.187852289041004, 39.934241366543802 ], [ -75.188384425638304, 39.934316390996599 ], [ -75.188882087096104, 39.934381579816602 ], [ -75.189418730668905, 39.9344384312081 ], [ -75.189957993603798, 39.934519665782503 ], [ -75.190447370009096, 39.934587621716297 ], [ -75.1909913330596, 39.934659939882302 ], [ -75.191531711492502, 39.934726306305798 ], [ -75.192009615959904, 39.934787915975697 ], [ -75.192557384292996, 39.934860525055797 ], [ -75.193093806139302, 39.934923435061002 ], [ -75.193606437339994, 39.9349887486215 ], [ -75.194135013663896, 39.935057561537803 ], [ -75.1946559189346, 39.935120331911499 ], [ -75.195180562250798, 39.935192412188599 ], [ -75.195705017233294, 39.935254831553699 ], [ -75.196233086610704, 39.935329917854403 ], [ -75.196762014668096, 39.935389497365399 ], [ -75.197269594141602, 39.935463025257697 ], [ -75.198640835888497, 39.935642585644999 ], [ -75.199263301719, 39.935723669046801 ], [ -75.205358707917398, 39.936457738428203 ], [ -75.205348776990206, 39.936521720059297 ], [ -75.205329458767295, 39.936661639997602 ], [ -75.205311847087799, 39.936801244604503 ], [ -75.205279855960995, 39.937078619004701 ], [ -75.205266754409806, 39.937217239769602 ], [ -75.205255769172098, 39.937356043542103 ], [ -75.205246693867394, 39.9374950095253 ], [ -75.205239318604697, 39.9376341168444 ], [ -75.2052334381696, 39.937773344727901 ], [ -75.205225329489707, 39.938052071641401 ], [ -75.205220706263802, 39.9383310218521 ], [ -75.205217261805103, 39.938684802308202 ], [ -75.2052152750327, 39.938888903307202 ], [ -75.205211510622604, 39.939167515772802 ], [ -75.205212541619602, 39.939306904212103 ], [ -75.205216597098698, 39.939446420124298 ], [ -75.205242808869599, 39.940004687391301 ], [ -75.205246800280506, 39.940144041498002 ], [ -75.205247741449696, 39.940283205391502 ], [ -75.205244621849104, 39.940422126017303 ], [ -75.205236427433604, 39.940560750243002 ], [ -75.205222669101602, 39.940699166326901 ], [ -75.205191640545706, 39.940978940739797 ], [ -75.2051741124383, 39.941119777070902 ], [ -75.205173518523594, 39.941123977891102 ], [ -75.205154201004305, 39.941260646115801 ], [ -75.2051311248715, 39.941401095351601 ], [ -75.205104103730505, 39.941540674981397 ], [ -75.205072356197803, 39.941678932480201 ], [ -75.205035100784002, 39.941815418022699 ], [ -75.204991558435196, 39.941949679132698 ], [ -75.204940946483902, 39.942081265955103 ], [ -75.204882485835398, 39.942209726909198 ], [ -75.204813228882003, 39.9423354092362 ], [ -75.204730347489999, 39.942458970061502 ], [ -75.204665796549307, 39.942541030990697 ], [ -75.204635376933894, 39.942579701900698 ], [ -75.204529901099605, 39.942696881229601 ], [ -75.204415503992806, 39.942809781825602 ], [ -75.204293769469302, 39.9429176819717 ], [ -75.204166283877399, 39.943019856406799 ], [ -75.204034628871597, 39.943115580672 ], [ -75.203899631264306, 39.943204126173299 ], [ -75.203756112116693, 39.943285222056701 ], [ -75.2036040936935, 39.94335955535 ], [ -75.203445200649298, 39.943427909923201 ], [ -75.203281060014703, 39.943491068805599 ], [ -75.203113297550999, 39.943549817709801 ], [ -75.202943537950503, 39.943604939630497 ], [ -75.202773408175702, 39.943657219424502 ], [ -75.202604531745095, 39.943707440079599 ], [ -75.202434955200104, 39.943755314942401 ], [ -75.202262401324901, 39.943799763579101 ], [ -75.202087470852206, 39.943840249707002 ], [ -75.201910765826995, 39.943876233471698 ], [ -75.201732884692007, 39.943907177645499 ], [ -75.201554430609207, 39.943932544207598 ], [ -75.201376004408502, 39.943951795089603 ], [ -75.201197759271906, 39.943964374169703 ], [ -75.201016955270205, 39.943969710589798 ], [ -75.200834261268994, 39.943967575029099 ], [ -75.200651204478305, 39.9439577923877 ], [ -75.200469314482902, 39.943940186726898 ], [ -75.200290120799806, 39.943914583918399 ], [ -75.200115151842198, 39.9438808080168 ], [ -75.199943738125299, 39.943840480382697 ], [ -75.199773287275605, 39.943796366244797 ], [ -75.199603746485707, 39.943748875291398 ], [ -75.199435087045401, 39.943698398825198 ], [ -75.199267278002907, 39.943645325395998 ], [ -75.199100289504301, 39.9435900453798 ], [ -75.198934092861194, 39.943532949178604 ], [ -75.1987686570764, 39.9434744262417 ], [ -75.198603953420005, 39.943414867870899 ], [ -75.198276619706206, 39.943294200849401 ], [ -75.198114302352295, 39.9432330568143 ], [ -75.197954444721603, 39.943168076725101 ], [ -75.197796653652205, 39.943099787041199 ], [ -75.197640298364604, 39.943029212595 ], [ -75.197173523139398, 39.9428140538216 ], [ -75.197016590468095, 39.9427446117259 ], [ -75.196898121675702, 39.942694886362098 ], [ -75.196754253729296, 39.942637979386902 ], [ -75.196696925559905, 39.942615302510802 ], [ -75.196532995198297, 39.942556822382798 ], [ -75.196366260167096, 39.942502088128101 ], [ -75.196197161563902, 39.942451135685502 ], [ -75.196026141687199, 39.942404000121698 ], [ -75.195853641562294, 39.942360719180797 ], [ -75.195680102212094, 39.942321330609502 ], [ -75.195505700205899, 39.942285713997201 ], [ -75.195329218797795, 39.942253198019699 ], [ -75.195150955941102, 39.942224419109003 ], [ -75.194971517411105, 39.9422002322925 ], [ -75.194791513752605, 39.942181490004899 ], [ -75.194611551889807, 39.942169047307303 ], [ -75.194432014395503, 39.942163655155397 ], [ -75.194250746380604, 39.942164687089402 ], [ -75.194068312513906, 39.942172253895102 ], [ -75.193973299841105, 39.942179886402002 ], [ -75.193886315616496, 39.942186874228199 ], [ -75.193786926567597, 39.942199133936398 ], [ -75.193582452986305, 39.942230360299199 ], [ -75.193530052843002, 39.942239363861098 ], [ -75.193357829061995, 39.942277866163202 ], [ -75.193185997888804, 39.942323008381202 ], [ -75.193015574591101, 39.942374560869297 ], [ -75.192848237122007, 39.942432507884398 ], [ -75.192685665780701, 39.942496833745203 ], [ -75.192529537299194, 39.942567524501698 ], [ -75.192381549678004, 39.9426446856192 ], [ -75.1922431315446, 39.942731598923999 ], [ -75.192112933189406, 39.942827767629403 ], [ -75.192047119709599, 39.942882276857297 ], [ -75.191988894971303, 39.9429305022718 ], [ -75.191640270046094, 39.9432448976223 ], [ -75.191639930767195, 39.943245203605699 ], [ -75.190410833668807, 39.944436738041603 ], [ -75.190347089033907, 39.944515335942199 ], [ -75.190280208440299, 39.944592374460399 ], [ -75.190210255550497, 39.944667779326799 ], [ -75.190137297468695, 39.944741478151101 ], [ -75.190068423697795, 39.9448069355565 ], [ -75.189997180396006, 39.9448708731965 ], [ -75.189923621025599, 39.9449332391006 ], [ -75.189847807135195, 39.944993984181401 ], [ -75.189785572829095, 39.945041380230599 ], [ -75.189721965527099, 39.945087683311897 ], [ -75.189657016521494, 39.945132870695303 ], [ -75.189590759478094, 39.945176918802801 ], [ -75.189531738879793, 39.945214508696999 ], [ -75.189467063663898, 39.945254007713302 ], [ -75.1868752190111, 39.946925040971102 ], [ -75.186518983660903, 39.947168961186797 ], [ -75.186395200939799, 39.947253716196897 ], [ -75.1861212389733, 39.9474449421391 ], [ -75.185721882281996, 39.947728312772703 ], [ -75.185326030067998, 39.948014707647403 ], [ -75.184933835254697, 39.948304013989102 ], [ -75.184919204205499, 39.948315089099097 ], [ -75.184288722207498, 39.9487923610425 ], [ -75.183612421839996, 39.9493200847811 ], [ -75.183400019049301, 39.949492277522097 ], [ -75.183276997748806, 39.949595613510198 ], [ -75.183038747129402, 39.949806472583603 ], [ -75.182924534013296, 39.949914335582001 ], [ -75.182814270860206, 39.950024046547099 ], [ -75.182708467532706, 39.950135775478998 ], [ -75.182688537496404, 39.950158306113302 ], [ -75.182607676324807, 39.950249715854 ], [ -75.182515055088402, 39.950367559282803 ], [ -75.182479368237196, 39.950419499406699 ], [ -75.182431144412305, 39.950489685496898 ], [ -75.182354303032994, 39.950615288314303 ], [ -75.182282894359801, 39.950743561651898 ], [ -75.182215280590796, 39.950873700295404 ], [ -75.182018828118302, 39.951267258506597 ], [ -75.181911051554707, 39.951466049649497 ], [ -75.181867111576693, 39.951543845865501 ], [ -75.181040192427901, 39.953007890489303 ], [ -75.180986116974495, 39.9531046239467 ], [ -75.180887277704798, 39.953281433300099 ], [ -75.180580686297503, 39.953812564231299 ], [ -75.180457153432698, 39.9540320074573 ], [ -75.180339080243499, 39.9542528117533 ], [ -75.180226268465802, 39.954481675318704 ], [ -75.180143827436595, 39.954668767977502 ], [ -75.180106871185501, 39.9547667279124 ], [ -75.180073622467404, 39.954865590813803 ], [ -75.180015343312803, 39.955065336062603 ], [ -75.179923794718505, 39.9554214210238 ], [ -75.179916747103306, 39.9554488304872 ], [ -75.179901880950396, 39.9555019301309 ], [ -75.179896360632398, 39.955521647635003 ], [ -75.179873932899497, 39.955601752382599 ], [ -75.179832415848097, 39.955734491834001 ], [ -75.179785719277803, 39.955866234943301 ], [ -75.179735916972902, 39.955995239658598 ], [ -75.179669153043903, 39.956159156959799 ], [ -75.179612410988696, 39.956298466891297 ], [ -75.179526178379504, 39.956520377625097 ], [ -75.179459958867497, 39.956718153528698 ], [ -75.179423953696798, 39.956851170437297 ], [ -75.179372296918601, 39.957086894350802 ], [ -75.179336881558299, 39.957291204394799 ], [ -75.179312460671198, 39.957496455472203 ], [ -75.179305206324997, 39.957599094755103 ], [ -75.179301700411699, 39.957701562144102 ], [ -75.179305093754195, 39.957871590618701 ], [ -75.179316672319601, 39.958006746838599 ], [ -75.179340184470007, 39.9581754042716 ], [ -75.179371958046502, 39.958343847660899 ], [ -75.179410275754705, 39.9585120700551 ], [ -75.179471638134004, 39.958747197110696 ], [ -75.179630991116596, 39.959316286471001 ], [ -75.179704094958595, 39.959621021876501 ], [ -75.179730852715494, 39.959722312987701 ], [ -75.179773417340996, 39.9598553224223 ], [ -75.179822646858696, 39.959973563999398 ], [ -75.179726869979504, 39.959965619422 ], [ -75.179281299053301, 39.959944931427302 ], [ -75.179177336440702, 39.959932230335802 ], [ -75.1790813841626, 39.959920507849098 ], [ -75.178204828390705, 39.959813413284003 ], [ -75.178192554830602, 39.959811913677598 ], [ -75.175487368270694, 39.959457542859901 ], [ -75.175485573815905, 39.959457314280101 ], [ -75.174298385233399, 39.9593061994455 ], [ -75.173897273699694, 39.9592546206108 ], [ -75.173890774930101, 39.959253862897498 ], [ -75.173949772795197, 39.9590125447574 ], [ -75.174093831701995, 39.9583586928985 ], [ -75.174243021464306, 39.957666681064801 ], [ -75.174442297794101, 39.956770889643998 ], [ -75.174530758233402, 39.956379558994399 ], [ -75.174633673424594, 39.955854053148897 ], [ -75.174738155603507, 39.955417360142903 ], [ -75.1747543543446, 39.955312065567199 ], [ -75.174790955786605, 39.955148278401403 ], [ -75.174850874228596, 39.9548801448164 ], [ -75.174871364219499, 39.954788455446902 ], [ -75.174871538035305, 39.954787699794501 ], [ -75.174964713453605, 39.9543827279876 ], [ -75.175089399921603, 39.9538096054563 ], [ -75.175193053004605, 39.953313687073297 ], [ -75.175219038518094, 39.953197936013602 ], [ -75.175294975506304, 39.952859042132097 ], [ -75.175409882907601, 39.952300353948097 ], [ -75.175571802758498, 39.951537287092897 ], [ -75.175645747118494, 39.951195271369301 ], [ -75.175739989787203, 39.950778625214099 ], [ -75.175861893042693, 39.950209060804703 ], [ -75.175882972760306, 39.950110569278998 ], [ -75.175912504537393, 39.949973981572498 ], [ -75.175986631486495, 39.949643094597498 ], [ -75.176055468037305, 39.949326778091802 ], [ -75.176116916371399, 39.949025157985403 ], [ -75.176242439689304, 39.9484239228278 ], [ -75.176340307748603, 39.947998056512397 ], [ -75.176367840335104, 39.947906477212101 ], [ -75.176421801761606, 39.947666064202501 ], [ -75.176455118458705, 39.947517606678403 ], [ -75.176492104880694, 39.947307331901698 ], [ -75.176566579149906, 39.947007244565597 ], [ -75.176649618146598, 39.946603358952501 ], [ -75.176693296011905, 39.9463757717226 ], [ -75.176750452976407, 39.9460991347974 ], [ -75.176819802643294, 39.945822838049601 ], [ -75.176861697468794, 39.945616156619003 ], [ -75.176926275205702, 39.9453754319781 ], [ -75.176988035844403, 39.945089419587497 ], [ -75.177087451817002, 39.944634384819899 ], [ -75.177171363081399, 39.9442190197869 ], [ -75.177274715092096, 39.943726955978903 ], [ -75.177377344482693, 39.943240304499703 ], [ -75.177466423850305, 39.942878618630502 ], [ -75.177505673481804, 39.942686486727098 ], [ -75.177551786049193, 39.942492062487098 ], [ -75.177601087256704, 39.942237669875198 ], [ -75.177666420607295, 39.941936627376698 ], [ -75.177679130258696, 39.941867547967199 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 19, "disday": "2BTHU", "sandis": "2B", "collday": "THU", "Shape__Area": 3750758.8515625, "Shape__Length": 10243.328789175097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.155541541660696, 39.956932882786298 ], [ -75.154453453354606, 39.956786544479101 ], [ -75.154251113314999, 39.956786222840201 ], [ -75.153786139042396, 39.956794664043997 ], [ -75.153348162979896, 39.956833512071199 ], [ -75.152896055902005, 39.9568930917629 ], [ -75.152531895853699, 39.956915264778303 ], [ -75.152322946688699, 39.956925674427602 ], [ -75.152158052714896, 39.9569338890065 ], [ -75.151816692397801, 39.956931576351899 ], [ -75.151493847140102, 39.956905301355 ], [ -75.151229243680504, 39.956871977922802 ], [ -75.151225680919495, 39.956871211540097 ], [ -75.1505922976921, 39.956735064668599 ], [ -75.1502913656348, 39.956678617442698 ], [ -75.149778947184899, 39.956587601042699 ], [ -75.149463141926105, 39.956498557063298 ], [ -75.149277624721805, 39.956375245625203 ], [ -75.149133624741197, 39.956200499688698 ], [ -75.149350046691495, 39.955245031470099 ], [ -75.149436074153499, 39.955034675042597 ], [ -75.149497728377895, 39.954762356992298 ], [ -75.149512607862704, 39.954653397773299 ], [ -75.149928085976995, 39.952766822851899 ], [ -75.1503781369547, 39.950743372454802 ], [ -75.150598187186603, 39.949751208728998 ], [ -75.150671834526904, 39.949426634311003 ], [ -75.150769901475897, 39.949232989951 ], [ -75.150939405242994, 39.948473287962798 ], [ -75.151106683468996, 39.947720957979797 ], [ -75.151253119876799, 39.947017801858102 ], [ -75.151445773623706, 39.946113460440699 ], [ -75.151548956048899, 39.9456589950777 ], [ -75.151556670242798, 39.9456250202634 ], [ -75.151618919258098, 39.945350844359801 ], [ -75.151699321364603, 39.944977912459997 ], [ -75.151725040084301, 39.944866433365497 ], [ -75.151809985334495, 39.944462639863801 ], [ -75.151843205475799, 39.944296862197803 ], [ -75.151921983266604, 39.943933895621697 ], [ -75.151979661963296, 39.943682765970003 ], [ -75.152025507419793, 39.943483150802003 ], [ -75.152029485515996, 39.9434643699405 ], [ -75.152120742849107, 39.943033866145697 ], [ -75.152263726045305, 39.9423742051532 ], [ -75.152336057277694, 39.942024326557501 ], [ -75.152437836986394, 39.941590591070202 ], [ -75.152548193221094, 39.941157191207203 ], [ -75.152773975883505, 39.940049009275299 ], [ -75.152852485460997, 39.939718162048599 ], [ -75.152959846201099, 39.939203140953197 ], [ -75.153067213902105, 39.938772222949602 ], [ -75.153113803700606, 39.9385243783166 ], [ -75.153081542108694, 39.938439656554699 ], [ -75.153167918323405, 39.938277880780902 ], [ -75.153217495336904, 39.9381175945907 ], [ -75.153289163105299, 39.937745069641501 ], [ -75.153433327304796, 39.9370688276775 ], [ -75.153591695423898, 39.936386068411899 ], [ -75.153701891800793, 39.935904628068698 ], [ -75.153776777101996, 39.935525109955698 ], [ -75.153792022242897, 39.935452615729702 ], [ -75.153864506921394, 39.935135150526101 ], [ -75.1541966927023, 39.933658519159003 ], [ -75.154286840747403, 39.933219120328502 ], [ -75.154375625141398, 39.9328365746589 ], [ -75.154457469026596, 39.932429240685003 ], [ -75.154559269294495, 39.932010876634102 ], [ -75.154646459348498, 39.931634386527698 ], [ -75.154737846183707, 39.931217171561201 ], [ -75.154828426575605, 39.930791468711 ], [ -75.154910998434403, 39.930441197239603 ], [ -75.154999678434805, 39.929993606074298 ], [ -75.155094710232504, 39.929560475792599 ], [ -75.155175966041199, 39.929202878854198 ], [ -75.155276989395702, 39.928772341121601 ], [ -75.155370775634793, 39.928346302353802 ], [ -75.155465252491496, 39.9279659734554 ], [ -75.155548439710302, 39.927559300059599 ], [ -75.157118616065006, 39.927761596499103 ], [ -75.158668867236301, 39.927964344519502 ], [ -75.160235200061294, 39.928168013918601 ], [ -75.161800570309396, 39.9283756729454 ], [ -75.163379483459593, 39.928586609950202 ], [ -75.163269491135694, 39.929004782205901 ], [ -75.163191401797206, 39.929373762202196 ], [ -75.163092941952598, 39.929801867800002 ], [ -75.163005472942103, 39.930237658275097 ], [ -75.162360267535007, 39.933035990726303 ], [ -75.162303310321803, 39.933093092371898 ], [ -75.162229277577296, 39.933453635317598 ], [ -75.162150852005496, 39.933815147712799 ], [ -75.162065021184006, 39.934191852608102 ], [ -75.162007027209299, 39.934434137552003 ], [ -75.161921543731793, 39.934811822407497 ], [ -75.161801295491202, 39.935326965756403 ], [ -75.161679958361802, 39.935858974012397 ], [ -75.161400996474697, 39.937166760522601 ], [ -75.161230540455406, 39.937998274365199 ], [ -75.1612167332719, 39.938044367815898 ], [ -75.161131376574801, 39.938382201314703 ], [ -75.161026387289596, 39.938868009909399 ], [ -75.160922090375294, 39.939376161282397 ], [ -75.160836131172204, 39.939749358577899 ], [ -75.160761369792695, 39.940142178697698 ], [ -75.160535772174995, 39.941155295897197 ], [ -75.160330328370193, 39.942121877950299 ], [ -75.160392366662407, 39.9421759809779 ], [ -75.160307321381296, 39.9425609037581 ], [ -75.160207433722107, 39.943006389353499 ], [ -75.160120680046603, 39.943409269489798 ], [ -75.160104221481703, 39.9435087882907 ], [ -75.159987313423599, 39.944018330222903 ], [ -75.159869858401095, 39.944553263014797 ], [ -75.159789199600297, 39.944919383027802 ], [ -75.159687954772906, 39.945398909646997 ], [ -75.159635292222603, 39.945667886964699 ], [ -75.159612528872003, 39.945764941413998 ], [ -75.159483479756105, 39.946334634659401 ], [ -75.159342558113707, 39.946956957518204 ], [ -75.159213695935506, 39.947553622237201 ], [ -75.159113179526798, 39.948028295854598 ], [ -75.159072373405394, 39.948211165609202 ], [ -75.158968184825895, 39.948690355890399 ], [ -75.158800252080098, 39.9494527783284 ], [ -75.158635830597007, 39.950212115538399 ], [ -75.158535627283399, 39.950663053148297 ], [ -75.158446631578101, 39.951063546310799 ], [ -75.158309154219793, 39.951722868906799 ], [ -75.158080103069096, 39.952764210192299 ], [ -75.157964464405396, 39.953266267558 ], [ -75.157866070061502, 39.953757535559397 ], [ -75.157742647165605, 39.954349443012198 ], [ -75.157667180388003, 39.954680844132099 ], [ -75.157574302869406, 39.955082585308098 ], [ -75.157471868465706, 39.955580297764101 ], [ -75.157407274510902, 39.955870186780999 ], [ -75.157373586047797, 39.956015125511897 ], [ -75.1573430896714, 39.956157685606101 ], [ -75.157334280328499, 39.956198865784202 ], [ -75.157334726571705, 39.956208863657302 ], [ -75.157202484283005, 39.956823441033997 ], [ -75.157173625254899, 39.956943847821599 ], [ -75.1571760843634, 39.956997680680203 ], [ -75.157142871695598, 39.957148378613901 ], [ -75.157125288286494, 39.957145862914203 ], [ -75.155541541660696, 39.956932882786298 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 20, "disday": "2BTUE", "sandis": "2B", "collday": "TUE", "Shape__Area": 3894907.56640625, "Shape__Length": 10254.150293262643 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.171631720389001, 39.930903987894503 ], [ -75.171900533027795, 39.929683771484903 ], [ -75.172432855858801, 39.929752770048196 ], [ -75.172910470727004, 39.929820749338496 ], [ -75.173465583910101, 39.929899271664702 ], [ -75.175035409553004, 39.930096823695202 ], [ -75.175606764860504, 39.930163749211403 ], [ -75.176072803111197, 39.930228308075598 ], [ -75.176609330023695, 39.930294446826601 ], [ -75.178174481665494, 39.930500655296903 ], [ -75.180093533985897, 39.9307481172834 ], [ -75.180004326209101, 39.9311791147747 ], [ -75.179919432654202, 39.931534741038199 ], [ -75.179830309123503, 39.931963051704699 ], [ -75.179742304504998, 39.932401297633199 ], [ -75.179556499424606, 39.933187446960403 ], [ -75.179465852898304, 39.933617999253201 ], [ -75.179385586894298, 39.933982946314998 ], [ -75.179305947581696, 39.934404174694201 ], [ -75.179240551172299, 39.934824821290903 ], [ -75.179133201918205, 39.935212269397098 ], [ -75.179038038162304, 39.935621868972603 ], [ -75.178952041894703, 39.936010880446901 ], [ -75.178905563129803, 39.936206049220303 ], [ -75.178876057681094, 39.936357913817197 ], [ -75.178788699896202, 39.936741438152502 ], [ -75.178716272676695, 39.937133256720799 ], [ -75.178702432441597, 39.937191278865797 ], [ -75.178617704767206, 39.937600393162199 ], [ -75.178526863307695, 39.938008437791503 ], [ -75.1784666499765, 39.938287741374999 ], [ -75.178364589923106, 39.9387534415415 ], [ -75.178253742177802, 39.939277119366302 ], [ -75.178073691441895, 39.9400892830202 ], [ -75.178061021981406, 39.940142566810401 ], [ -75.177975284283605, 39.940492529187303 ], [ -75.177875770004306, 39.940979148181 ], [ -75.177764249352293, 39.941470618310703 ], [ -75.177679130258696, 39.941867547967199 ], [ -75.177666420607295, 39.941936627376698 ], [ -75.177601087256704, 39.942237669875198 ], [ -75.177551786049193, 39.942492062487098 ], [ -75.177505673481804, 39.942686486727098 ], [ -75.177466423850305, 39.942878618630502 ], [ -75.177377344482693, 39.943240304499703 ], [ -75.177274715092096, 39.943726955978903 ], [ -75.177171363081399, 39.9442190197869 ], [ -75.177087451817002, 39.944634384819899 ], [ -75.176988035844403, 39.945089419587497 ], [ -75.176926275205702, 39.9453754319781 ], [ -75.176861697468794, 39.945616156619003 ], [ -75.176819802643294, 39.945822838049601 ], [ -75.176750452976407, 39.9460991347974 ], [ -75.176693296011905, 39.9463757717226 ], [ -75.176649618146598, 39.946603358952501 ], [ -75.176566579149906, 39.947007244565597 ], [ -75.176492104880694, 39.947307331901698 ], [ -75.176455118458705, 39.947517606678403 ], [ -75.176421801761606, 39.947666064202501 ], [ -75.176367840335104, 39.947906477212101 ], [ -75.176340307748603, 39.947998056512397 ], [ -75.176242439689304, 39.9484239228278 ], [ -75.176116916371399, 39.949025157985403 ], [ -75.176055468037305, 39.949326778091802 ], [ -75.175986631486495, 39.949643094597498 ], [ -75.175912504537393, 39.949973981572498 ], [ -75.175882972760306, 39.950110569278998 ], [ -75.175861893042693, 39.950209060804703 ], [ -75.175739989787203, 39.950778625214099 ], [ -75.175645747118494, 39.951195271369301 ], [ -75.175571802758498, 39.951537287092897 ], [ -75.175409882907601, 39.952300353948097 ], [ -75.175294975506304, 39.952859042132097 ], [ -75.175219038518094, 39.953197936013602 ], [ -75.175193053004605, 39.953313687073297 ], [ -75.175089399921603, 39.9538096054563 ], [ -75.174964713453605, 39.9543827279876 ], [ -75.174871538035305, 39.954787699794501 ], [ -75.174871364219499, 39.954788455446902 ], [ -75.174850874228596, 39.9548801448164 ], [ -75.174790955786605, 39.955148278401403 ], [ -75.1747543543446, 39.955312065567199 ], [ -75.174738155603507, 39.955417360142903 ], [ -75.174633673424594, 39.955854053148897 ], [ -75.174530758233402, 39.956379558994399 ], [ -75.174442297794101, 39.956770889643998 ], [ -75.174243021464306, 39.957666681064801 ], [ -75.174093831701995, 39.9583586928985 ], [ -75.173949772795197, 39.9590125447574 ], [ -75.173890774930101, 39.959253862897498 ], [ -75.172680068968205, 39.959112694493903 ], [ -75.172669794561202, 39.959111495990904 ], [ -75.172193808942694, 39.959038914041599 ], [ -75.172004135789194, 39.9590162732013 ], [ -75.171994892824401, 39.9590151698958 ], [ -75.171984816490607, 39.9590139667717 ], [ -75.171916459384406, 39.959005806443102 ], [ -75.170404318563797, 39.9588252878482 ], [ -75.170402291650802, 39.958825045852201 ], [ -75.169611636872901, 39.958730649367197 ], [ -75.168829730936594, 39.958636297357302 ], [ -75.167236616004601, 39.958440183334297 ], [ -75.167224680128399, 39.958438713572399 ], [ -75.167121282391506, 39.9584171761134 ], [ -75.165659781525093, 39.958239180629199 ], [ -75.165677623212503, 39.958086711693902 ], [ -75.165687217837501, 39.958041996871003 ], [ -75.165883649458095, 39.957126486306301 ], [ -75.165998749279794, 39.9566481211696 ], [ -75.166183420898903, 39.955743244946902 ], [ -75.166249240203399, 39.955424266716498 ], [ -75.166368077008997, 39.954825099812901 ], [ -75.1664945864499, 39.9542817775705 ], [ -75.166619391227499, 39.953807222895399 ], [ -75.166859266400607, 39.952788185174398 ], [ -75.167070256947994, 39.951845409205198 ], [ -75.167197462810407, 39.951272907380101 ], [ -75.167298825968004, 39.950778656163898 ], [ -75.167356066161901, 39.950518925222198 ], [ -75.167432238618403, 39.950165399510603 ], [ -75.167519466106796, 39.949753723332201 ], [ -75.167636067511097, 39.949244147209697 ], [ -75.167692415988697, 39.948983538308497 ], [ -75.167772862201602, 39.948614127337997 ], [ -75.167871342641703, 39.948159015856596 ], [ -75.168033453918795, 39.947395354014198 ], [ -75.168199224543898, 39.946625466369802 ], [ -75.168342676318602, 39.945969787179799 ], [ -75.168423973684099, 39.945600832939903 ], [ -75.168442105823999, 39.945526006259399 ], [ -75.1684755040081, 39.945370074986599 ], [ -75.168515087984204, 39.945173888610398 ], [ -75.168538873371503, 39.9450650577934 ], [ -75.168634692194004, 39.944639434745298 ], [ -75.168698113517394, 39.944378313416102 ], [ -75.1687642731182, 39.944059697737202 ], [ -75.168863053028105, 39.943627571889103 ], [ -75.168959956642098, 39.943194053137297 ], [ -75.169168257510506, 39.942226782898203 ], [ -75.169275390854807, 39.941737578046499 ], [ -75.169388433399106, 39.941220952139503 ], [ -75.169467617712698, 39.940845261603897 ], [ -75.169551774916499, 39.940441637019603 ], [ -75.169660835520304, 39.9399534411654 ], [ -75.169758534492601, 39.939475856778401 ], [ -75.169908262946606, 39.938811508202001 ], [ -75.169967393254794, 39.938502663098298 ], [ -75.170013784502899, 39.938321250267002 ], [ -75.1700274210923, 39.938272094008902 ], [ -75.170131267632797, 39.9377943728826 ], [ -75.170251138591397, 39.937278608180101 ], [ -75.170354927723807, 39.936763309700098 ], [ -75.170457440727702, 39.936241625795098 ], [ -75.170568414787098, 39.9357857755572 ], [ -75.170643025026607, 39.935386676839897 ], [ -75.170731932601498, 39.935033989243102 ], [ -75.170831932436002, 39.934572185889301 ], [ -75.171093536105104, 39.933358357242099 ], [ -75.171358678713503, 39.932134911940601 ], [ -75.171631720389001, 39.930903987894503 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 21, "disday": "2BWED", "sandis": "2B", "collday": "WED", "Shape__Area": 4065649.95703125, "Shape__Length": 10344.056487546568 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.163269491135694, 39.929004782205901 ], [ -75.163379483459593, 39.928586609950202 ], [ -75.163908924651494, 39.9286580324246 ], [ -75.164666428381693, 39.928749688135099 ], [ -75.1649179526475, 39.928705335811301 ], [ -75.165015450703393, 39.928794878181101 ], [ -75.165439799954598, 39.928859077035398 ], [ -75.165856437884699, 39.928906795741398 ], [ -75.166515361306296, 39.928992503638703 ], [ -75.167081225688904, 39.929074428617902 ], [ -75.167645782411597, 39.929150821528097 ], [ -75.167976757728795, 39.929190820692199 ], [ -75.168570043198599, 39.929261671287101 ], [ -75.168690954216601, 39.929265432782699 ], [ -75.169349246877502, 39.929363083634897 ], [ -75.169786473978505, 39.929422981583102 ], [ -75.170326916314906, 39.929486090851398 ], [ -75.170893835531203, 39.929561955824902 ], [ -75.171340888174299, 39.929617091562598 ], [ -75.171900533027795, 39.929683771484903 ], [ -75.171631720389001, 39.930903987894503 ], [ -75.171358678713503, 39.932134911940601 ], [ -75.171093536105104, 39.933358357242099 ], [ -75.170831932436002, 39.934572185889301 ], [ -75.170731932601498, 39.935033989243102 ], [ -75.170643025026607, 39.935386676839897 ], [ -75.170568414787098, 39.9357857755572 ], [ -75.170457440727702, 39.936241625795098 ], [ -75.170354927723807, 39.936763309700098 ], [ -75.170251138591397, 39.937278608180101 ], [ -75.170131267632797, 39.9377943728826 ], [ -75.1700274210923, 39.938272094008902 ], [ -75.170013784502899, 39.938321250267002 ], [ -75.169967393254794, 39.938502663098298 ], [ -75.169908262946606, 39.938811508202001 ], [ -75.169758534492601, 39.939475856778401 ], [ -75.169660835520304, 39.9399534411654 ], [ -75.169551774916499, 39.940441637019603 ], [ -75.169467617712698, 39.940845261603897 ], [ -75.169388433399106, 39.941220952139503 ], [ -75.169275390854807, 39.941737578046499 ], [ -75.169168257510506, 39.942226782898203 ], [ -75.168959956642098, 39.943194053137297 ], [ -75.168863053028105, 39.943627571889103 ], [ -75.1687642731182, 39.944059697737202 ], [ -75.168698113517394, 39.944378313416102 ], [ -75.168634692194004, 39.944639434745298 ], [ -75.168538873371503, 39.9450650577934 ], [ -75.168515087984204, 39.945173888610398 ], [ -75.1684755040081, 39.945370074986599 ], [ -75.168442105823999, 39.945526006259399 ], [ -75.168423973684099, 39.945600832939903 ], [ -75.168342676318602, 39.945969787179799 ], [ -75.168199224543898, 39.946625466369802 ], [ -75.168033453918795, 39.947395354014198 ], [ -75.167871342641703, 39.948159015856596 ], [ -75.167772862201602, 39.948614127337997 ], [ -75.167692415988697, 39.948983538308497 ], [ -75.167636067511097, 39.949244147209697 ], [ -75.167519466106796, 39.949753723332201 ], [ -75.167432238618403, 39.950165399510603 ], [ -75.167356066161901, 39.950518925222198 ], [ -75.167298825968004, 39.950778656163898 ], [ -75.167197462810407, 39.951272907380101 ], [ -75.167070256947994, 39.951845409205198 ], [ -75.166859266400607, 39.952788185174398 ], [ -75.166619391227499, 39.953807222895399 ], [ -75.1664945864499, 39.9542817775705 ], [ -75.166368077008997, 39.954825099812901 ], [ -75.166249240203399, 39.955424266716498 ], [ -75.166183420898903, 39.955743244946902 ], [ -75.165998749279794, 39.9566481211696 ], [ -75.165883649458095, 39.957126486306301 ], [ -75.165687217837501, 39.958041996871003 ], [ -75.165677623212503, 39.958086711693902 ], [ -75.165659781525093, 39.958239180629199 ], [ -75.165645288139999, 39.958237415221703 ], [ -75.164125760015096, 39.9580523308531 ], [ -75.162473871121705, 39.957851101414597 ], [ -75.1623386795154, 39.957834631529998 ], [ -75.161584878147494, 39.957742795386899 ], [ -75.160283648762899, 39.957575342244397 ], [ -75.158817297562507, 39.957386620016599 ], [ -75.158730673049803, 39.957375471263397 ], [ -75.158678028377807, 39.957367941694699 ], [ -75.157142871695598, 39.957148378613901 ], [ -75.1571760843634, 39.956997680680203 ], [ -75.157173625254899, 39.956943847821599 ], [ -75.157202484283005, 39.956823441033997 ], [ -75.157334726571705, 39.956208863657302 ], [ -75.157334280328499, 39.956198865784202 ], [ -75.1573430896714, 39.956157685606101 ], [ -75.157373586047797, 39.956015125511897 ], [ -75.157407274510902, 39.955870186780999 ], [ -75.157471868465706, 39.955580297764101 ], [ -75.157574302869406, 39.955082585308098 ], [ -75.157667180388003, 39.954680844132099 ], [ -75.157742647165605, 39.954349443012198 ], [ -75.157866070061502, 39.953757535559397 ], [ -75.157964464405396, 39.953266267558 ], [ -75.158080103069096, 39.952764210192299 ], [ -75.158309154219793, 39.951722868906799 ], [ -75.158446631578101, 39.951063546310799 ], [ -75.158535627283399, 39.950663053148297 ], [ -75.158635830597007, 39.950212115538399 ], [ -75.158800252080098, 39.9494527783284 ], [ -75.158968184825895, 39.948690355890399 ], [ -75.159072373405394, 39.948211165609202 ], [ -75.159113179526798, 39.948028295854598 ], [ -75.159213695935506, 39.947553622237201 ], [ -75.159342558113707, 39.946956957518204 ], [ -75.159483479756105, 39.946334634659401 ], [ -75.159612528872003, 39.945764941413998 ], [ -75.159635292222603, 39.945667886964699 ], [ -75.159687954772906, 39.945398909646997 ], [ -75.159789199600297, 39.944919383027802 ], [ -75.159869858401095, 39.944553263014797 ], [ -75.159987313423599, 39.944018330222903 ], [ -75.160104221481703, 39.9435087882907 ], [ -75.160120680046603, 39.943409269489798 ], [ -75.160207433722107, 39.943006389353499 ], [ -75.160307321381296, 39.9425609037581 ], [ -75.160392366662407, 39.9421759809779 ], [ -75.160330328370193, 39.942121877950299 ], [ -75.160535772174995, 39.941155295897197 ], [ -75.160761369792695, 39.940142178697698 ], [ -75.160836131172204, 39.939749358577899 ], [ -75.160922090375294, 39.939376161282397 ], [ -75.161026387289596, 39.938868009909399 ], [ -75.161131376574801, 39.938382201314703 ], [ -75.1612167332719, 39.938044367815898 ], [ -75.161230540455406, 39.937998274365199 ], [ -75.161400996474697, 39.937166760522601 ], [ -75.161679958361802, 39.935858974012397 ], [ -75.161801295491202, 39.935326965756403 ], [ -75.161921543731793, 39.934811822407497 ], [ -75.162007027209299, 39.934434137552003 ], [ -75.162065021184006, 39.934191852608102 ], [ -75.162150852005496, 39.933815147712799 ], [ -75.162229277577296, 39.933453635317598 ], [ -75.162303310321803, 39.933093092371898 ], [ -75.162360267535007, 39.933035990726303 ], [ -75.163005472942103, 39.930237658275097 ], [ -75.163092941952598, 39.929801867800002 ], [ -75.163191401797206, 39.929373762202196 ], [ -75.163269491135694, 39.929004782205901 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 22, "disday": "2DFRI", "sandis": "2D", "collday": "FRI", "Shape__Area": 10988273.92578125, "Shape__Length": 13008.085187619205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.131234155781399, 39.900793073100701 ], [ -75.131699476084606, 39.899685534905799 ], [ -75.150200469691498, 39.9022823888589 ], [ -75.150967863016803, 39.9024015466319 ], [ -75.151178616009801, 39.902434270949797 ], [ -75.152226181886604, 39.902596921741399 ], [ -75.152877990854904, 39.9027164231955 ], [ -75.153429771330195, 39.902788390578898 ], [ -75.154733351145495, 39.902977791881497 ], [ -75.156269962183899, 39.903168284844497 ], [ -75.158433116469496, 39.903471581400701 ], [ -75.1605270800803, 39.903731453908598 ], [ -75.160601770448196, 39.903740722255698 ], [ -75.158632012422501, 39.912550316744401 ], [ -75.158378082559693, 39.913731824881502 ], [ -75.158372579397593, 39.913793865365797 ], [ -75.158367148434394, 39.913849867953999 ], [ -75.158097252224806, 39.915056733434199 ], [ -75.158285790110796, 39.915088006249803 ], [ -75.157983868284305, 39.916482110981597 ], [ -75.157716651723206, 39.9176619176339 ], [ -75.157715172550496, 39.917722832708499 ], [ -75.157653696663999, 39.917975376009899 ], [ -75.157435429794901, 39.918970739430797 ], [ -75.157165002554095, 39.920220808845897 ], [ -75.157056574255606, 39.920725437760197 ], [ -75.156992547985894, 39.921016543518 ], [ -75.156895777078603, 39.921466384593899 ], [ -75.156798309927595, 39.921896374834702 ], [ -75.156725217683999, 39.922251048683798 ], [ -75.156629419496895, 39.9226976616307 ], [ -75.156531181909003, 39.923150269692897 ], [ -75.156457212264698, 39.9234844983797 ], [ -75.156373686940199, 39.9238952768264 ], [ -75.156276539645106, 39.924323821554999 ], [ -75.156191326252696, 39.9246805825696 ], [ -75.156097667738194, 39.925112987687498 ], [ -75.155998910779999, 39.925541853545297 ], [ -75.155918254743597, 39.925898559834003 ], [ -75.155819208726498, 39.926334939852502 ], [ -75.155730702610299, 39.926754478539699 ], [ -75.155637530657103, 39.927129677877602 ], [ -75.155548439710302, 39.927559300059599 ], [ -75.153984686577104, 39.927345414970297 ], [ -75.153430251869906, 39.9272774078445 ], [ -75.152955316784798, 39.927211096701001 ], [ -75.152408877672102, 39.927138637129602 ], [ -75.151888486286097, 39.927071772064302 ], [ -75.151162369739396, 39.926971309712002 ], [ -75.149168947647794, 39.9267059511536 ], [ -75.147264419681704, 39.926451857634497 ], [ -75.146933372330693, 39.926423758459997 ], [ -75.146712140886507, 39.926393497675797 ], [ -75.146358773398006, 39.9263451604279 ], [ -75.133460304376101, 39.924626931918098 ], [ -75.131380279267901, 39.920060986525897 ], [ -75.130759105602607, 39.918487816301997 ], [ -75.130607065079403, 39.918048065690897 ], [ -75.130488783934098, 39.917705953745198 ], [ -75.130443107630697, 39.9175738413782 ], [ -75.130188430843504, 39.916677175107601 ], [ -75.129991395083906, 39.915893179672203 ], [ -75.129700536384306, 39.914327549115697 ], [ -75.129515765744799, 39.913225674709999 ], [ -75.1293849541768, 39.9123318361953 ], [ -75.129300326522994, 39.911311789366103 ], [ -75.129198511309198, 39.9091300665117 ], [ -75.129233433168096, 39.908224108629199 ], [ -75.129285896867998, 39.907398613470399 ], [ -75.129285929782796, 39.907398093429002 ], [ -75.129397887279097, 39.906637068083498 ], [ -75.129650820543503, 39.905433842318097 ], [ -75.129693798118595, 39.905260170456799 ], [ -75.129846545717498, 39.904642916188401 ], [ -75.130410426668504, 39.9028741076892 ], [ -75.131234155781399, 39.900793073100701 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 23, "disday": "2DMON", "sandis": "2D", "collday": "MON", "Shape__Area": 8773877.55859375, "Shape__Length": 12516.970890927978 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.1822230433648, 39.920879813484099 ], [ -75.182513888965801, 39.919638064298702 ], [ -75.182795339308797, 39.918367778239002 ], [ -75.182823285354701, 39.918241646973797 ], [ -75.180902487186898, 39.917980332553803 ], [ -75.181191547859697, 39.916737702171901 ], [ -75.181887546867699, 39.913526670069999 ], [ -75.181888890098804, 39.913520475068403 ], [ -75.181889578752603, 39.913517298209698 ], [ -75.181889749663696, 39.913516366787903 ], [ -75.181935386479907, 39.913268631424103 ], [ -75.182332451667506, 39.913297214532498 ], [ -75.183357158779799, 39.913450191271302 ], [ -75.183373122203193, 39.9134534066486 ], [ -75.183749651336598, 39.913529247129503 ], [ -75.203282945993394, 39.916010326923498 ], [ -75.203192627926995, 39.916188878597602 ], [ -75.202993859832503, 39.916577643952401 ], [ -75.202919598449796, 39.916720852495999 ], [ -75.202792657108901, 39.916965651238201 ], [ -75.2027238769208, 39.917094493275698 ], [ -75.202653459190699, 39.917222874522402 ], [ -75.202293226601995, 39.917862327798403 ], [ -75.202222832817995, 39.917990620147698 ], [ -75.202154083026898, 39.918119343631702 ], [ -75.202138613480898, 39.918149357460102 ], [ -75.202087447563798, 39.918248624934499 ], [ -75.202023395496298, 39.918378593416001 ], [ -75.201962436571094, 39.918509854171198 ], [ -75.201905783721102, 39.918643170281598 ], [ -75.201855103000398, 39.918778048987598 ], [ -75.201812066471305, 39.918913962525799 ], [ -75.201778346110402, 39.919050385834701 ], [ -75.201755342542199, 39.919187540161502 ], [ -75.201744505367799, 39.919330427675703 ], [ -75.201754697991007, 39.919473445588402 ], [ -75.201796122382106, 39.919608342155797 ], [ -75.2018699705838, 39.919731947062999 ], [ -75.201919396262397, 39.919804143808697 ], [ -75.201954046869204, 39.9198547556677 ], [ -75.202046150022795, 39.919976491978403 ], [ -75.202145778080805, 39.920095938374303 ], [ -75.202252430236499, 39.920211877260897 ], [ -75.202365603332296, 39.920323090992198 ], [ -75.2024847953316, 39.9204283628494 ], [ -75.202609559495301, 39.920526498967703 ], [ -75.202743789088103, 39.920618495834802 ], [ -75.202888672504798, 39.920704710485701 ], [ -75.203042137998693, 39.920784126477898 ], [ -75.203202118543601, 39.920855725681598 ], [ -75.203366541243994, 39.920918489847203 ], [ -75.203533337859895, 39.920971400840003 ], [ -75.203701779596699, 39.921013419826103 ], [ -75.203876370587196, 39.9210443233547 ], [ -75.204056083683696, 39.921065258097798 ], [ -75.204239036479507, 39.921077460765403 ], [ -75.204423345508602, 39.921082165352701 ], [ -75.204607129587401, 39.921080607719098 ], [ -75.204788506376502, 39.921074023710297 ], [ -75.204968165206296, 39.921063628777098 ], [ -75.205147790898295, 39.9210501162529 ], [ -75.205327384442697, 39.921033959187902 ], [ -75.205506950409799, 39.921015628909501 ], [ -75.205686489799703, 39.920995598467698 ], [ -75.205866004787197, 39.920974340938798 ], [ -75.206583879112699, 39.920886482876099 ], [ -75.206763314670198, 39.920866174554803 ], [ -75.206942740347998, 39.920847472226598 ], [ -75.207122160660006, 39.920830849919398 ], [ -75.207301577854395, 39.920816779808803 ], [ -75.207480993014798, 39.920805734044698 ], [ -75.207660410737901, 39.920798184854398 ], [ -75.207840472941001, 39.9207962431054 ], [ -75.2080214913953, 39.920801492461997 ], [ -75.208202850156098, 39.920813320096897 ], [ -75.208383934474696, 39.9208311123122 ], [ -75.208564128459798, 39.920854254487899 ], [ -75.208742817314203, 39.920882133834098 ], [ -75.208919385164606, 39.920914134838 ], [ -75.209093300673999, 39.920949665488202 ], [ -75.209266680709405, 39.920989007864399 ], [ -75.209439920779303, 39.921032601411 ], [ -75.209611992589501, 39.921080626972902 ], [ -75.209781871285003, 39.921133267278698 ], [ -75.209948528534497, 39.921190704085703 ], [ -75.210110938409599, 39.921253117407602 ], [ -75.210268072538796, 39.921320689913003 ], [ -75.210418954357706, 39.921393877525801 ], [ -75.210563512119506, 39.921475791646799 ], [ -75.2107019470903, 39.921566057434298 ], [ -75.210834357654804, 39.921663138175198 ], [ -75.210960839844205, 39.921765497103401 ], [ -75.211081490878399, 39.921871596576899 ], [ -75.211196410202405, 39.921979901705299 ], [ -75.211306787435902, 39.922089484682502 ], [ -75.211415324003397, 39.922201206320402 ], [ -75.211521463947705, 39.922315069633598 ], [ -75.211624470427097, 39.922431001554003 ], [ -75.211723603186698, 39.922548926237397 ], [ -75.211818123000398, 39.9226687714688 ], [ -75.211907289600802, 39.922790461408198 ], [ -75.211990366087306, 39.922913923895997 ], [ -75.212066609840804, 39.9230390830432 ], [ -75.212136834230094, 39.923166531705803 ], [ -75.212202495820605, 39.923296874268601 ], [ -75.212262923178798, 39.923429632764901 ], [ -75.212317428762503, 39.923564321664202 ], [ -75.212365326156601, 39.923700456362603 ], [ -75.212405925464793, 39.923837551278503 ], [ -75.212438540256898, 39.923975121807899 ], [ -75.212462484163396, 39.924112681545303 ], [ -75.2124773690377, 39.924249905656197 ], [ -75.212485491829895, 39.924387801839302 ], [ -75.212487866439901, 39.924526481732897 ], [ -75.212484973816302, 39.924665756859397 ], [ -75.212477291571801, 39.924805434161797 ], [ -75.212465301898902, 39.924945323386503 ], [ -75.212449483486594, 39.925085234202299 ], [ -75.212430316264104, 39.925224974503003 ], [ -75.212408280064395, 39.9253643548833 ], [ -75.2123838548587, 39.925503182337003 ], [ -75.212357520454901, 39.9256412683593 ], [ -75.212329703084507, 39.925778543093401 ], [ -75.212300178473996, 39.925915872844698 ], [ -75.212268646989301, 39.926053321259197 ], [ -75.212234871621305, 39.926190716405003 ], [ -75.212198617765097, 39.926327884600703 ], [ -75.212159647239304, 39.926464653887699 ], [ -75.212117723097506, 39.926600850531997 ], [ -75.212072610697007, 39.926736301751298 ], [ -75.212024073021595, 39.926870835610899 ], [ -75.2119718731212, 39.927004278375101 ], [ -75.2119157751806, 39.927136457233402 ], [ -75.211855542214096, 39.927267199348798 ], [ -75.211791314229501, 39.927396609627401 ], [ -75.211723955644104, 39.927525263115299 ], [ -75.211653719540195, 39.927653214063298 ], [ -75.211580823693893, 39.927780490713502 ], [ -75.211505486985502, 39.927907123134197 ], [ -75.211427927160898, 39.928033140468301 ], [ -75.211348363137105, 39.928158571884801 ], [ -75.211267013832497, 39.9282834465535 ], [ -75.211184098167493, 39.928407793644404 ], [ -75.211176963140801, 39.9284182810296 ], [ -75.211099833860501, 39.928531643202803 ], [ -75.210928137353505, 39.928777966459101 ], [ -75.210665948634102, 39.929144447299599 ], [ -75.210488937969203, 39.929387139281197 ], [ -75.210399407134403, 39.9295080732361 ], [ -75.210218470105204, 39.929749176818198 ], [ -75.209942893208407, 39.930109114806299 ], [ -75.2096631377606, 39.930467294578797 ], [ -75.209285245766594, 39.930942721256898 ], [ -75.208808144107493, 39.931534689019202 ], [ -75.208520852721904, 39.9318891673392 ], [ -75.208438399390801, 39.931989629178602 ], [ -75.208424232621795, 39.9320068910922 ], [ -75.208228867753405, 39.932241321805101 ], [ -75.208031272135301, 39.932474683733901 ], [ -75.207332529506004, 39.9332879984171 ], [ -75.207035068666201, 39.933637498680902 ], [ -75.206839232203293, 39.933871671700999 ], [ -75.206548740067802, 39.9342250041448 ], [ -75.206247645727103, 39.934577614217098 ], [ -75.206148354300296, 39.9346958283841 ], [ -75.206051585688201, 39.9348148624847 ], [ -75.205958529949896, 39.934935005116202 ], [ -75.205870381863093, 39.9350565440824 ], [ -75.205788329095299, 39.935179769735903 ], [ -75.205713566473506, 39.935304968986003 ], [ -75.205647285223904, 39.935432431367197 ], [ -75.205623138717101, 39.935486813689401 ], [ -75.205589556397399, 39.935562448592798 ], [ -75.205539038120193, 39.935694911615698 ], [ -75.205495038747202, 39.935829475331801 ], [ -75.205456872510695, 39.935965793864398 ], [ -75.205423850097603, 39.936103522157097 ], [ -75.205395285664807, 39.936242316130503 ], [ -75.205370489890697, 39.936381830725402 ], [ -75.205358707917398, 39.936457738428203 ], [ -75.199263301719, 39.935723669046801 ], [ -75.198640835888497, 39.935642585644999 ], [ -75.197269594141602, 39.935463025257697 ], [ -75.196762014668096, 39.935389497365399 ], [ -75.196233086610704, 39.935329917854403 ], [ -75.195705017233294, 39.935254831553699 ], [ -75.195180562250798, 39.935192412188599 ], [ -75.1946559189346, 39.935120331911499 ], [ -75.194135013663896, 39.935057561537803 ], [ -75.193606437339994, 39.9349887486215 ], [ -75.193093806139302, 39.934923435061002 ], [ -75.192557384292996, 39.934860525055797 ], [ -75.192009615959904, 39.934787915975697 ], [ -75.191531711492502, 39.934726306305798 ], [ -75.1909913330596, 39.934659939882302 ], [ -75.190447370009096, 39.934587621716297 ], [ -75.189957993603798, 39.934519665782503 ], [ -75.189418730668905, 39.9344384312081 ], [ -75.188882087096104, 39.934381579816602 ], [ -75.188384425638304, 39.934316390996599 ], [ -75.187852289041004, 39.934241366543802 ], [ -75.187345964505198, 39.934178670048396 ], [ -75.186917736134902, 39.934125392397 ], [ -75.186288731955401, 39.934042735565001 ], [ -75.186247717987399, 39.934037346097 ], [ -75.185528902335406, 39.933943063521497 ], [ -75.185007785181796, 39.933886328394998 ], [ -75.184451783024599, 39.9338229413056 ], [ -75.182808277754603, 39.933611705943697 ], [ -75.181164996279094, 39.933394796169097 ], [ -75.1806599775461, 39.933323090817098 ], [ -75.179556499424606, 39.933187446960403 ], [ -75.179742304504998, 39.932401297633199 ], [ -75.179830309123503, 39.931963051704699 ], [ -75.179919432654202, 39.931534741038199 ], [ -75.180004326209101, 39.9311791147747 ], [ -75.180093533985897, 39.9307481172834 ], [ -75.180187751600201, 39.930323725603699 ], [ -75.180271826767495, 39.929958650870397 ], [ -75.180370253551203, 39.929530995334503 ], [ -75.180464944362896, 39.929094026962503 ], [ -75.1805369041369, 39.928732252235697 ], [ -75.180627656235302, 39.928298554492002 ], [ -75.180895853272901, 39.9270828147773 ], [ -75.180981615077201, 39.926672907081503 ], [ -75.181058505589405, 39.926295933507397 ], [ -75.181160789369002, 39.925859558319097 ], [ -75.181433854103702, 39.924629977317302 ], [ -75.181698655965803, 39.923346578978403 ], [ -75.181716599634399, 39.923255164193897 ], [ -75.181967682732306, 39.922124700412397 ], [ -75.182195573773797, 39.921027039888003 ], [ -75.1822230433648, 39.920879813484099 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 24, "disday": "2DTHU", "sandis": "2D", "collday": "THU", "Shape__Area": 2970917.296875, "Shape__Length": 9187.9391590772448 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.158632012422501, 39.912550316744401 ], [ -75.160601770448196, 39.903740722255698 ], [ -75.162309293256698, 39.903952605343498 ], [ -75.164645160643403, 39.904253012832697 ], [ -75.167001715051796, 39.904553745600197 ], [ -75.168516663523405, 39.904758129849199 ], [ -75.168509895625107, 39.904872419051102 ], [ -75.167984793213705, 39.907342465442298 ], [ -75.166427878624901, 39.907140750846402 ], [ -75.1656594064507, 39.910746146622898 ], [ -75.165515763590093, 39.911402767982601 ], [ -75.165485665523093, 39.911540352264403 ], [ -75.165083679671298, 39.913377837486202 ], [ -75.165722474330593, 39.913456521216702 ], [ -75.166286042047702, 39.913535234229499 ], [ -75.166854445127399, 39.913606756058499 ], [ -75.166644398771993, 39.914575271306198 ], [ -75.166593596676606, 39.914791872487598 ], [ -75.166548635921203, 39.914846374604103 ], [ -75.166522088872398, 39.9148987507619 ], [ -75.166420011806096, 39.915335671677902 ], [ -75.166368560265695, 39.915594667185402 ], [ -75.166254858590705, 39.916115542234699 ], [ -75.166072122451794, 39.916270569703997 ], [ -75.165808175899002, 39.91748315009 ], [ -75.165535822423493, 39.918731907393202 ], [ -75.1653824967931, 39.919410110775303 ], [ -75.165261890694495, 39.919975099139599 ], [ -75.165162305945401, 39.920412256551302 ], [ -75.165081808084096, 39.920790883473799 ], [ -75.164991761862396, 39.921224926563497 ], [ -75.164891249390095, 39.921676845878203 ], [ -75.164814251344893, 39.922042693169701 ], [ -75.164711031196404, 39.922475066843397 ], [ -75.164621544040799, 39.922914473479501 ], [ -75.164533938434303, 39.923268568279198 ], [ -75.164443483263796, 39.923711122771401 ], [ -75.164352304750594, 39.924151219149998 ], [ -75.164271429795804, 39.924492916218398 ], [ -75.164172118948201, 39.9249195165931 ], [ -75.163920199833896, 39.926139321088499 ], [ -75.163822620054404, 39.926567547885497 ], [ -75.163740928687403, 39.9269256346996 ], [ -75.163651132386306, 39.927358575362902 ], [ -75.163552813814704, 39.927779523140998 ], [ -75.163458393236596, 39.9281819338592 ], [ -75.163379483459593, 39.928586609950202 ], [ -75.161800570309396, 39.9283756729454 ], [ -75.160235200061294, 39.928168013918601 ], [ -75.158668867236301, 39.927964344519502 ], [ -75.157118616065006, 39.927761596499103 ], [ -75.155548439710302, 39.927559300059599 ], [ -75.155637530657103, 39.927129677877602 ], [ -75.155730702610299, 39.926754478539699 ], [ -75.155819208726498, 39.926334939852502 ], [ -75.155918254743597, 39.925898559834003 ], [ -75.155998910779999, 39.925541853545297 ], [ -75.156097667738194, 39.925112987687498 ], [ -75.156191326252696, 39.9246805825696 ], [ -75.156276539645106, 39.924323821554999 ], [ -75.156373686940199, 39.9238952768264 ], [ -75.156457212264698, 39.9234844983797 ], [ -75.156531181909003, 39.923150269692897 ], [ -75.156629419496895, 39.9226976616307 ], [ -75.156725217683999, 39.922251048683798 ], [ -75.156798309927595, 39.921896374834702 ], [ -75.156895777078603, 39.921466384593899 ], [ -75.156992547985894, 39.921016543518 ], [ -75.157056574255606, 39.920725437760197 ], [ -75.157165002554095, 39.920220808845897 ], [ -75.157435429794901, 39.918970739430797 ], [ -75.157653696663999, 39.917975376009899 ], [ -75.157715172550496, 39.917722832708499 ], [ -75.157716651723206, 39.9176619176339 ], [ -75.157983868284305, 39.916482110981597 ], [ -75.158285790110796, 39.915088006249803 ], [ -75.158097252224806, 39.915056733434199 ], [ -75.158367148434394, 39.913849867953999 ], [ -75.158372579397593, 39.913793865365797 ], [ -75.158378082559693, 39.913731824881502 ], [ -75.158632012422501, 39.912550316744401 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 25, "disday": "2DTUE", "sandis": "2D", "collday": "TUE", "Shape__Area": 5949720.578125, "Shape__Length": 16960.055566781914 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.181701520770105, 39.913251795829602 ], [ -75.181473914319099, 39.913235410833202 ], [ -75.180534860109901, 39.913214369010099 ], [ -75.178886745873996, 39.913147010253397 ], [ -75.178366241974302, 39.9130611315613 ], [ -75.177818601513593, 39.912989250684902 ], [ -75.174037740957601, 39.912500706368903 ], [ -75.173244773491703, 39.912417558793599 ], [ -75.172655691197804, 39.912340501240003 ], [ -75.172256326707895, 39.912288258568204 ], [ -75.171937676842504, 39.9122465738904 ], [ -75.170452607273006, 39.9120522879779 ], [ -75.168500729407498, 39.911796900245299 ], [ -75.168198170355396, 39.911747950202802 ], [ -75.165515763590093, 39.911402767982601 ], [ -75.1656594064507, 39.910746146622898 ], [ -75.166427878624901, 39.907140750846402 ], [ -75.167984793213705, 39.907342465442298 ], [ -75.168509895625107, 39.904872419051102 ], [ -75.168516663523405, 39.904758129849199 ], [ -75.173549834864701, 39.905397629535699 ], [ -75.173849995987396, 39.905427630470697 ], [ -75.1741435790086, 39.9054427422153 ], [ -75.175343936807906, 39.905596473271999 ], [ -75.178151436659206, 39.9059559799461 ], [ -75.1833907405845, 39.906626691983597 ], [ -75.184329635504199, 39.906799203061198 ], [ -75.185126403940899, 39.9069104888518 ], [ -75.185303045467506, 39.906935160459099 ], [ -75.186267386936507, 39.907072056392501 ], [ -75.186988195849906, 39.907158370778497 ], [ -75.187554937033497, 39.907206182237402 ], [ -75.187885745971798, 39.907253883672503 ], [ -75.189407161058398, 39.907471343390696 ], [ -75.190076572796798, 39.907529668015997 ], [ -75.210366516616205, 39.910491289714997 ], [ -75.209462688207793, 39.910465231322803 ], [ -75.208737070790804, 39.910504470969002 ], [ -75.208020416354103, 39.910595484549503 ], [ -75.207471096460296, 39.910690177816399 ], [ -75.206961650102102, 39.910840543928003 ], [ -75.206672444874002, 39.910989724742102 ], [ -75.206293310215599, 39.9112735604294 ], [ -75.205951825031605, 39.911602038134902 ], [ -75.205544748574098, 39.912079666638398 ], [ -75.204857162905199, 39.913062307978102 ], [ -75.204725314323497, 39.913300009629502 ], [ -75.204664419310006, 39.913409793072702 ], [ -75.203914732892102, 39.914761316899302 ], [ -75.203282993994904, 39.916010232483103 ], [ -75.203282945993394, 39.916010326923498 ], [ -75.183749651336598, 39.913529247129503 ], [ -75.183373122203193, 39.9134534066486 ], [ -75.183357158779799, 39.913450191271302 ], [ -75.182332451667506, 39.913297214532498 ], [ -75.181935386479907, 39.913268631424103 ], [ -75.181813524116194, 39.9132598586393 ], [ -75.181701520770105, 39.913251795829602 ] ] ], [ [ [ -75.174577000217099, 39.917305285125302 ], [ -75.174602853615795, 39.917185303894698 ], [ -75.175129314260104, 39.917252578235903 ], [ -75.175363561309894, 39.917286867432203 ], [ -75.175618643591406, 39.9173170242886 ], [ -75.176178267316502, 39.917386499821497 ], [ -75.176729647143702, 39.917461575685998 ], [ -75.176967445691602, 39.917478368821399 ], [ -75.177213807960001, 39.917518984492098 ], [ -75.177735406222595, 39.9175847879293 ], [ -75.178348813384204, 39.9176559621311 ], [ -75.179315684924305, 39.917788020000302 ], [ -75.180902487186898, 39.917980332553803 ], [ -75.182823285354701, 39.918241646973797 ], [ -75.182795339308797, 39.918367778239002 ], [ -75.182513888965801, 39.919638064298702 ], [ -75.1822230433648, 39.920879813484099 ], [ -75.182195573773797, 39.921027039888003 ], [ -75.181967682732306, 39.922124700412397 ], [ -75.181716599634399, 39.923255164193897 ], [ -75.181698655965803, 39.923346578978403 ], [ -75.181433854103702, 39.924629977317302 ], [ -75.181160789369002, 39.925859558319097 ], [ -75.181058505589405, 39.926295933507397 ], [ -75.180981615077201, 39.926672907081503 ], [ -75.180895853272901, 39.9270828147773 ], [ -75.180627656235302, 39.928298554492002 ], [ -75.1805369041369, 39.928732252235697 ], [ -75.180464944362896, 39.929094026962503 ], [ -75.180370253551203, 39.929530995334503 ], [ -75.180271826767495, 39.929958650870397 ], [ -75.180187751600201, 39.930323725603699 ], [ -75.180093533985897, 39.9307481172834 ], [ -75.178174481665494, 39.930500655296903 ], [ -75.176609330023695, 39.930294446826601 ], [ -75.176072803111197, 39.930228308075598 ], [ -75.175606764860504, 39.930163749211403 ], [ -75.175035409553004, 39.930096823695202 ], [ -75.173465583910101, 39.929899271664702 ], [ -75.172910470727004, 39.929820749338496 ], [ -75.172432855858801, 39.929752770048196 ], [ -75.171900533027795, 39.929683771484903 ], [ -75.172157294079696, 39.9284723001755 ], [ -75.172418321343898, 39.927241317397197 ], [ -75.172683067789094, 39.9260270901745 ], [ -75.172764615492099, 39.925629044772698 ], [ -75.172946833734201, 39.924845759950898 ], [ -75.173076524281996, 39.924298235074502 ], [ -75.173229294859297, 39.923565878428697 ], [ -75.1734875993765, 39.922316338589397 ], [ -75.173751703780297, 39.921069593873398 ], [ -75.174036054175801, 39.919818834567799 ], [ -75.174304229765497, 39.918571159600198 ], [ -75.174577000217099, 39.917305285125302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 26, "disday": "2DWED", "sandis": "2D", "collday": "WED", "Shape__Area": 2916755.73828125, "Shape__Length": 8766.1634407191013 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.165015450703393, 39.928794878181101 ], [ -75.1649179526475, 39.928705335811301 ], [ -75.164666428381693, 39.928749688135099 ], [ -75.163908924651494, 39.9286580324246 ], [ -75.163379483459593, 39.928586609950202 ], [ -75.163458393236596, 39.9281819338592 ], [ -75.163552813814704, 39.927779523140998 ], [ -75.163651132386306, 39.927358575362902 ], [ -75.163740928687403, 39.9269256346996 ], [ -75.163822620054404, 39.926567547885497 ], [ -75.163920199833896, 39.926139321088499 ], [ -75.164172118948201, 39.9249195165931 ], [ -75.164271429795804, 39.924492916218398 ], [ -75.164352304750594, 39.924151219149998 ], [ -75.164443483263796, 39.923711122771401 ], [ -75.164533938434303, 39.923268568279198 ], [ -75.164621544040799, 39.922914473479501 ], [ -75.164711031196404, 39.922475066843397 ], [ -75.164814251344893, 39.922042693169701 ], [ -75.164891249390095, 39.921676845878203 ], [ -75.164991761862396, 39.921224926563497 ], [ -75.165081808084096, 39.920790883473799 ], [ -75.165162305945401, 39.920412256551302 ], [ -75.165261890694495, 39.919975099139599 ], [ -75.1653824967931, 39.919410110775303 ], [ -75.165535822423493, 39.918731907393202 ], [ -75.165808175899002, 39.91748315009 ], [ -75.166072122451794, 39.916270569703997 ], [ -75.166254858590705, 39.916115542234699 ], [ -75.166368560265695, 39.915594667185402 ], [ -75.166420011806096, 39.915335671677902 ], [ -75.166522088872398, 39.9148987507619 ], [ -75.166548635921203, 39.914846374604103 ], [ -75.166593596676606, 39.914791872487598 ], [ -75.166644398771993, 39.914575271306198 ], [ -75.166854445127399, 39.913606756058499 ], [ -75.166286042047702, 39.913535234229499 ], [ -75.165722474330593, 39.913456521216702 ], [ -75.165083679671298, 39.913377837486202 ], [ -75.165485665523093, 39.911540352264403 ], [ -75.165515763590093, 39.911402767982601 ], [ -75.168198170355396, 39.911747950202802 ], [ -75.168500729407498, 39.911796900245299 ], [ -75.170452607273006, 39.9120522879779 ], [ -75.171937676842504, 39.9122465738904 ], [ -75.172256326707895, 39.912288258568204 ], [ -75.172655691197804, 39.912340501240003 ], [ -75.173244773491703, 39.912417558793599 ], [ -75.174037740957601, 39.912500706368903 ], [ -75.177818601513593, 39.912989250684902 ], [ -75.178366241974302, 39.9130611315613 ], [ -75.178886745873996, 39.913147010253397 ], [ -75.180534860109901, 39.913214369010099 ], [ -75.181473914319099, 39.913235410833202 ], [ -75.181701520770105, 39.913251795829602 ], [ -75.181813524116194, 39.9132598586393 ], [ -75.181935386479907, 39.913268631424103 ], [ -75.181889749663696, 39.913516366787903 ], [ -75.181889578752603, 39.913517298209698 ], [ -75.181888890098804, 39.913520475068403 ], [ -75.181887546867699, 39.913526670069999 ], [ -75.181191547859697, 39.916737702171901 ], [ -75.180902487186898, 39.917980332553803 ], [ -75.179315684924305, 39.917788020000302 ], [ -75.178348813384204, 39.9176559621311 ], [ -75.177735406222595, 39.9175847879293 ], [ -75.177213807960001, 39.917518984492098 ], [ -75.176967445691602, 39.917478368821399 ], [ -75.176729647143702, 39.917461575685998 ], [ -75.176178267316502, 39.917386499821497 ], [ -75.175618643591406, 39.9173170242886 ], [ -75.175363561309894, 39.917286867432203 ], [ -75.175129314260104, 39.917252578235903 ], [ -75.174602853615795, 39.917185303894698 ], [ -75.174577000217099, 39.917305285125302 ], [ -75.174304229765497, 39.918571159600198 ], [ -75.174036054175801, 39.919818834567799 ], [ -75.173751703780297, 39.921069593873398 ], [ -75.1734875993765, 39.922316338589397 ], [ -75.173229294859297, 39.923565878428697 ], [ -75.173076524281996, 39.924298235074502 ], [ -75.172946833734201, 39.924845759950898 ], [ -75.172764615492099, 39.925629044772698 ], [ -75.172683067789094, 39.9260270901745 ], [ -75.172418321343898, 39.927241317397197 ], [ -75.172157294079696, 39.9284723001755 ], [ -75.171900533027795, 39.929683771484903 ], [ -75.171340888174299, 39.929617091562598 ], [ -75.170893835531203, 39.929561955824902 ], [ -75.170326916314906, 39.929486090851398 ], [ -75.169786473978505, 39.929422981583102 ], [ -75.169349246877502, 39.929363083634897 ], [ -75.168690954216601, 39.929265432782699 ], [ -75.168570043198599, 39.929261671287101 ], [ -75.167976757728795, 39.929190820692199 ], [ -75.167645782411597, 39.929150821528097 ], [ -75.167081225688904, 39.929074428617902 ], [ -75.166515361306296, 39.928992503638703 ], [ -75.165856437884699, 39.928906795741398 ], [ -75.165439799954598, 39.928859077035398 ], [ -75.165015450703393, 39.928794878181101 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 27, "disday": "6LWED", "sandis": "6L", "collday": "WED", "Shape__Area": 7508572.9375, "Shape__Length": 14403.918226629123 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.063050938573795, 40.0314394297341 ], [ -75.061648797156494, 40.030664538258698 ], [ -75.060039216793598, 40.029761954129299 ], [ -75.058410092813304, 40.028858595517796 ], [ -75.057953599572301, 40.0286012413385 ], [ -75.057874046760503, 40.028529331827102 ], [ -75.058582117949399, 40.0282341672903 ], [ -75.058672283686306, 40.028153491363597 ], [ -75.059229299200695, 40.027918096648698 ], [ -75.059984069533698, 40.027802347518197 ], [ -75.060009127597297, 40.0277623027171 ], [ -75.060020261722201, 40.027738217262801 ], [ -75.060018076818693, 40.027707732360497 ], [ -75.059856229273507, 40.027531997280498 ], [ -75.059346996177496, 40.026948584175997 ], [ -75.058806422831097, 40.026323019355999 ], [ -75.058253572654905, 40.025700945666301 ], [ -75.0580322342703, 40.025446259329101 ], [ -75.057809606079701, 40.0251833553761 ], [ -75.057591580158103, 40.024945231312799 ], [ -75.057357601342304, 40.0246702574605 ], [ -75.056917627355801, 40.024169706593803 ], [ -75.056457427719096, 40.023641357012004 ], [ -75.056004742320297, 40.023139895041197 ], [ -75.055799549176896, 40.022894076024997 ], [ -75.055565882066404, 40.022615563458203 ], [ -75.055340941846694, 40.022369623485801 ], [ -75.055103826534506, 40.022103901334503 ], [ -75.054920268627797, 40.021876617396401 ], [ -75.054660489640696, 40.021590851932402 ], [ -75.054211839054403, 40.021074192451501 ], [ -75.053727784019699, 40.020522260758902 ], [ -75.053274456954398, 40.020012837301003 ], [ -75.052841851503203, 40.019527724139799 ], [ -75.052411912417099, 40.019022677568302 ], [ -75.0519668949443, 40.018508277957203 ], [ -75.051443118831102, 40.0179302901388 ], [ -75.050285958732601, 40.016580791824602 ], [ -75.049085067813493, 40.015228615698902 ], [ -75.048099024649005, 40.014091944683202 ], [ -75.045507439559998, 40.011104248211701 ], [ -75.047009107333693, 40.010308270031302 ], [ -75.047347058103398, 40.010115175493802 ], [ -75.048025253657499, 40.009727668859803 ], [ -75.048832800832699, 40.009189877337597 ], [ -75.049940436255298, 40.008388696408602 ], [ -75.050922144090293, 40.007632268073202 ], [ -75.051712763691796, 40.0069986094664 ], [ -75.052357433289203, 40.006393333254998 ], [ -75.052879346842303, 40.005753352827 ], [ -75.053686120238297, 40.004520778994497 ], [ -75.061024028759107, 40.012849839528997 ], [ -75.061404361231396, 40.013281475665799 ], [ -75.061903233475306, 40.013847632169998 ], [ -75.062063080616397, 40.014030785244003 ], [ -75.062521294898204, 40.0145519744867 ], [ -75.062917591455999, 40.015011532765499 ], [ -75.063387753131593, 40.015529108010703 ], [ -75.064315055877699, 40.016594736341702 ], [ -75.065116615991997, 40.017521008059802 ], [ -75.0661179767269, 40.018657386522499 ], [ -75.066952772826298, 40.019601933727401 ], [ -75.067011766406694, 40.019679477413298 ], [ -75.067156382575803, 40.019825615066097 ], [ -75.067523897856304, 40.020246029596699 ], [ -75.067909672620701, 40.020701514462601 ], [ -75.068276470921305, 40.0211186874714 ], [ -75.068518974562593, 40.021394716866602 ], [ -75.0686255484665, 40.021523706607901 ], [ -75.069090165162194, 40.021913666143099 ], [ -75.069766768678605, 40.022396859587403 ], [ -75.070199391410199, 40.022733696253198 ], [ -75.073334874003507, 40.025299046879297 ], [ -75.073366166094203, 40.025378218243702 ], [ -75.074946853147694, 40.026700545316402 ], [ -75.075144042871898, 40.026857751445398 ], [ -75.075368941655597, 40.027047180454701 ], [ -75.075490740493606, 40.027080831821401 ], [ -75.075638968632902, 40.027089904534698 ], [ -75.076775954446603, 40.027390800561101 ], [ -75.077216458680695, 40.027500983624499 ], [ -75.077863966031799, 40.027878963894302 ], [ -75.078475683617299, 40.028217261235 ], [ -75.079082767232407, 40.028561804233703 ], [ -75.079695013776202, 40.0289034057949 ], [ -75.079986935514199, 40.029069508683001 ], [ -75.080286675568203, 40.0292402544924 ], [ -75.080789106738607, 40.0295256843076 ], [ -75.080868684672694, 40.029565130611402 ], [ -75.082637478004699, 40.030572412885398 ], [ -75.083362557157997, 40.030978857418802 ], [ -75.083684927820599, 40.031163262862599 ], [ -75.084107665119006, 40.0314050776459 ], [ -75.084200494680204, 40.031447772838398 ], [ -75.084493662149498, 40.031301491942202 ], [ -75.084796667344506, 40.031232808058498 ], [ -75.085081822574907, 40.031275856880796 ], [ -75.085266731637702, 40.031390642571402 ], [ -75.085280573555806, 40.031399234364699 ], [ -75.085377232533602, 40.031493621678798 ], [ -75.085383953685593, 40.031500185800702 ], [ -75.085384592580297, 40.031500810626603 ], [ -75.085417275645497, 40.031557341355402 ], [ -75.085504116483804, 40.0317116062865 ], [ -75.0854876244818, 40.0317901545735 ], [ -75.0854746225112, 40.031860656468901 ], [ -75.085445820053096, 40.031942592672102 ], [ -75.085406792867403, 40.032024291644802 ], [ -75.085373032827903, 40.032102178880201 ], [ -75.085323661182898, 40.032156117424698 ], [ -75.085276528875696, 40.032181561226999 ], [ -75.085159030689596, 40.032241771544697 ], [ -75.085057563208096, 40.032284652836097 ], [ -75.084956481423205, 40.032317709063101 ], [ -75.084835366512294, 40.0323589394687 ], [ -75.084909030863898, 40.0329292578826 ], [ -75.085075353948994, 40.0331748991035 ], [ -75.085316317627601, 40.033530772107703 ], [ -75.084913697895203, 40.0339396287714 ], [ -75.084789672564199, 40.034058085391202 ], [ -75.0839940166709, 40.034915517961899 ], [ -75.083625061983895, 40.035294704914499 ], [ -75.082506663848307, 40.036494239563602 ], [ -75.082458362487898, 40.036546336699999 ], [ -75.081283156675696, 40.037791122865897 ], [ -75.081022303651494, 40.038056164412097 ], [ -75.080834603786101, 40.038255262629399 ], [ -75.080643532653696, 40.038461659921197 ], [ -75.080490231664598, 40.038625118140999 ], [ -75.080288789378997, 40.0388349518865 ], [ -75.080093713511602, 40.039051937971202 ], [ -75.079897443027804, 40.039259271080198 ], [ -75.079807893205199, 40.039352253454901 ], [ -75.079718406852805, 40.039449217130901 ], [ -75.079517784788294, 40.039661468164603 ], [ -75.079350422837507, 40.039842972960301 ], [ -75.079224161940004, 40.039974812839198 ], [ -75.0791381381121, 40.040067246892598 ], [ -75.078902291709994, 40.040320875335603 ], [ -75.077862380894899, 40.039731169782797 ], [ -75.077397553987097, 40.039473497109903 ], [ -75.076981848755693, 40.0392382301889 ], [ -75.076959113049696, 40.039225362237801 ], [ -75.075738615148296, 40.038515825803202 ], [ -75.075339181207795, 40.038290681664598 ], [ -75.074944389543106, 40.038075471844202 ], [ -75.074452275894004, 40.037791874293298 ], [ -75.073552977963899, 40.037307263327797 ], [ -75.0732553205562, 40.037130568774501 ], [ -75.072962958644297, 40.036964804830802 ], [ -75.072689399774603, 40.036817218119097 ], [ -75.072376894841199, 40.036641377972302 ], [ -75.072107138007794, 40.036494555131398 ], [ -75.0717856899617, 40.036313270638601 ], [ -75.071452827875007, 40.036126063175402 ], [ -75.071195436123006, 40.035980989757398 ], [ -75.070898682753807, 40.0358112362048 ], [ -75.070525746643597, 40.035627318842202 ], [ -75.070161988982804, 40.035434603955601 ], [ -75.070004318286493, 40.035329308096998 ], [ -75.0695991306049, 40.035102503185897 ], [ -75.069444882028804, 40.035002459269798 ], [ -75.068539016740502, 40.034501274861903 ], [ -75.068164532285394, 40.034286753581398 ], [ -75.067739092602807, 40.0340711139932 ], [ -75.067312425366097, 40.033833635238899 ], [ -75.067271054068001, 40.033799841164203 ], [ -75.066954902305994, 40.033628551593601 ], [ -75.066526104756093, 40.033386152580597 ], [ -75.066171765303494, 40.033184150254897 ], [ -75.065818916053701, 40.0329794640651 ], [ -75.065485277204601, 40.032798955665903 ], [ -75.065128397957395, 40.032596387823503 ], [ -75.064896252494904, 40.032468679892297 ], [ -75.064765864270498, 40.0323963600135 ], [ -75.064437439665497, 40.032212602243803 ], [ -75.064102449806001, 40.032025572339002 ], [ -75.063845624283999, 40.031881536546202 ], [ -75.0635962774235, 40.0317490075252 ], [ -75.063420296188696, 40.031658607843198 ], [ -75.063191633039494, 40.031575827271602 ], [ -75.063050938573795, 40.0314394297341 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 28, "disday": "3FMON", "sandis": "3F", "collday": "MON", "Shape__Area": 7413447.4453125, "Shape__Length": 13407.602874260432 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.149008991583997, 39.957041743122602 ], [ -75.149040705474704, 39.956867237018599 ], [ -75.149082068621397, 39.956570436073399 ], [ -75.149133624741197, 39.956200499688698 ], [ -75.149277624721805, 39.956375245625203 ], [ -75.149463141926105, 39.956498557063298 ], [ -75.149778947184899, 39.956587601042699 ], [ -75.1502913656348, 39.956678617442698 ], [ -75.1505922976921, 39.956735064668599 ], [ -75.151225680919495, 39.956871211540097 ], [ -75.151229243680504, 39.956871977922802 ], [ -75.151493847140102, 39.956905301355 ], [ -75.151816692397801, 39.956931576351899 ], [ -75.152158052714896, 39.9569338890065 ], [ -75.152322946688699, 39.956925674427602 ], [ -75.152531895853699, 39.956915264778303 ], [ -75.152896055902005, 39.9568930917629 ], [ -75.153348162979896, 39.956833512071199 ], [ -75.153786139042396, 39.956794664043997 ], [ -75.154251113314999, 39.956786222840201 ], [ -75.154453453354606, 39.956786544479101 ], [ -75.155541541660696, 39.956932882786298 ], [ -75.157125288286494, 39.957145862914203 ], [ -75.157142871695598, 39.957148378613901 ], [ -75.158678028377807, 39.957367941694699 ], [ -75.158730673049803, 39.957375471263397 ], [ -75.158817297562507, 39.957386620016599 ], [ -75.160283648762899, 39.957575342244397 ], [ -75.161584878147494, 39.957742795386899 ], [ -75.1623386795154, 39.957834631529998 ], [ -75.162319553881701, 39.957939367721004 ], [ -75.162296186390506, 39.958067340061397 ], [ -75.162178101311795, 39.958556593839901 ], [ -75.162121068964296, 39.958830916702098 ], [ -75.162060954286403, 39.9591102238182 ], [ -75.161962691736804, 39.959580210335197 ], [ -75.161775321692105, 39.960430886311798 ], [ -75.161648502290305, 39.9610305586991 ], [ -75.161555805303493, 39.961451095679799 ], [ -75.161508321501998, 39.961669115663703 ], [ -75.161478840717095, 39.961798520436801 ], [ -75.161414601916405, 39.962111804420402 ], [ -75.161383373954294, 39.962326755556703 ], [ -75.161386020815101, 39.962483338143201 ], [ -75.161305353355502, 39.962903117437698 ], [ -75.161263278285602, 39.963135955877398 ], [ -75.161190965542005, 39.963431706718403 ], [ -75.161111820775602, 39.963798040411099 ], [ -75.161055779755003, 39.964050023831703 ], [ -75.160960684201399, 39.9644787560647 ], [ -75.160807639985094, 39.965168213443299 ], [ -75.160680113186004, 39.965779874268499 ], [ -75.160564050880296, 39.966303385025299 ], [ -75.16048516683, 39.966679536370599 ], [ -75.160408805585007, 39.967039371331701 ], [ -75.160216093077807, 39.967897726835503 ], [ -75.160161959744102, 39.968186389261803 ], [ -75.1600751261781, 39.968608912032003 ], [ -75.159979065481394, 39.969004364451003 ], [ -75.159705062532794, 39.9702111791742 ], [ -75.159443796007096, 39.971476329006201 ], [ -75.159239413075298, 39.972393338279801 ], [ -75.159059475634905, 39.973214198454897 ], [ -75.158785066709996, 39.974491808880998 ], [ -75.1585287692577, 39.975859615140799 ], [ -75.158229701048896, 39.977225178298198 ], [ -75.158241394690194, 39.977289521864499 ], [ -75.157917399192002, 39.978716933140703 ], [ -75.157584568090996, 39.980232264584501 ], [ -75.157257244634295, 39.981702891421698 ], [ -75.156917548909504, 39.983229042571203 ], [ -75.156615680478097, 39.984708102795999 ], [ -75.156278074029103, 39.986292712770599 ], [ -75.155937668182901, 39.9878866266397 ], [ -75.155595050932305, 39.989378567535901 ], [ -75.155501670639694, 39.989802481488802 ], [ -75.155272835383698, 39.990862374069899 ], [ -75.154951852490498, 39.992362141415299 ], [ -75.154657596580805, 39.993653080664899 ], [ -75.154590455351794, 39.993947635307599 ], [ -75.154533026084295, 39.993939015983202 ], [ -75.153296698910296, 39.9937830580187 ], [ -75.152392369851796, 39.993668144352398 ], [ -75.150816154318804, 39.993469479664199 ], [ -75.149240889007402, 39.993262159461302 ], [ -75.147888805387396, 39.993087952914799 ], [ -75.146884132907104, 39.992958194645901 ], [ -75.146091367097497, 39.992857674196202 ], [ -75.145604736646106, 39.992792750845403 ], [ -75.145112241046206, 39.992724819851702 ], [ -75.144468784483394, 39.992642042307203 ], [ -75.1438322380084, 39.992559490999398 ], [ -75.144172765585495, 39.990975215761303 ], [ -75.144499488060006, 39.989485118314001 ], [ -75.144714394425094, 39.9885000742606 ], [ -75.144828736766897, 39.987993434966803 ], [ -75.145097147972805, 39.986756597169901 ], [ -75.145126034397194, 39.986646109108896 ], [ -75.145128676504399, 39.986494255094101 ], [ -75.145017011632106, 39.9863825358334 ], [ -75.144482168401296, 39.985630131325799 ], [ -75.144198285316094, 39.985240944033499 ], [ -75.144156746335298, 39.984733460094702 ], [ -75.144053601383405, 39.983730856194597 ], [ -75.144172470573395, 39.983101941778202 ], [ -75.144454145588497, 39.981606279128698 ], [ -75.144729955627, 39.980106737308802 ], [ -75.144894089049103, 39.979239766582502 ], [ -75.145012781148196, 39.9786066631994 ], [ -75.1452935957807, 39.977079448350203 ], [ -75.145449061359798, 39.976237145825102 ], [ -75.145562559758901, 39.9756480489919 ], [ -75.145828377561799, 39.974222476787602 ], [ -75.146085117774604, 39.972842508797697 ], [ -75.146321812462006, 39.971573422968 ], [ -75.146546535574899, 39.970389717161602 ], [ -75.146745064541193, 39.969301981015498 ], [ -75.147149609608604, 39.967135917845503 ], [ -75.147388386470993, 39.965886418198302 ], [ -75.147643388807396, 39.9645240900551 ], [ -75.147816006281204, 39.963592448000099 ], [ -75.147799587025801, 39.963536149230698 ], [ -75.147793038553104, 39.963482424195902 ], [ -75.148031236055701, 39.962274492629597 ], [ -75.148124403302404, 39.9617592149527 ], [ -75.148184340406203, 39.961427712734697 ], [ -75.148213952968902, 39.961285682382197 ], [ -75.148728681103705, 39.958507025859099 ], [ -75.148822209173602, 39.958032081173897 ], [ -75.148850567676504, 39.957812424558803 ], [ -75.148862626100296, 39.957753769396398 ], [ -75.148879112009396, 39.957673569394103 ], [ -75.148903574461002, 39.957554568475899 ], [ -75.149008991583997, 39.957041743122602 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 29, "disday": "3FTHU", "sandis": "3F", "collday": "THU", "Shape__Area": 5240599.046875, "Shape__Length": 10849.475131350389 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.112888781312705, 39.968538619170602 ], [ -75.113619571570496, 39.968220547176998 ], [ -75.120233401236902, 39.9723966146409 ], [ -75.120762509717395, 39.972730662685002 ], [ -75.122690064686594, 39.973963798101003 ], [ -75.123393361554506, 39.9744125118985 ], [ -75.123845193226401, 39.974703593759401 ], [ -75.124322856065405, 39.975012122134402 ], [ -75.124712619732193, 39.975257427997903 ], [ -75.125204560395005, 39.9755672991258 ], [ -75.125301639163496, 39.975600859148599 ], [ -75.126138153366298, 39.9760912130698 ], [ -75.126544065856095, 39.976329302217202 ], [ -75.126962654731898, 39.976571384640103 ], [ -75.127070762569801, 39.976631656571897 ], [ -75.127403777348306, 39.976854753718399 ], [ -75.127571452895197, 39.9769276502278 ], [ -75.128631212549607, 39.9775427258324 ], [ -75.129512141146094, 39.978056234723901 ], [ -75.129954239712106, 39.9783113587334 ], [ -75.130451210577704, 39.978598231451699 ], [ -75.130922520806806, 39.978872805652898 ], [ -75.131778849123606, 39.979373857584697 ], [ -75.133031178039005, 39.9801013682766 ], [ -75.133192415708805, 39.980143817880801 ], [ -75.132881846069395, 39.981554933936501 ], [ -75.132883347027303, 39.981640724126201 ], [ -75.132547695932999, 39.9831760000664 ], [ -75.132520425831302, 39.983283228122403 ], [ -75.132210308651096, 39.984750666358998 ], [ -75.131909988556103, 39.986150515420398 ], [ -75.131909152278197, 39.986315771400101 ], [ -75.131833761607894, 39.986528179358899 ], [ -75.131678659695794, 39.987238982924303 ], [ -75.13156071249, 39.987808490940402 ], [ -75.1312426533853, 39.989305166387098 ], [ -75.130900661071493, 39.9908991257102 ], [ -75.130789184523394, 39.9914065019316 ], [ -75.130729022761301, 39.991679676010499 ], [ -75.130643914669506, 39.992071901818598 ], [ -75.130561505819102, 39.992483835139097 ], [ -75.1302546322284, 39.993976384887397 ], [ -75.130171004048606, 39.994394781165902 ], [ -75.130085332309704, 39.994740141384099 ], [ -75.129985488741397, 39.9951426283694 ], [ -75.129923722640896, 39.995469294547298 ], [ -75.129415013984897, 39.995406592790097 ], [ -75.128947129852193, 39.995344146089103 ], [ -75.128492066081606, 39.995285706086598 ], [ -75.128000178635006, 39.9952184012907 ], [ -75.127345037566599, 39.995137278346498 ], [ -75.126709556440801, 39.995055251195403 ], [ -75.1260573468888, 39.994966398452299 ], [ -75.125332900481396, 39.9948760596277 ], [ -75.124601401996699, 39.9947788512494 ], [ -75.124162224621799, 39.994724377597301 ], [ -75.123869293383805, 39.994684897636198 ], [ -75.124190423151504, 39.993194118673003 ], [ -75.124506323680194, 39.991700216319003 ], [ -75.124744063633102, 39.990593586506499 ], [ -75.124589393571398, 39.990439465441803 ], [ -75.124434398131001, 39.990422450547896 ], [ -75.124681178611596, 39.990288134345001 ], [ -75.124553018121802, 39.990169556898003 ], [ -75.124334773553599, 39.9899666394383 ], [ -75.124116912189706, 39.989763448277799 ], [ -75.123899213447999, 39.989560144160997 ], [ -75.123681454545704, 39.989356884176097 ], [ -75.123463414936893, 39.989153828163602 ], [ -75.123244871735395, 39.988951135909197 ], [ -75.123025602125495, 39.988748965396297 ], [ -75.122805386733106, 39.988547476487199 ], [ -75.122584002708706, 39.988346828062099 ], [ -75.122583232897497, 39.9883461373717 ], [ -75.122361227203299, 39.988147178999398 ], [ -75.122136840914095, 39.987948687356003 ], [ -75.121910619752398, 39.987751513780402 ], [ -75.121706675396396, 39.987580980586898 ], [ -75.121679256784901, 39.987558054052897 ], [ -75.121437894279396, 39.987371821726803 ], [ -75.121189565988004, 39.987190609326497 ], [ -75.120937534709597, 39.987012041650701 ], [ -75.120685066857803, 39.986833740905503 ], [ -75.120435426436998, 39.986653331072603 ], [ -75.120191593136695, 39.986468639586803 ], [ -75.119951854099199, 39.986280855336297 ], [ -75.119714377633699, 39.986091332062202 ], [ -75.119478143632904, 39.985900852818801 ], [ -75.119242136705907, 39.985710199859 ], [ -75.1190053391568, 39.985520154473399 ], [ -75.118672489057801, 39.985251314410299 ], [ -75.118435958594006, 39.9850610171044 ], [ -75.118201203316801, 39.984869497644901 ], [ -75.117970146175495, 39.984675435082799 ], [ -75.117744284499494, 39.984477791557303 ], [ -75.117558868266897, 39.9843101208576 ], [ -75.117522565265105, 39.984277292602101 ], [ -75.117303025187496, 39.984075302415299 ], [ -75.117083703362496, 39.983873184333099 ], [ -75.116863499636594, 39.983671701516599 ], [ -75.116643580726304, 39.983470035565297 ], [ -75.116424081224395, 39.983268098565503 ], [ -75.116205063413602, 39.9830658550067 ], [ -75.116077248341199, 39.982947339318898 ], [ -75.115986582520407, 39.982863270117903 ], [ -75.115766992823097, 39.982661281943301 ], [ -75.115546505070697, 39.982459771873103 ], [ -75.115327322847307, 39.9822574912045 ], [ -75.115111651036599, 39.9820531876776 ], [ -75.114901695646395, 39.9818456099758 ], [ -75.114699946283395, 39.981633079914801 ], [ -75.114506644031195, 39.981415631908 ], [ -75.114320857113796, 39.981194337549397 ], [ -75.114253304975904, 39.981110166986802 ], [ -75.114141136677404, 39.980970403417501 ], [ -75.113964049573198, 39.980745252701603 ], [ -75.113788760363207, 39.980519225734497 ], [ -75.1136148368644, 39.980292533348901 ], [ -75.113441845726797, 39.980065386347498 ], [ -75.113269355979696, 39.979837994684601 ], [ -75.113096933040595, 39.9796105709312 ], [ -75.113010899281804, 39.9794974212192 ], [ -75.112924145945797, 39.979383325036203 ], [ -75.112750561360102, 39.979156467792102 ], [ -75.112514154005595, 39.978861928906703 ], [ -75.112335997933997, 39.978636805809302 ], [ -75.112157309804303, 39.978411992746103 ], [ -75.111976258401199, 39.978188561293599 ], [ -75.111791012627094, 39.977967580315998 ], [ -75.111762332341002, 39.977935075805803 ], [ -75.111649949249795, 39.9778077091147 ], [ -75.111598926037303, 39.977749882770901 ], [ -75.111537923130996, 39.977693323564502 ], [ -75.1059037964677, 39.971294533527001 ], [ -75.106756853814204, 39.970974635814997 ], [ -75.110514436309103, 39.969518049956001 ], [ -75.112888781312705, 39.968538619170602 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 30, "disday": "3FTUE", "sandis": "3F", "collday": "TUE", "Shape__Area": 4431632.5546875, "Shape__Length": 12195.063265276171 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.133580033747904, 39.9974707934932 ], [ -75.133728087304505, 39.996828046140699 ], [ -75.134687201397696, 39.997259122112602 ], [ -75.134716231908598, 39.9969121882731 ], [ -75.134885470487404, 39.996162281521997 ], [ -75.134995134252094, 39.996126099781399 ], [ -75.135511886588404, 39.9961881038097 ], [ -75.135514039655703, 39.995773162896903 ], [ -75.135532409093798, 39.995368124167797 ], [ -75.135605645928706, 39.994717692458003 ], [ -75.135541848160699, 39.994658276497603 ], [ -75.135517309769199, 39.994575626202803 ], [ -75.135809439468005, 39.993164052910601 ], [ -75.136161722273201, 39.991574090184301 ], [ -75.136510141301301, 39.989978354129299 ], [ -75.136574842703695, 39.9896624859133 ], [ -75.136645088846706, 39.989379187079997 ], [ -75.136837449654706, 39.988494982670403 ], [ -75.137140463805693, 39.986998252115299 ], [ -75.137463503362099, 39.9855015857908 ], [ -75.137802625910695, 39.983916511529898 ], [ -75.138140758102395, 39.982321721699002 ], [ -75.1384532097739, 39.980825847680997 ], [ -75.138770457660002, 39.979332719484297 ], [ -75.139412500264498, 39.976343028801502 ], [ -75.1401026970603, 39.976433321200197 ], [ -75.140670251944499, 39.976506709890103 ], [ -75.1411759968762, 39.976573862905802 ], [ -75.141668835597102, 39.976635824162798 ], [ -75.142618055055806, 39.976759250688303 ], [ -75.143532048815899, 39.9768784687463 ], [ -75.144394236955094, 39.976990652851903 ], [ -75.145216326921002, 39.977094221930699 ], [ -75.1452935957807, 39.977079448350203 ], [ -75.145012781148196, 39.9786066631994 ], [ -75.144894089049103, 39.979239766582502 ], [ -75.144729955627, 39.980106737308802 ], [ -75.144454145588497, 39.981606279128698 ], [ -75.144172470573395, 39.983101941778202 ], [ -75.144053601383405, 39.983730856194597 ], [ -75.144156746335298, 39.984733460094702 ], [ -75.144198285316094, 39.985240944033499 ], [ -75.144482168401296, 39.985630131325799 ], [ -75.145017011632106, 39.9863825358334 ], [ -75.145128676504399, 39.986494255094101 ], [ -75.145126034397194, 39.986646109108896 ], [ -75.145097147972805, 39.986756597169901 ], [ -75.144828736766897, 39.987993434966803 ], [ -75.144714394425094, 39.9885000742606 ], [ -75.144499488060006, 39.989485118314001 ], [ -75.144172765585495, 39.990975215761303 ], [ -75.1438322380084, 39.992559490999398 ], [ -75.144468784483394, 39.992642042307203 ], [ -75.145112241046206, 39.992724819851702 ], [ -75.145604736646106, 39.992792750845403 ], [ -75.146091367097497, 39.992857674196202 ], [ -75.146884132907104, 39.992958194645901 ], [ -75.147888805387396, 39.993087952914799 ], [ -75.149240889007402, 39.993262159461302 ], [ -75.150816154318804, 39.993469479664199 ], [ -75.152392369851796, 39.993668144352398 ], [ -75.153296698910296, 39.9937830580187 ], [ -75.154533026084295, 39.993939015983202 ], [ -75.154590455351794, 39.993947635307599 ], [ -75.154394401750196, 39.994880363799702 ], [ -75.154320992460697, 39.995231201051901 ], [ -75.154255730624698, 39.995534830756696 ], [ -75.154144322235396, 39.996000806614298 ], [ -75.1539872246816, 39.996791166273802 ], [ -75.153784062213305, 39.997727814847501 ], [ -75.1534968741109, 39.997831940828597 ], [ -75.153187358683098, 39.997944292794699 ], [ -75.152877920655001, 39.998056768238897 ], [ -75.152568569905597, 39.9981693845046 ], [ -75.152259319756595, 39.998282160815599 ], [ -75.151950181187999, 39.9983951163425 ], [ -75.151641166488005, 39.998508266681803 ], [ -75.151332284260803, 39.998621631851798 ], [ -75.151023549100699, 39.998735228402097 ], [ -75.150714970782005, 39.998849076378001 ], [ -75.150406560352295, 39.998963193150303 ], [ -75.150098378603403, 39.999077673803299 ], [ -75.150023193583195, 39.999105815413799 ], [ -75.149790638585301, 39.999192859244801 ], [ -75.149483314851196, 39.999308710158402 ], [ -75.149176352142902, 39.999425139698701 ], [ -75.148869696512307, 39.999542057445403 ], [ -75.148563292703997, 39.999659376552003 ], [ -75.148257083191496, 39.999777008317899 ], [ -75.147951015166299, 39.999894863247697 ], [ -75.147720346364196, 39.999983811771401 ], [ -75.147645031070198, 40.0000128535399 ], [ -75.147339076857307, 40.000130891471997 ], [ -75.147033097416397, 40.000248886593397 ], [ -75.146727036328599, 40.000366752027702 ], [ -75.146420838416006, 40.000484399123799 ], [ -75.1461144497069, 40.000601738356202 ], [ -75.145807812650006, 40.000718681919899 ], [ -75.145500873207098, 40.000835142088803 ], [ -75.145193576239606, 40.000951029309199 ], [ -75.144885866575606, 40.001066254926897 ], [ -75.144577687839401, 40.001180731161199 ], [ -75.1442689937425, 40.001294382172503 ], [ -75.143959820711103, 40.001407266448801 ], [ -75.143800490491003, 40.001465008885098 ], [ -75.1436502205907, 40.001519468057197 ], [ -75.143340240923905, 40.001631061056301 ], [ -75.143029928012396, 40.001742121279101 ], [ -75.142719331633799, 40.001852725539202 ], [ -75.142418437462496, 40.001959423584999 ], [ -75.142408495781297, 40.0019629487171 ], [ -75.142097470299504, 40.002072865827103 ], [ -75.141786300280799, 40.002182553577597 ], [ -75.141475034397303, 40.002292086957503 ], [ -75.141163718978703, 40.002401540902397 ], [ -75.140852402625896, 40.002510992202403 ], [ -75.140541130495905, 40.002620515767703 ], [ -75.140229951221997, 40.002730187489199 ], [ -75.139918911094995, 40.002840083204902 ], [ -75.139878214566494, 40.002854509540001 ], [ -75.139608057609905, 40.002950277879897 ], [ -75.139297438191605, 40.003060848280199 ], [ -75.138987100367601, 40.003171868471497 ], [ -75.138677091560496, 40.0032834152208 ], [ -75.138367456919795, 40.003395563441799 ], [ -75.138058375375607, 40.003508595624901 ], [ -75.137750666698494, 40.003623830604297 ], [ -75.137671046493097, 40.003654272767299 ], [ -75.137444174269206, 40.003741014342999 ], [ -75.137138543954904, 40.003859575651497 ], [ -75.136833416982796, 40.0039789423302 ], [ -75.136528441542296, 40.004098544135601 ], [ -75.136223260047004, 40.004217808886999 ], [ -75.135917518395203, 40.004336165380003 ], [ -75.1356108601519, 40.004453042353198 ], [ -75.135302671429002, 40.004567708602302 ], [ -75.134991320507396, 40.004677690578802 ], [ -75.1346757418534, 40.004779474316599 ], [ -75.134354268483605, 40.004869587996701 ], [ -75.134026626155404, 40.004946972921502 ], [ -75.133695340303106, 40.005013048936199 ], [ -75.133360648929198, 40.005070734441802 ], [ -75.133023014628805, 40.005114019306603 ], [ -75.132682966018706, 40.005139955686403 ], [ -75.132341065553007, 40.005155507782597 ], [ -75.131998442798206, 40.005164445091197 ], [ -75.131940320813897, 40.0051654334804 ], [ -75.132067688997495, 40.004567825849797 ], [ -75.132667620980598, 40.004559757000202 ], [ -75.133071628476998, 40.004557188004199 ], [ -75.133164672055102, 40.004548053307502 ], [ -75.133990315807395, 40.004241771810499 ], [ -75.133960722006094, 40.003861992486101 ], [ -75.133746654482593, 40.002297349531503 ], [ -75.133849565168404, 40.001899240045503 ], [ -75.133925020580605, 40.0015558952813 ], [ -75.133997092773996, 40.001210697464799 ], [ -75.134077303012504, 40.000803836064001 ], [ -75.134414888286202, 39.999216699561998 ], [ -75.134532670173797, 39.998708217832402 ], [ -75.134609898120303, 39.998316239805398 ], [ -75.133435623551904, 39.998144176586997 ], [ -75.133580033747904, 39.9974707934932 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 31, "disday": "3FWED", "sandis": "3F", "collday": "WED", "Shape__Area": 3515868.0546875, "Shape__Length": 11730.010684993953 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.123212436239498, 39.997762091602397 ], [ -75.123559471136801, 39.996184606159602 ], [ -75.123869293383805, 39.994684897636198 ], [ -75.124162224621799, 39.994724377597301 ], [ -75.124601401996699, 39.9947788512494 ], [ -75.125332900481396, 39.9948760596277 ], [ -75.1260573468888, 39.994966398452299 ], [ -75.126709556440801, 39.995055251195403 ], [ -75.127345037566599, 39.995137278346498 ], [ -75.128000178635006, 39.9952184012907 ], [ -75.128492066081606, 39.995285706086598 ], [ -75.128947129852193, 39.995344146089103 ], [ -75.129415013984897, 39.995406592790097 ], [ -75.129923722640896, 39.995469294547298 ], [ -75.129985488741397, 39.9951426283694 ], [ -75.130085332309704, 39.994740141384099 ], [ -75.130171004048606, 39.994394781165902 ], [ -75.1302546322284, 39.993976384887397 ], [ -75.130561505819102, 39.992483835139097 ], [ -75.130643914669506, 39.992071901818598 ], [ -75.130729022761301, 39.991679676010499 ], [ -75.130789184523394, 39.9914065019316 ], [ -75.130900661071493, 39.9908991257102 ], [ -75.1312426533853, 39.989305166387098 ], [ -75.13156071249, 39.987808490940402 ], [ -75.131678659695794, 39.987238982924303 ], [ -75.131833761607894, 39.986528179358899 ], [ -75.131909152278197, 39.986315771400101 ], [ -75.131909988556103, 39.986150515420398 ], [ -75.132210308651096, 39.984750666358998 ], [ -75.132520425831302, 39.983283228122403 ], [ -75.132547695932999, 39.9831760000664 ], [ -75.132883347027303, 39.981640724126201 ], [ -75.132881846069395, 39.981554933936501 ], [ -75.133192415708805, 39.980143817880801 ], [ -75.133512147601095, 39.978651436737699 ], [ -75.133836775564603, 39.977157124853399 ], [ -75.134005960549601, 39.976340565277702 ], [ -75.134220981042205, 39.975373663760699 ], [ -75.134335697237205, 39.975002238023698 ], [ -75.134804065112704, 39.975209679710701 ], [ -75.135288863176598, 39.975421417753999 ], [ -75.135728369281694, 39.975614186973097 ], [ -75.136171408911196, 39.975808932494203 ], [ -75.136336806318297, 39.975874817259196 ], [ -75.136600735347201, 39.975980978000599 ], [ -75.137064615097998, 39.976041789727603 ], [ -75.137571137404805, 39.976106316665202 ], [ -75.138133189605, 39.976179895497403 ], [ -75.138720924593699, 39.976258700749199 ], [ -75.139412500264498, 39.976343028801502 ], [ -75.138770457660002, 39.979332719484297 ], [ -75.1384532097739, 39.980825847680997 ], [ -75.138140758102395, 39.982321721699002 ], [ -75.137802625910695, 39.983916511529898 ], [ -75.137463503362099, 39.9855015857908 ], [ -75.137140463805693, 39.986998252115299 ], [ -75.136837449654706, 39.988494982670403 ], [ -75.136645088846706, 39.989379187079997 ], [ -75.136574842703695, 39.9896624859133 ], [ -75.136510141301301, 39.989978354129299 ], [ -75.136161722273201, 39.991574090184301 ], [ -75.135809439468005, 39.993164052910601 ], [ -75.135517309769199, 39.994575626202803 ], [ -75.135541848160699, 39.994658276497603 ], [ -75.135605645928706, 39.994717692458003 ], [ -75.135532409093798, 39.995368124167797 ], [ -75.135514039655703, 39.995773162896903 ], [ -75.135511886588404, 39.9961881038097 ], [ -75.134995134252094, 39.996126099781399 ], [ -75.134885470487404, 39.996162281521997 ], [ -75.134716231908598, 39.9969121882731 ], [ -75.134687201397696, 39.997259122112602 ], [ -75.133728087304505, 39.996828046140699 ], [ -75.133580033747904, 39.9974707934932 ], [ -75.133435623551904, 39.998144176586997 ], [ -75.134609898120303, 39.998316239805398 ], [ -75.134532670173797, 39.998708217832402 ], [ -75.134414888286202, 39.999216699561998 ], [ -75.134077303012504, 40.000803836064001 ], [ -75.133997092773996, 40.001210697464799 ], [ -75.133925020580605, 40.0015558952813 ], [ -75.133849565168404, 40.001899240045503 ], [ -75.133746654482593, 40.002297349531503 ], [ -75.133960722006094, 40.003861992486101 ], [ -75.133990315807395, 40.004241771810499 ], [ -75.133164672055102, 40.004548053307502 ], [ -75.133071628476998, 40.004557188004199 ], [ -75.132667620980598, 40.004559757000202 ], [ -75.132067688997495, 40.004567825849797 ], [ -75.131940320813897, 40.0051654334804 ], [ -75.131656149829396, 40.005170265949502 ], [ -75.131313855667898, 40.005173320516498 ], [ -75.130971443951495, 40.005172860088102 ], [ -75.130629108809401, 40.005168500749598 ], [ -75.130287028433997, 40.005159968149698 ], [ -75.129945035869994, 40.005149647096701 ], [ -75.1296030362371, 40.005138569802398 ], [ -75.129261054579501, 40.005126634121197 ], [ -75.128919118423696, 40.0051137343603 ], [ -75.128577252852907, 40.005099767474697 ], [ -75.128235485293501, 40.005084630472901 ], [ -75.127893843278301, 40.0050682176634 ], [ -75.127865118087797, 40.0050667209183 ], [ -75.127552350725907, 40.005050425975099 ], [ -75.127210969337497, 40.005031519435597 ], [ -75.126869515306097, 40.005012556155499 ], [ -75.126528016080201, 40.004993432242301 ], [ -75.126186513299004, 40.004973949520497 ], [ -75.125845054459106, 40.004953909948597 ], [ -75.125503680106505, 40.004933113524999 ], [ -75.125162436574797, 40.004911362182497 ], [ -75.124821365519196, 40.004888457747597 ], [ -75.124480512145198, 40.004864201227299 ], [ -75.124139920456798, 40.004838394502698 ], [ -75.123951088905798, 40.004823102527098 ], [ -75.123799634531807, 40.004810837654702 ], [ -75.1234596971766, 40.004781333438899 ], [ -75.123120241994897, 40.004749064079 ], [ -75.122781512208803, 40.004712347519998 ], [ -75.122443392842399, 40.004671885738702 ], [ -75.122105743799196, 40.004628545024097 ], [ -75.121768426032105, 40.004583194391003 ], [ -75.121431299341197, 40.004536701925197 ], [ -75.121404787824403, 40.004533023296098 ], [ -75.122215299611199, 40.0023865857858 ], [ -75.122549815241499, 40.000849147809099 ], [ -75.122871596442593, 39.999356300566099 ], [ -75.123212436239498, 39.997762091602397 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 32, "disday": "4GFRI", "sandis": "4G", "collday": "FRI", "Shape__Area": 8868100.7421875, "Shape__Length": 15385.624127754305 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.180240764910593, 40.077955009811902 ], [ -75.1784516390574, 40.076938114760999 ], [ -75.176843674752206, 40.075989479805401 ], [ -75.175512776254706, 40.075223162950401 ], [ -75.175170109673601, 40.075025379603602 ], [ -75.174720247170995, 40.074769456707699 ], [ -75.174392515057704, 40.074571712770499 ], [ -75.173943460709594, 40.074319276394498 ], [ -75.173552859732098, 40.074094205862203 ], [ -75.173137647043902, 40.073858641243497 ], [ -75.173685555642905, 40.073291447956997 ], [ -75.173953881000799, 40.073016329312303 ], [ -75.174209392234502, 40.072742943834399 ], [ -75.174450756967403, 40.072498755129502 ], [ -75.174750081698903, 40.072180661213402 ], [ -75.176268953623506, 40.0706308983019 ], [ -75.177015440627201, 40.069869017448703 ], [ -75.177998350242007, 40.068829685857096 ], [ -75.179237431361599, 40.067579368297203 ], [ -75.179307613776203, 40.067491832328301 ], [ -75.178673860804594, 40.067126874105099 ], [ -75.178011353040603, 40.066752845993499 ], [ -75.1776485879559, 40.066555592367202 ], [ -75.177263497603903, 40.066339239082801 ], [ -75.177117085258601, 40.066252849173402 ], [ -75.176955577208602, 40.0661594094314 ], [ -75.176527938105806, 40.065905119808001 ], [ -75.175740946188995, 40.065463355209701 ], [ -75.175330170612099, 40.065225475773403 ], [ -75.174936369516999, 40.065008553351802 ], [ -75.174446175814296, 40.064722915916199 ], [ -75.174167706134895, 40.064556924842798 ], [ -75.174030577632294, 40.064467498003602 ], [ -75.173728106437594, 40.064298735039102 ], [ -75.172909374845602, 40.063830278649597 ], [ -75.172571212715994, 40.063648390706 ], [ -75.172478489177195, 40.063591127510797 ], [ -75.172117597038707, 40.0633792589569 ], [ -75.171835571956095, 40.0632193252899 ], [ -75.171453304047603, 40.062998017984803 ], [ -75.1711791568639, 40.062828600591303 ], [ -75.170789386271593, 40.062609383222899 ], [ -75.170476063148101, 40.062431522499601 ], [ -75.170066544243298, 40.062195280624998 ], [ -75.169799443847893, 40.062043596728998 ], [ -75.169381627446498, 40.061806983069502 ], [ -75.169069996227094, 40.061627653452298 ], [ -75.168644639970793, 40.061382910799601 ], [ -75.168326948118093, 40.061194421990898 ], [ -75.167847444681797, 40.060921804988403 ], [ -75.167489781455103, 40.060715891814397 ], [ -75.166971073687904, 40.060422619812499 ], [ -75.166231526526801, 40.059994732813102 ], [ -75.165955241971005, 40.059831190168303 ], [ -75.165455277617497, 40.059550768322602 ], [ -75.164604596640899, 40.059053321582503 ], [ -75.163176295255099, 40.058242623783002 ], [ -75.162657143611796, 40.057945414639697 ], [ -75.162249333395096, 40.057710192146402 ], [ -75.1621251770448, 40.057648047748998 ], [ -75.161950871993795, 40.057575944557101 ], [ -75.160693084363501, 40.056840971503497 ], [ -75.160641594184199, 40.056788602842097 ], [ -75.1588922605943, 40.055777576865403 ], [ -75.160427820164699, 40.054295668054898 ], [ -75.160450677704702, 40.054249997285801 ], [ -75.160921069317794, 40.053800590773697 ], [ -75.161170717783307, 40.053562919411902 ], [ -75.161389370395099, 40.053351019131199 ], [ -75.161901159585099, 40.0528512775645 ], [ -75.163376344972306, 40.051427382071303 ], [ -75.1668747339438, 40.053586135956103 ], [ -75.167398956807006, 40.0539045520608 ], [ -75.168960705310894, 40.054856015248802 ], [ -75.170186102386197, 40.053662326449398 ], [ -75.172168268201403, 40.051738030267401 ], [ -75.172746747020099, 40.051176413114497 ], [ -75.172783929593095, 40.051149069955699 ], [ -75.173263444417699, 40.050676353020997 ], [ -75.174918840395804, 40.049061623212701 ], [ -75.175550154912102, 40.048447727531702 ], [ -75.176092867342405, 40.047916525744398 ], [ -75.176248815503101, 40.047761392533197 ], [ -75.1766274630738, 40.047407425314503 ], [ -75.176760458891195, 40.047260226959899 ], [ -75.176812344887395, 40.047213287912797 ], [ -75.1770024742532, 40.047029385205498 ], [ -75.177185404808398, 40.046856197060301 ], [ -75.177259554139695, 40.046782708144598 ], [ -75.177383920314995, 40.0466710588911 ], [ -75.177568488393405, 40.046482951896799 ], [ -75.177756951007396, 40.046283437658403 ], [ -75.179608223282997, 40.044497614196402 ], [ -75.180886042705396, 40.043256010550998 ], [ -75.180981003307906, 40.043346462914599 ], [ -75.181176445872197, 40.043618433235999 ], [ -75.181258815065405, 40.043741911341002 ], [ -75.181432715903597, 40.044170720893 ], [ -75.181704381337298, 40.044840461510702 ], [ -75.182206227722901, 40.045903812842297 ], [ -75.182800149581496, 40.047083853588397 ], [ -75.183400395637506, 40.048263404926303 ], [ -75.183761884492895, 40.048924840798698 ], [ -75.183920173758906, 40.0492175188948 ], [ -75.183969436963395, 40.049322977546097 ], [ -75.184205231464304, 40.049783776270203 ], [ -75.184369627323804, 40.050077718094499 ], [ -75.184575193604999, 40.050413006317697 ], [ -75.184695551036398, 40.050650495476297 ], [ -75.185018380996596, 40.051225518307398 ], [ -75.185222788503296, 40.051594458062503 ], [ -75.185290497120505, 40.051752634887499 ], [ -75.185682692607699, 40.052431049376999 ], [ -75.186117738302201, 40.0532553968523 ], [ -75.186518960508906, 40.053975223327697 ], [ -75.186780353523005, 40.054513413171598 ], [ -75.186963672006598, 40.054831637825103 ], [ -75.187308565723697, 40.055493900592303 ], [ -75.188079485029903, 40.0569075778334 ], [ -75.188379866747496, 40.057445755219298 ], [ -75.189426378139302, 40.058426314584501 ], [ -75.190017368930299, 40.058991821666801 ], [ -75.190221789391302, 40.059208235735298 ], [ -75.190875827796901, 40.0599594684222 ], [ -75.191056617998399, 40.060186017038397 ], [ -75.191293390214199, 40.060465505364803 ], [ -75.191879690194895, 40.061266825585797 ], [ -75.192893026003404, 40.062671237271999 ], [ -75.194122390799095, 40.064321553844501 ], [ -75.194155850570695, 40.064385908041601 ], [ -75.194298588945003, 40.064510594011402 ], [ -75.194602752018, 40.064668303813797 ], [ -75.195094841717307, 40.064924127313397 ], [ -75.195729239823706, 40.065186306146003 ], [ -75.196024602842201, 40.065410187897903 ], [ -75.1963884379429, 40.066632235607202 ], [ -75.196261116839693, 40.0666884361952 ], [ -75.196098815649094, 40.0667943018491 ], [ -75.1959353711365, 40.066930549816703 ], [ -75.195706134658494, 40.067132234582303 ], [ -75.195518962248897, 40.0672679545508 ], [ -75.195123630625403, 40.067465946665799 ], [ -75.1948553016978, 40.067654598011899 ], [ -75.194371257884399, 40.0681060494246 ], [ -75.193961369341594, 40.068480085373601 ], [ -75.193749772439404, 40.068633504645 ], [ -75.193512844543704, 40.068828933320297 ], [ -75.193224164387004, 40.069099846735703 ], [ -75.192848133420597, 40.069452730679998 ], [ -75.192493822450203, 40.069821915791998 ], [ -75.192146730751304, 40.0702095077094 ], [ -75.191820612327604, 40.070670545963701 ], [ -75.191619323114296, 40.070970154547098 ], [ -75.191377020128698, 40.071244578405697 ], [ -75.190630734563101, 40.071994209028396 ], [ -75.190328672490594, 40.072236834258398 ], [ -75.189986831297105, 40.072484655280299 ], [ -75.189586635892894, 40.0728102383531 ], [ -75.189209045505294, 40.073172646020701 ], [ -75.189130972173004, 40.073247579051099 ], [ -75.188478740593098, 40.072878761602801 ], [ -75.1831388894377, 40.078108817243702 ], [ -75.183096119477597, 40.078083968214301 ], [ -75.181277562007296, 40.077027386866298 ], [ -75.181031845246494, 40.077281521474397 ], [ -75.180781557734605, 40.077537031066001 ], [ -75.180500529696104, 40.077827568784201 ], [ -75.180285717192803, 40.0780580043958 ], [ -75.180240764910593, 40.077955009811902 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 33, "disday": "4GMON", "sandis": "4G", "collday": "MON", "Shape__Area": 5492882.63671875, "Shape__Length": 11051.510940086464 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.167662615408304, 40.079475529636099 ], [ -75.164090070635993, 40.077361931074499 ], [ -75.163407651758703, 40.076979838082899 ], [ -75.163393685549295, 40.076972104817997 ], [ -75.160429103217595, 40.075330499155797 ], [ -75.159123266968294, 40.074607357240197 ], [ -75.158385445550095, 40.074189946474199 ], [ -75.156629424925796, 40.073192774398102 ], [ -75.155835831606296, 40.0727421064135 ], [ -75.154696740251396, 40.072093673146199 ], [ -75.154077867660504, 40.071741368191603 ], [ -75.154346631289101, 40.071437391771298 ], [ -75.154477453484304, 40.071293521730901 ], [ -75.154852549415196, 40.0708773475314 ], [ -75.155244466252796, 40.070450880397203 ], [ -75.155435470868397, 40.0702476083137 ], [ -75.155603408214901, 40.0700591161836 ], [ -75.156290290287799, 40.069269248158598 ], [ -75.156777897091203, 40.0686844581043 ], [ -75.157120005453294, 40.068268469699703 ], [ -75.157231427496896, 40.068132984452198 ], [ -75.157381654793099, 40.067953196882897 ], [ -75.157452638649602, 40.067875492032002 ], [ -75.157620475194307, 40.067685345156796 ], [ -75.157782597355904, 40.067501670877299 ], [ -75.158295019256997, 40.0669653335097 ], [ -75.158685126719803, 40.066563694434201 ], [ -75.159302641956799, 40.065922260704397 ], [ -75.159523576811793, 40.065693038493997 ], [ -75.159777128058195, 40.065429832374797 ], [ -75.159973798083996, 40.065227849641303 ], [ -75.1602085002678, 40.064990090377599 ], [ -75.160392709939401, 40.064791374332799 ], [ -75.160637691827006, 40.064534580457497 ], [ -75.160691646935604, 40.064477705276303 ], [ -75.161961551487494, 40.063166989468698 ], [ -75.162021556445396, 40.063104304188101 ], [ -75.163169602775099, 40.061920122161801 ], [ -75.164124712975195, 40.060928557843901 ], [ -75.165455277617497, 40.059550768322602 ], [ -75.165955241971005, 40.059831190168303 ], [ -75.166231526526801, 40.059994732813102 ], [ -75.166971073687904, 40.060422619812499 ], [ -75.167489781455103, 40.060715891814397 ], [ -75.167847444681797, 40.060921804988403 ], [ -75.168326948118093, 40.061194421990898 ], [ -75.168644639970793, 40.061382910799601 ], [ -75.169069996227094, 40.061627653452298 ], [ -75.169381627446498, 40.061806983069502 ], [ -75.169799443847893, 40.062043596728998 ], [ -75.170066544243298, 40.062195280624998 ], [ -75.170476063148101, 40.062431522499601 ], [ -75.170789386271593, 40.062609383222899 ], [ -75.1711791568639, 40.062828600591303 ], [ -75.171453304047603, 40.062998017984803 ], [ -75.171835571956095, 40.0632193252899 ], [ -75.172117597038707, 40.0633792589569 ], [ -75.172478489177195, 40.063591127510797 ], [ -75.172571212715994, 40.063648390706 ], [ -75.172909374845602, 40.063830278649597 ], [ -75.173728106437594, 40.064298735039102 ], [ -75.174030577632294, 40.064467498003602 ], [ -75.174167706134895, 40.064556924842798 ], [ -75.174446175814296, 40.064722915916199 ], [ -75.174936369516999, 40.065008553351802 ], [ -75.175330170612099, 40.065225475773403 ], [ -75.175740946188995, 40.065463355209701 ], [ -75.176527938105806, 40.065905119808001 ], [ -75.176955577208602, 40.0661594094314 ], [ -75.177117085258601, 40.066252849173402 ], [ -75.177263497603903, 40.066339239082801 ], [ -75.1776485879559, 40.066555592367202 ], [ -75.178011353040603, 40.066752845993499 ], [ -75.178673860804594, 40.067126874105099 ], [ -75.179307613776203, 40.067491832328301 ], [ -75.179237431361599, 40.067579368297203 ], [ -75.177998350242007, 40.068829685857096 ], [ -75.177015440627201, 40.069869017448703 ], [ -75.176268953623506, 40.0706308983019 ], [ -75.174750081698903, 40.072180661213402 ], [ -75.174450756967403, 40.072498755129502 ], [ -75.174209392234502, 40.072742943834399 ], [ -75.173953881000799, 40.073016329312303 ], [ -75.173685555642905, 40.073291447956997 ], [ -75.173137647043902, 40.073858641243497 ], [ -75.173552859732098, 40.074094205862203 ], [ -75.173943460709594, 40.074319276394498 ], [ -75.174392515057704, 40.074571712770499 ], [ -75.174720247170995, 40.074769456707699 ], [ -75.175170109673601, 40.075025379603602 ], [ -75.175512776254706, 40.075223162950401 ], [ -75.176843674752206, 40.075989479805401 ], [ -75.1784516390574, 40.076938114760999 ], [ -75.180240764910593, 40.077955009811902 ], [ -75.180285717192803, 40.0780580043958 ], [ -75.180500529696104, 40.077827568784201 ], [ -75.180781557734605, 40.077537031066001 ], [ -75.181031845246494, 40.077281521474397 ], [ -75.181277562007296, 40.077027386866298 ], [ -75.183096119477597, 40.078083968214301 ], [ -75.1831388894377, 40.078108817243702 ], [ -75.183137431431106, 40.078110245210603 ], [ -75.182301623708099, 40.078928770960403 ], [ -75.180919883095299, 40.0802947167927 ], [ -75.179345778183503, 40.0818507424923 ], [ -75.177147476351607, 40.084052849942502 ], [ -75.176509797723497, 40.084701194826103 ], [ -75.176440280405203, 40.084660973374703 ], [ -75.176440033648106, 40.084660829995499 ], [ -75.176172643306899, 40.084506120523599 ], [ -75.175873407415693, 40.084332300427299 ], [ -75.175655557991703, 40.084203456177001 ], [ -75.175345467453496, 40.084020056180997 ], [ -75.175134187950505, 40.083895096346403 ], [ -75.174787473661496, 40.083690032196799 ], [ -75.174514605016398, 40.0835286420117 ], [ -75.174159885724606, 40.083318839205802 ], [ -75.173926616163101, 40.083180868320703 ], [ -75.173575532568506, 40.082973212026403 ], [ -75.173306579368202, 40.082814131197203 ], [ -75.172939309170999, 40.082596897174199 ], [ -75.172070903451697, 40.082083238172402 ], [ -75.171714374134496, 40.081872348001802 ], [ -75.169934118127898, 40.080819275946901 ], [ -75.1682686928918, 40.079834075101999 ], [ -75.167662615408304, 40.079475529636099 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 34, "disday": "4GTHU", "sandis": "4G", "collday": "THU", "Shape__Area": 7339388.359375, "Shape__Length": 15144.981015455367 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.151654209579902, 40.052280755579702 ], [ -75.150474503251004, 40.051732434857598 ], [ -75.150556805842996, 40.051660713777601 ], [ -75.150668180815302, 40.051621941987896 ], [ -75.151149984394294, 40.051644750993503 ], [ -75.151737137291306, 40.051682396324303 ], [ -75.151866825521495, 40.051687309798602 ], [ -75.152990832393897, 40.051751542774902 ], [ -75.153811741249797, 40.051785496327199 ], [ -75.154533230908896, 40.0518170636851 ], [ -75.155357687773602, 40.051858033146303 ], [ -75.156181861485294, 40.051888979094997 ], [ -75.156287333396605, 40.051894805860002 ], [ -75.1569652902662, 40.051924072183098 ], [ -75.157777037975407, 40.0519643526317 ], [ -75.157859926617704, 40.050611957828103 ], [ -75.157874065073202, 40.050407113936203 ], [ -75.157920377153602, 40.049678142158399 ], [ -75.157951844495997, 40.049226227292102 ], [ -75.157961570218802, 40.049035050429197 ], [ -75.157986046196996, 40.048674246116803 ], [ -75.158020760818204, 40.048135278148003 ], [ -75.158060600891901, 40.0476020094017 ], [ -75.158069067785505, 40.047470840556898 ], [ -75.1580951306521, 40.047116464724603 ], [ -75.158133874408307, 40.046427780356403 ], [ -75.158167732643307, 40.045920624071897 ], [ -75.158220677462694, 40.045085427055398 ], [ -75.158264513275896, 40.043791342913103 ], [ -75.158288283520307, 40.043350860242199 ], [ -75.158309732862605, 40.042870369680998 ], [ -75.158320255399204, 40.042417645138798 ], [ -75.158343850407206, 40.0420308995431 ], [ -75.158360932388803, 40.041496229685201 ], [ -75.1584063420825, 40.040745560653399 ], [ -75.158454184992905, 40.0385483808681 ], [ -75.1584172567552, 40.037511360189001 ], [ -75.158375910134794, 40.036694147857503 ], [ -75.158366449465504, 40.036355531011601 ], [ -75.158836992098401, 40.035893120649398 ], [ -75.159003649778896, 40.035729341954202 ], [ -75.160415027812704, 40.0343607904341 ], [ -75.160183982681303, 40.034223609199103 ], [ -75.1580733794829, 40.032976635350998 ], [ -75.158001377128301, 40.032947592493201 ], [ -75.157717829237001, 40.033232677848403 ], [ -75.157661519010801, 40.033264430002198 ], [ -75.157642149081695, 40.033215436156098 ], [ -75.157643095669897, 40.032936458881203 ], [ -75.157628125829007, 40.0320458398649 ], [ -75.157625392300005, 40.031785726968899 ], [ -75.157618980362003, 40.031523567725998 ], [ -75.157637376382098, 40.031418229828901 ], [ -75.157677858522803, 40.031326018190299 ], [ -75.157758582916699, 40.0312015682847 ], [ -75.157822778684903, 40.031133567833002 ], [ -75.158125870008703, 40.030834523422101 ], [ -75.157977828498602, 40.030837171383901 ], [ -75.157121362827596, 40.031002432260998 ], [ -75.156511425113194, 40.031120119454499 ], [ -75.154778665769697, 40.031461519932499 ], [ -75.154445243126204, 40.0315299813903 ], [ -75.154229884817198, 40.031554808948599 ], [ -75.154036708919804, 40.0315736492824 ], [ -75.153834828619495, 40.031573436947497 ], [ -75.153697376106095, 40.031565978726597 ], [ -75.153278592607407, 40.031515804664799 ], [ -75.152737727332294, 40.031435628729497 ], [ -75.152372473454804, 40.031396310870697 ], [ -75.152779630195397, 40.030957005361003 ], [ -75.152862360227203, 40.030848183547903 ], [ -75.152946392345697, 40.030726615600599 ], [ -75.153032790527405, 40.030591541691301 ], [ -75.153149688388993, 40.0303669619381 ], [ -75.153242782704297, 40.030115826094203 ], [ -75.153285143564801, 40.029964509281697 ], [ -75.153345548425406, 40.029642434189697 ], [ -75.153389249748798, 40.029467157170799 ], [ -75.153485295401794, 40.028979391577003 ], [ -75.1535922712592, 40.028457653304002 ], [ -75.153702745923894, 40.0279823441819 ], [ -75.153808600539605, 40.027494153209702 ], [ -75.153909019241198, 40.026948869766102 ], [ -75.154066420553704, 40.026207912003898 ], [ -75.154305487317004, 40.026080352736699 ], [ -75.154586778111295, 40.025930272182997 ], [ -75.154868073241602, 40.0257801982738 ], [ -75.155149375015597, 40.025630131962103 ], [ -75.155430682296497, 40.025480072321201 ], [ -75.155712289805706, 40.025330342265903 ], [ -75.155994819536303, 40.025181625299197 ], [ -75.156277770808202, 40.025033375802799 ], [ -75.156560569883794, 40.024884966323498 ], [ -75.156842642917297, 40.024735772113999 ], [ -75.157123418433798, 40.024585167585599 ], [ -75.157404500592406, 40.024434417950097 ], [ -75.157685553750497, 40.024283228204503 ], [ -75.157961732337697, 40.024127471346198 ], [ -75.158228179705901, 40.023963003049701 ], [ -75.158482468742406, 40.023787212427997 ], [ -75.158727015768207, 40.0236024696977 ], [ -75.158964491611101, 40.023412153624697 ], [ -75.159196676370399, 40.023218815544602 ], [ -75.159216230078599, 40.023201387753502 ], [ -75.159316955893402, 40.023419994953997 ], [ -75.159554069688099, 40.023934607040999 ], [ -75.159860080749198, 40.024633766985403 ], [ -75.159900009489704, 40.024942995959798 ], [ -75.159933680973197, 40.0255644865533 ], [ -75.160056180128905, 40.0260323390496 ], [ -75.160247097221202, 40.026309573842603 ], [ -75.160577214358995, 40.026732876889596 ], [ -75.160984834983694, 40.027262635833999 ], [ -75.161428169776698, 40.027773820058897 ], [ -75.162128709824998, 40.028254175902802 ], [ -75.162271155739305, 40.028343351486498 ], [ -75.163272123671206, 40.028969976724497 ], [ -75.163751410985, 40.029264856318797 ], [ -75.164136635983297, 40.029503248760697 ], [ -75.164951792165695, 40.029955017295102 ], [ -75.165493026190404, 40.030251434981203 ], [ -75.166123025675304, 40.030609454560597 ], [ -75.166490894316695, 40.030803490511502 ], [ -75.166657904872494, 40.030899819205104 ], [ -75.167744629218404, 40.0315257286329 ], [ -75.168526652292698, 40.031954796866103 ], [ -75.169213479065306, 40.032323230324202 ], [ -75.169333423532294, 40.032392469783503 ], [ -75.170612863758294, 40.033140746927103 ], [ -75.172062128966402, 40.0339911619944 ], [ -75.172712838256501, 40.034374883820398 ], [ -75.173515839132705, 40.0348404737138 ], [ -75.173726902715103, 40.035022077557599 ], [ -75.173953493365801, 40.0352027065546 ], [ -75.174727098930504, 40.0358300615448 ], [ -75.175210011776002, 40.036241853197502 ], [ -75.175624158722002, 40.036776951702002 ], [ -75.176122390304201, 40.037410423812503 ], [ -75.176145724489501, 40.0374611608989 ], [ -75.176430226558196, 40.037803487375399 ], [ -75.176957638590196, 40.0384317761701 ], [ -75.177630906200093, 40.039238439187699 ], [ -75.177760223020599, 40.039410138430199 ], [ -75.178633170638804, 40.040463101903697 ], [ -75.178714423282202, 40.040566512294603 ], [ -75.179131556852695, 40.041074348700398 ], [ -75.1796338110764, 40.041690609089997 ], [ -75.179983452119103, 40.042102815108699 ], [ -75.180886042705396, 40.043256010550998 ], [ -75.179608223282997, 40.044497614196402 ], [ -75.177756951007396, 40.046283437658403 ], [ -75.177568488393405, 40.046482951896799 ], [ -75.177383920314995, 40.0466710588911 ], [ -75.177259554139695, 40.046782708144598 ], [ -75.177185404808398, 40.046856197060301 ], [ -75.1770024742532, 40.047029385205498 ], [ -75.176812344887395, 40.047213287912797 ], [ -75.176760458891195, 40.047260226959899 ], [ -75.1766274630738, 40.047407425314503 ], [ -75.176248815503101, 40.047761392533197 ], [ -75.176092867342405, 40.047916525744398 ], [ -75.175550154912102, 40.048447727531702 ], [ -75.174918840395804, 40.049061623212701 ], [ -75.173263444417699, 40.050676353020997 ], [ -75.172783929593095, 40.051149069955699 ], [ -75.172746747020099, 40.051176413114497 ], [ -75.172168268201403, 40.051738030267401 ], [ -75.170186102386197, 40.053662326449398 ], [ -75.168960705310894, 40.054856015248802 ], [ -75.167398956807006, 40.0539045520608 ], [ -75.1668747339438, 40.053586135956103 ], [ -75.163376344972306, 40.051427382071303 ], [ -75.161901159585099, 40.0528512775645 ], [ -75.161389370395099, 40.053351019131199 ], [ -75.161170717783307, 40.053562919411902 ], [ -75.160921069317794, 40.053800590773697 ], [ -75.160450677704702, 40.054249997285801 ], [ -75.160427820164699, 40.054295668054898 ], [ -75.1588922605943, 40.055777576865403 ], [ -75.158308667073797, 40.055446350065402 ], [ -75.157872568811996, 40.055208032350301 ], [ -75.157727905999707, 40.055150751635097 ], [ -75.157178030223605, 40.054844415103098 ], [ -75.1564891604677, 40.054529148291003 ], [ -75.155557615546499, 40.0540831813151 ], [ -75.155217458312094, 40.053931674573697 ], [ -75.154385254453999, 40.053554291261499 ], [ -75.153756210664199, 40.053267169727 ], [ -75.153685781353502, 40.053225978449703 ], [ -75.153373311013894, 40.053078486779 ], [ -75.153306128287099, 40.053047844753401 ], [ -75.152895545274404, 40.052860574336997 ], [ -75.151654209579902, 40.052280755579702 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 35, "disday": "4GTUE", "sandis": "4G", "collday": "TUE", "Shape__Area": 5246363.25, "Shape__Length": 9083.5898209909265 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.141874605031106, 40.052086433731397 ], [ -75.142216916403001, 40.050572396795999 ], [ -75.143596702013596, 40.050748219513501 ], [ -75.143844288510707, 40.050780220097003 ], [ -75.144642515909794, 40.050880204853897 ], [ -75.145431220670005, 40.050982811732098 ], [ -75.145918948457904, 40.051048034893903 ], [ -75.146223101982201, 40.0510847318873 ], [ -75.147007242906398, 40.051184535762701 ], [ -75.148579977088204, 40.051392641825899 ], [ -75.149643713568494, 40.051524469859501 ], [ -75.1497761804535, 40.0513795949987 ], [ -75.150144354546796, 40.051587165030703 ], [ -75.150474503251004, 40.051732434857598 ], [ -75.151654209579902, 40.052280755579702 ], [ -75.152895545274404, 40.052860574336997 ], [ -75.153306128287099, 40.053047844753401 ], [ -75.153373311013894, 40.053078486779 ], [ -75.153685781353502, 40.053225978449703 ], [ -75.153756210664199, 40.053267169727 ], [ -75.154385254453999, 40.053554291261499 ], [ -75.155217458312094, 40.053931674573697 ], [ -75.155557615546499, 40.0540831813151 ], [ -75.1564891604677, 40.054529148291003 ], [ -75.157178030223605, 40.054844415103098 ], [ -75.157727905999707, 40.055150751635097 ], [ -75.157872568811996, 40.055208032350301 ], [ -75.158308667073797, 40.055446350065402 ], [ -75.1588922605943, 40.055777576865403 ], [ -75.160641594184199, 40.056788602842097 ], [ -75.160693084363501, 40.056840971503497 ], [ -75.161950871993795, 40.057575944557101 ], [ -75.1621251770448, 40.057648047748998 ], [ -75.162249333395096, 40.057710192146402 ], [ -75.162657143611796, 40.057945414639697 ], [ -75.163176295255099, 40.058242623783002 ], [ -75.164604596640899, 40.059053321582503 ], [ -75.165455277617497, 40.059550768322602 ], [ -75.164124712975195, 40.060928557843901 ], [ -75.163169602775099, 40.061920122161801 ], [ -75.162021556445396, 40.063104304188101 ], [ -75.161961551487494, 40.063166989468698 ], [ -75.160691646935604, 40.064477705276303 ], [ -75.160637691827006, 40.064534580457497 ], [ -75.160392709939401, 40.064791374332799 ], [ -75.1602085002678, 40.064990090377599 ], [ -75.159973798083996, 40.065227849641303 ], [ -75.159777128058195, 40.065429832374797 ], [ -75.159523576811793, 40.065693038493997 ], [ -75.159302641956799, 40.065922260704397 ], [ -75.158685126719803, 40.066563694434201 ], [ -75.158295019256997, 40.0669653335097 ], [ -75.157782597355904, 40.067501670877299 ], [ -75.157620475194307, 40.067685345156796 ], [ -75.157452638649602, 40.067875492032002 ], [ -75.157381654793099, 40.067953196882897 ], [ -75.157231427496896, 40.068132984452198 ], [ -75.157120005453294, 40.068268469699703 ], [ -75.156777897091203, 40.0686844581043 ], [ -75.156290290287799, 40.069269248158598 ], [ -75.155603408214901, 40.0700591161836 ], [ -75.155435470868397, 40.0702476083137 ], [ -75.155244466252796, 40.070450880397203 ], [ -75.154852549415196, 40.0708773475314 ], [ -75.154477453484304, 40.071293521730901 ], [ -75.154346631289101, 40.071437391771298 ], [ -75.154077867660504, 40.071741368191603 ], [ -75.153334833545799, 40.071318371757201 ], [ -75.152758103929301, 40.0709900424851 ], [ -75.152187349379005, 40.070665108740499 ], [ -75.151876126792899, 40.070487925789202 ], [ -75.151591318908203, 40.070325778920797 ], [ -75.150726539375896, 40.069833434956202 ], [ -75.150042482238305, 40.0694439706091 ], [ -75.149607187521795, 40.069196134649999 ], [ -75.148357109079498, 40.068484378431599 ], [ -75.147680470100298, 40.068099109296 ], [ -75.146667522899705, 40.067529593527603 ], [ -75.145502609859307, 40.066860421520097 ], [ -75.145220842978304, 40.0666985595334 ], [ -75.144556349178401, 40.066320168055398 ], [ -75.144053321870302, 40.0660240402784 ], [ -75.143099838176894, 40.0654839915913 ], [ -75.141888800881802, 40.064798041784897 ], [ -75.140775383437102, 40.064160534839701 ], [ -75.139417353468204, 40.063394590806602 ], [ -75.1395541603749, 40.062813157849 ], [ -75.139721662438504, 40.061949223444799 ], [ -75.139875125694203, 40.061260177750199 ], [ -75.140205878465395, 40.059738763949298 ], [ -75.140545913380393, 40.058218608108199 ], [ -75.140720323385395, 40.057359038132503 ], [ -75.140872373231701, 40.056703586258301 ], [ -75.141214459777302, 40.0551483176761 ], [ -75.141445027253397, 40.054217319628101 ], [ -75.141563177286699, 40.053609064011098 ], [ -75.141625714412598, 40.053233132320997 ], [ -75.141874605031106, 40.052086433731397 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 36, "disday": "4GWED", "sandis": "4G", "collday": "WED", "Shape__Area": 6364778.96484375, "Shape__Length": 13970.057117448114 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.151149984394294, 40.051644750993503 ], [ -75.150668180815302, 40.051621941987896 ], [ -75.150556805842996, 40.051660713777601 ], [ -75.150474503251004, 40.051732434857598 ], [ -75.150144354546796, 40.051587165030703 ], [ -75.1497761804535, 40.0513795949987 ], [ -75.149643713568494, 40.051524469859501 ], [ -75.148579977088204, 40.051392641825899 ], [ -75.147007242906398, 40.051184535762701 ], [ -75.146223101982201, 40.0510847318873 ], [ -75.145918948457904, 40.051048034893903 ], [ -75.145431220670005, 40.050982811732098 ], [ -75.144642515909794, 40.050880204853897 ], [ -75.143844288510707, 40.050780220097003 ], [ -75.143596702013596, 40.050748219513501 ], [ -75.142216916403001, 40.050572396795999 ], [ -75.142550335415095, 40.049049744413601 ], [ -75.142899997648797, 40.047503029679703 ], [ -75.143105165825105, 40.046481615537999 ], [ -75.143265291517295, 40.045724877955699 ], [ -75.143549677351103, 40.0444351171408 ], [ -75.143871512690296, 40.042910197802797 ], [ -75.144077920181402, 40.042003084952697 ], [ -75.144196088839706, 40.041483746597201 ], [ -75.144226954744397, 40.041390767815301 ], [ -75.144286792714198, 40.041176978027302 ], [ -75.144445924240401, 40.040523617620302 ], [ -75.144574691481594, 40.039845949870298 ], [ -75.144751910858602, 40.039082022661198 ], [ -75.144915198471594, 40.0383029637999 ], [ -75.145191243915903, 40.036985892718199 ], [ -75.145556007971905, 40.035271185815198 ], [ -75.145900359952194, 40.033737119198101 ], [ -75.146229797737107, 40.032194889219099 ], [ -75.146521627280904, 40.030874774907097 ], [ -75.1465780114208, 40.030646612128301 ], [ -75.146684879898004, 40.030236047986001 ], [ -75.146708041131902, 40.030136199459697 ], [ -75.146829626034105, 40.029612045733401 ], [ -75.146852776793907, 40.029490885140397 ], [ -75.146915294944094, 40.029153247782297 ], [ -75.147221396525694, 40.027653223843998 ], [ -75.147558185557997, 40.026147696615404 ], [ -75.147896826083596, 40.024562913703299 ], [ -75.1482480748207, 40.022968752271503 ], [ -75.148569336705805, 40.021485204564499 ], [ -75.148694010308503, 40.020962392452503 ], [ -75.148740535634403, 40.020720261382898 ], [ -75.148861837881398, 40.020161958210899 ], [ -75.148938000480797, 40.0198381182662 ], [ -75.148938735474999, 40.019834656981999 ], [ -75.148956066379696, 40.019753042414798 ], [ -75.148956406764995, 40.019751438202199 ], [ -75.148995781779803, 40.019581879843997 ], [ -75.149232663894594, 40.0185118648225 ], [ -75.149349276920404, 40.017966917177702 ], [ -75.150305312039805, 40.0175469066684 ], [ -75.151210327719298, 40.017123126213598 ], [ -75.151535179020598, 40.0169847455482 ], [ -75.153248711173006, 40.0161833793928 ], [ -75.153852446565907, 40.015901021071002 ], [ -75.154093423600301, 40.0163344562853 ], [ -75.154124686092999, 40.0163906864639 ], [ -75.154475494936605, 40.0170849344549 ], [ -75.154579265130707, 40.017282071007102 ], [ -75.154790498729398, 40.017658810566701 ], [ -75.155027134630799, 40.018032463822301 ], [ -75.155100570512303, 40.0181440366744 ], [ -75.155385140036501, 40.018580164020698 ], [ -75.155421911987204, 40.018638307704201 ], [ -75.155695661874702, 40.019087501327903 ], [ -75.156097016084004, 40.019704174534702 ], [ -75.156351457668293, 40.0199290897339 ], [ -75.156924093635396, 40.020480203243501 ], [ -75.157039736215097, 40.020593149486999 ], [ -75.157053903472104, 40.020606986443902 ], [ -75.157138487469595, 40.020693723474103 ], [ -75.157186476343497, 40.020742933942003 ], [ -75.157552474541902, 40.021109892913799 ], [ -75.157706206110504, 40.021269224881699 ], [ -75.158024015531495, 40.021549141022398 ], [ -75.1582744459932, 40.021868370469399 ], [ -75.1590378292358, 40.022809979082801 ], [ -75.159140639132701, 40.023037328292098 ], [ -75.159216230078599, 40.023201387753502 ], [ -75.159196676370399, 40.023218815544602 ], [ -75.158964491611101, 40.023412153624697 ], [ -75.158727015768207, 40.0236024696977 ], [ -75.158482468742406, 40.023787212427997 ], [ -75.158228179705901, 40.023963003049701 ], [ -75.157961732337697, 40.024127471346198 ], [ -75.157685553750497, 40.024283228204503 ], [ -75.157404500592406, 40.024434417950097 ], [ -75.157123418433798, 40.024585167585599 ], [ -75.156842642917297, 40.024735772113999 ], [ -75.156560569883794, 40.024884966323498 ], [ -75.156277770808202, 40.025033375802799 ], [ -75.155994819536303, 40.025181625299197 ], [ -75.155712289805706, 40.025330342265903 ], [ -75.155430682296497, 40.025480072321201 ], [ -75.155149375015597, 40.025630131962103 ], [ -75.154868073241602, 40.0257801982738 ], [ -75.154586778111295, 40.025930272182997 ], [ -75.154305487317004, 40.026080352736699 ], [ -75.154066420553704, 40.026207912003898 ], [ -75.153909019241198, 40.026948869766102 ], [ -75.153808600539605, 40.027494153209702 ], [ -75.153702745923894, 40.0279823441819 ], [ -75.1535922712592, 40.028457653304002 ], [ -75.153485295401794, 40.028979391577003 ], [ -75.153389249748798, 40.029467157170799 ], [ -75.153345548425406, 40.029642434189697 ], [ -75.153285143564801, 40.029964509281697 ], [ -75.153242782704297, 40.030115826094203 ], [ -75.153149688388993, 40.0303669619381 ], [ -75.153032790527405, 40.030591541691301 ], [ -75.152946392345697, 40.030726615600599 ], [ -75.152862360227203, 40.030848183547903 ], [ -75.152779630195397, 40.030957005361003 ], [ -75.152372473454804, 40.031396310870697 ], [ -75.152737727332294, 40.031435628729497 ], [ -75.153278592607407, 40.031515804664799 ], [ -75.153697376106095, 40.031565978726597 ], [ -75.153834828619495, 40.031573436947497 ], [ -75.154036708919804, 40.0315736492824 ], [ -75.154229884817198, 40.031554808948599 ], [ -75.154445243126204, 40.0315299813903 ], [ -75.154778665769697, 40.031461519932499 ], [ -75.156511425113194, 40.031120119454499 ], [ -75.157121362827596, 40.031002432260998 ], [ -75.157977828498602, 40.030837171383901 ], [ -75.158125870008703, 40.030834523422101 ], [ -75.157822778684903, 40.031133567833002 ], [ -75.157758582916699, 40.0312015682847 ], [ -75.157677858522803, 40.031326018190299 ], [ -75.157637376382098, 40.031418229828901 ], [ -75.157618980362003, 40.031523567725998 ], [ -75.157625392300005, 40.031785726968899 ], [ -75.157628125829007, 40.0320458398649 ], [ -75.157643095669897, 40.032936458881203 ], [ -75.157642149081695, 40.033215436156098 ], [ -75.157661519010801, 40.033264430002198 ], [ -75.157717829237001, 40.033232677848403 ], [ -75.158001377128301, 40.032947592493201 ], [ -75.1580733794829, 40.032976635350998 ], [ -75.160183982681303, 40.034223609199103 ], [ -75.160415027812704, 40.0343607904341 ], [ -75.159003649778896, 40.035729341954202 ], [ -75.158836992098401, 40.035893120649398 ], [ -75.158366449465504, 40.036355531011601 ], [ -75.158375910134794, 40.036694147857503 ], [ -75.1584172567552, 40.037511360189001 ], [ -75.158454184992905, 40.0385483808681 ], [ -75.1584063420825, 40.040745560653399 ], [ -75.158360932388803, 40.041496229685201 ], [ -75.158343850407206, 40.0420308995431 ], [ -75.158320255399204, 40.042417645138798 ], [ -75.158309732862605, 40.042870369680998 ], [ -75.158288283520307, 40.043350860242199 ], [ -75.158264513275896, 40.043791342913103 ], [ -75.158220677462694, 40.045085427055398 ], [ -75.158167732643307, 40.045920624071897 ], [ -75.158133874408307, 40.046427780356403 ], [ -75.1580951306521, 40.047116464724603 ], [ -75.158069067785505, 40.047470840556898 ], [ -75.158060600891901, 40.0476020094017 ], [ -75.158020760818204, 40.048135278148003 ], [ -75.157986046196996, 40.048674246116803 ], [ -75.157961570218802, 40.049035050429197 ], [ -75.157951844495997, 40.049226227292102 ], [ -75.157920377153602, 40.049678142158399 ], [ -75.157874065073202, 40.050407113936203 ], [ -75.157859926617704, 40.050611957828103 ], [ -75.157777037975407, 40.0519643526317 ], [ -75.1569652902662, 40.051924072183098 ], [ -75.156287333396605, 40.051894805860002 ], [ -75.156181861485294, 40.051888979094997 ], [ -75.155357687773602, 40.051858033146303 ], [ -75.154533230908896, 40.0518170636851 ], [ -75.153811741249797, 40.051785496327199 ], [ -75.152990832393897, 40.051751542774902 ], [ -75.151866825521495, 40.051687309798602 ], [ -75.151737137291306, 40.051682396324303 ], [ -75.151149984394294, 40.051644750993503 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 37, "disday": "4MFRI", "sandis": "4M", "collday": "FRI", "Shape__Area": 31918528.76953125, "Shape__Length": 27768.148859865076 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.200034691163907, 40.0574890201312 ], [ -75.200091361359497, 40.057034144654203 ], [ -75.200102781282098, 40.056730308994602 ], [ -75.200085224219904, 40.056565711700301 ], [ -75.200057703745102, 40.056455629149703 ], [ -75.200023189109899, 40.056321063398499 ], [ -75.199980765530796, 40.056186322995302 ], [ -75.199915533358293, 40.056026749264099 ], [ -75.199842393688598, 40.0558669990697 ], [ -75.199633081383396, 40.0555400184466 ], [ -75.199292297138598, 40.055187948552202 ], [ -75.200110401090797, 40.054418313745103 ], [ -75.200552450468706, 40.054014702726498 ], [ -75.200976290327105, 40.0535907253009 ], [ -75.201302245757404, 40.053824628223602 ], [ -75.2015464026274, 40.054018779957303 ], [ -75.201695954726901, 40.054085008782501 ], [ -75.201934160166402, 40.054126242077402 ], [ -75.202144165005393, 40.054139887002201 ], [ -75.202313943677098, 40.054134664537699 ], [ -75.202526140311406, 40.0540899391304 ], [ -75.2026986160989, 40.054012876888997 ], [ -75.202806820699095, 40.053934389450902 ], [ -75.203139300238703, 40.053645175094303 ], [ -75.203345195187097, 40.053513298825202 ], [ -75.203519769512397, 40.053412466654201 ], [ -75.203764522306997, 40.053217192442403 ], [ -75.205519868531496, 40.051571433979902 ], [ -75.205823150372694, 40.0512923073804 ], [ -75.206091839767097, 40.051091477745302 ], [ -75.2062923922892, 40.0509189502704 ], [ -75.206455371547904, 40.050758644281501 ], [ -75.207561671838306, 40.049670473271 ], [ -75.208137465728399, 40.049105149340399 ], [ -75.208517307572393, 40.048763310169299 ], [ -75.208738990764303, 40.048546052009399 ], [ -75.215463284944406, 40.051270197183101 ], [ -75.2158242719143, 40.0515440675847 ], [ -75.216198456503093, 40.051884771039603 ], [ -75.217027012836695, 40.052413220033301 ], [ -75.217138726324194, 40.0524944139597 ], [ -75.217368582001598, 40.052704182471999 ], [ -75.217556904856096, 40.052928780816899 ], [ -75.217735042462493, 40.053206692475598 ], [ -75.217825094610902, 40.0534291242639 ], [ -75.217895613707597, 40.053625931783898 ], [ -75.217983083358803, 40.053917590467897 ], [ -75.218051356547903, 40.054284407039702 ], [ -75.218180406058295, 40.054674503968101 ], [ -75.218206999223099, 40.054835806219202 ], [ -75.218314665894695, 40.055464878850799 ], [ -75.218352920726801, 40.055648632272003 ], [ -75.218393060435403, 40.055870330339403 ], [ -75.218423447001001, 40.056018609295101 ], [ -75.218449510142506, 40.056157192855402 ], [ -75.218470271047494, 40.056270456896598 ], [ -75.218508152758403, 40.056385299194503 ], [ -75.2185848592909, 40.056547799178503 ], [ -75.218854801586005, 40.057014575588802 ], [ -75.219041050483597, 40.057213091093601 ], [ -75.219125572087293, 40.057291757506498 ], [ -75.219228463489401, 40.057380429503702 ], [ -75.219371652027107, 40.057519191495601 ], [ -75.219535664752399, 40.057644011308703 ], [ -75.2196251373866, 40.057715586508699 ], [ -75.219697997014705, 40.057796392283102 ], [ -75.220016235371304, 40.0578341026755 ], [ -75.220108255295301, 40.057734352386099 ], [ -75.220407401307, 40.057605236327099 ], [ -75.220635130821094, 40.057418005315903 ], [ -75.220967896363305, 40.057176543065601 ], [ -75.221266617086002, 40.057058724795297 ], [ -75.221768250762395, 40.0570245307348 ], [ -75.222473640893398, 40.057051359058697 ], [ -75.223203414061601, 40.056818623561199 ], [ -75.223634048586106, 40.056715008695903 ], [ -75.223928938605098, 40.056686565528999 ], [ -75.224840152143699, 40.056567669903799 ], [ -75.225327515423402, 40.056444582607497 ], [ -75.225784374412001, 40.056290414532299 ], [ -75.227268138730395, 40.055763484419103 ], [ -75.227397376468403, 40.055693341556797 ], [ -75.227979170084595, 40.0553716192493 ], [ -75.228794350843799, 40.054945545153601 ], [ -75.229391268457903, 40.054642393881103 ], [ -75.229822542357297, 40.054423827006602 ], [ -75.231225151749499, 40.053712975491301 ], [ -75.230981393848396, 40.053596672040797 ], [ -75.2304194889077, 40.053383654138401 ], [ -75.229877924517197, 40.053262305190401 ], [ -75.228801354273102, 40.053056232786503 ], [ -75.228134855404605, 40.052889561767699 ], [ -75.227164628533501, 40.0525431058782 ], [ -75.230051315962896, 40.051228848559397 ], [ -75.2306051654909, 40.050971849199101 ], [ -75.233620954588702, 40.049613587303497 ], [ -75.233933434268707, 40.049461654973499 ], [ -75.235422780411497, 40.048784913102203 ], [ -75.234949190669795, 40.047854703872503 ], [ -75.234800511752795, 40.047596016483197 ], [ -75.2343728156428, 40.0471791767064 ], [ -75.232937225046797, 40.045939179147403 ], [ -75.233172659452805, 40.045827075153099 ], [ -75.237060493460106, 40.044087234493503 ], [ -75.236520999786805, 40.043368966090398 ], [ -75.236836340737099, 40.043231590662899 ], [ -75.237078711686806, 40.043097014056499 ], [ -75.237273866977503, 40.042955321553499 ], [ -75.2375205110732, 40.042705285326598 ], [ -75.237662569485195, 40.042501613887303 ], [ -75.238001737530794, 40.041774250160799 ], [ -75.238118499849193, 40.041514185167998 ], [ -75.238531737572501, 40.040610965151402 ], [ -75.238635663112007, 40.040392942216698 ], [ -75.238699840832496, 40.0402494037316 ], [ -75.239063196179401, 40.039746996766603 ], [ -75.239431667367498, 40.0393359394699 ], [ -75.239493400906099, 40.0392617226073 ], [ -75.240149200929295, 40.038550372379603 ], [ -75.243017234419398, 40.0362906125861 ], [ -75.243260125456004, 40.036428631513701 ], [ -75.244219396488404, 40.036924574994401 ], [ -75.245095264769802, 40.037301177012701 ], [ -75.245163460153606, 40.0373304984901 ], [ -75.245473526053004, 40.0375153909416 ], [ -75.245863089388195, 40.037875031834503 ], [ -75.246061103081701, 40.038100123500399 ], [ -75.2463575083693, 40.038484798361303 ], [ -75.246990990050705, 40.039395514962102 ], [ -75.247443936209706, 40.040215760823202 ], [ -75.2475180116909, 40.0403210568807 ], [ -75.247632725809396, 40.040484119445203 ], [ -75.248062125132407, 40.040958632056999 ], [ -75.248332612016696, 40.0412301185291 ], [ -75.248876155886705, 40.041729424901199 ], [ -75.249480388163803, 40.042230164948698 ], [ -75.250363149305599, 40.042913925966701 ], [ -75.251071246220803, 40.043424729699197 ], [ -75.252072342817101, 40.044146875226502 ], [ -75.252385799439907, 40.044355833822699 ], [ -75.253513779695894, 40.045107761633403 ], [ -75.255556562878596, 40.046346870320498 ], [ -75.256356081028798, 40.0468318195189 ], [ -75.258602928031394, 40.048492776265903 ], [ -75.259301170086999, 40.049055027556598 ], [ -75.259967459416899, 40.049649172205903 ], [ -75.261241662695099, 40.050877218959599 ], [ -75.261949796162597, 40.051600133573501 ], [ -75.262576789060404, 40.052240198142201 ], [ -75.262864120748105, 40.052508433111598 ], [ -75.264507698413894, 40.0540427272581 ], [ -75.264403352510101, 40.0541272768778 ], [ -75.264403197871303, 40.054127401471902 ], [ -75.263870578597107, 40.054558966567399 ], [ -75.263645834558204, 40.054765882908598 ], [ -75.263521036677503, 40.0548807811887 ], [ -75.263224789674894, 40.0551535275319 ], [ -75.243459979788895, 40.073343692633799 ], [ -75.243291489019398, 40.0735033452058 ], [ -75.243290570226307, 40.0735042153416 ], [ -75.243068786263507, 40.073714360633097 ], [ -75.2421170703862, 40.0746546402181 ], [ -75.233040201342902, 40.083620708488802 ], [ -75.233002135227096, 40.083658303973998 ], [ -75.231790882527804, 40.084854535382803 ], [ -75.230560998975903, 40.086069110561198 ], [ -75.227754412241296, 40.088840550860603 ], [ -75.223629219226595, 40.092913549181901 ], [ -75.223588075973893, 40.092954167240499 ], [ -75.223569576768895, 40.092943523587998 ], [ -75.220183947887804, 40.090995471342403 ], [ -75.219635592618701, 40.090679934406602 ], [ -75.216795807817604, 40.089045763890098 ], [ -75.216790212882998, 40.089042543868203 ], [ -75.215124546558897, 40.088083956430999 ], [ -75.214350212514304, 40.087638311575503 ], [ -75.214133399471194, 40.087513529365097 ], [ -75.213753767874195, 40.087299992987496 ], [ -75.212833033306197, 40.086764411357002 ], [ -75.211777349440297, 40.086150311494201 ], [ -75.210354678418796, 40.085322699364497 ], [ -75.209973482344196, 40.085177212781801 ], [ -75.209781542089999, 40.085098120641902 ], [ -75.209637999972699, 40.085031070202497 ], [ -75.209483562677804, 40.084951416171798 ], [ -75.209286005138694, 40.084842355264101 ], [ -75.2091574963749, 40.084763463122698 ], [ -75.208912509118207, 40.084583414896201 ], [ -75.208436815806394, 40.084206958701301 ], [ -75.206326069430801, 40.082978927716603 ], [ -75.204883444023807, 40.082152447486699 ], [ -75.204147613885993, 40.0817308751311 ], [ -75.202675607664204, 40.080887695369199 ], [ -75.200937408569303, 40.079891986945 ], [ -75.200454837614103, 40.079615540965001 ], [ -75.198353181867304, 40.0784115369025 ], [ -75.197644473702496, 40.078005511350298 ], [ -75.196436187316905, 40.077313251366903 ], [ -75.195958271214906, 40.077040789519103 ], [ -75.195005195870195, 40.076497425557697 ], [ -75.1908345850199, 40.074123568589698 ], [ -75.189678823091498, 40.073468436054902 ], [ -75.189209045505294, 40.073172646020701 ], [ -75.189586635892894, 40.0728102383531 ], [ -75.189986831297105, 40.072484655280299 ], [ -75.190328672490594, 40.072236834258398 ], [ -75.190630734563101, 40.071994209028396 ], [ -75.191377020128698, 40.071244578405697 ], [ -75.191619323114296, 40.070970154547098 ], [ -75.191820612327604, 40.070670545963701 ], [ -75.192146730751304, 40.0702095077094 ], [ -75.192493822450203, 40.069821915791998 ], [ -75.192848133420597, 40.069452730679998 ], [ -75.193224164387004, 40.069099846735703 ], [ -75.193512844543704, 40.068828933320297 ], [ -75.193749772439404, 40.068633504645 ], [ -75.193961369341594, 40.068480085373601 ], [ -75.194371257884399, 40.0681060494246 ], [ -75.1948553016978, 40.067654598011899 ], [ -75.195123630625403, 40.067465946665799 ], [ -75.195518962248897, 40.0672679545508 ], [ -75.195706134658494, 40.067132234582303 ], [ -75.1959353711365, 40.066930549816703 ], [ -75.196098815649094, 40.0667943018491 ], [ -75.196261116839693, 40.0666884361952 ], [ -75.1963884379429, 40.066632235607202 ], [ -75.196640622444804, 40.0664900895706 ], [ -75.196822627293301, 40.066281270937097 ], [ -75.197051627704397, 40.066085660595 ], [ -75.197736337010696, 40.065559592845901 ], [ -75.197884884781303, 40.065471819798901 ], [ -75.198155467618506, 40.065149258883501 ], [ -75.198482201029606, 40.064669971517702 ], [ -75.198661910948104, 40.064521917770698 ], [ -75.198856522427604, 40.064398521662397 ], [ -75.199249997266904, 40.064249131102898 ], [ -75.199508335445003, 40.064114984138598 ], [ -75.199798991874104, 40.063963309505503 ], [ -75.200035199395302, 40.063786097897697 ], [ -75.200194258230397, 40.063658127323102 ], [ -75.200354833817002, 40.063495183577501 ], [ -75.200361640198693, 40.063485907425601 ], [ -75.200438260500107, 40.063381481264898 ], [ -75.200458188901806, 40.063272451743799 ], [ -75.200455533104602, 40.0631325123042 ], [ -75.200230462554799, 40.062592321235797 ], [ -75.200115118158095, 40.062291754349197 ], [ -75.200030264509195, 40.062022273708003 ], [ -75.199998259755105, 40.0618208643629 ], [ -75.200003285056596, 40.061687177108602 ], [ -75.200047396007406, 40.0615665207999 ], [ -75.2001077806366, 40.061434061200003 ], [ -75.200418438259902, 40.060960494836699 ], [ -75.200940272785104, 40.060132788097 ], [ -75.200988893144199, 40.060030637181299 ], [ -75.201026205929907, 40.059952241682304 ], [ -75.201064460520698, 40.059776719263702 ], [ -75.201038992094198, 40.059611945801201 ], [ -75.201018007156406, 40.059538499118098 ], [ -75.20096424738, 40.059397843098999 ], [ -75.200816586057798, 40.059211697059503 ], [ -75.200556839698905, 40.058962662442099 ], [ -75.200435789518707, 40.0588140131781 ], [ -75.200210877335195, 40.0584806068956 ], [ -75.200145091779405, 40.058386440147999 ], [ -75.200074658362993, 40.058110247982299 ], [ -75.200013535479599, 40.057841293816701 ], [ -75.200034691163907, 40.0574890201312 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 38, "disday": "4MMON", "sandis": "4M", "collday": "MON", "Shape__Area": 14099024.98828125, "Shape__Length": 16052.083264190214 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.193346380733203, 40.032072522115499 ], [ -75.192652671029805, 40.032022245581302 ], [ -75.191861813823394, 40.032091658455798 ], [ -75.190860802684796, 40.031149956122597 ], [ -75.190830036347194, 40.0311273968398 ], [ -75.190791771412506, 40.031114680632101 ], [ -75.190685693783493, 40.031139370433301 ], [ -75.190573497180296, 40.031183221524302 ], [ -75.190433261713807, 40.031259923609099 ], [ -75.190050536481195, 40.0314599736585 ], [ -75.189974087058701, 40.031499771753801 ], [ -75.189839624105801, 40.031545399064797 ], [ -75.189259273721802, 40.031833743795801 ], [ -75.189065999337501, 40.031914258666902 ], [ -75.188667081863599, 40.031585751518698 ], [ -75.187778852320406, 40.030780734121599 ], [ -75.187379658592505, 40.030432036180102 ], [ -75.186196116080495, 40.029478058606102 ], [ -75.185466577037303, 40.028884976588202 ], [ -75.184757777761504, 40.028294786520398 ], [ -75.184235880462893, 40.027865521397601 ], [ -75.184171361790604, 40.027795350138398 ], [ -75.183546409317998, 40.027274639724197 ], [ -75.182934878432704, 40.0267543112952 ], [ -75.182126633353604, 40.0260554952444 ], [ -75.181669818222304, 40.0256663496301 ], [ -75.179846208477002, 40.024095189872703 ], [ -75.1790361770462, 40.023338257631202 ], [ -75.178142919216697, 40.022604491682998 ], [ -75.178131390234796, 40.022594640421403 ], [ -75.176863086469695, 40.021510846436499 ], [ -75.174965418274596, 40.019900978581099 ], [ -75.173249767050095, 40.018420738621799 ], [ -75.172963076886603, 40.018125883756703 ], [ -75.172559540074303, 40.017788941051499 ], [ -75.172465359282299, 40.0177121727314 ], [ -75.172377431527195, 40.017640502066698 ], [ -75.172344469085999, 40.017613632766697 ], [ -75.1722084216469, 40.0175027391982 ], [ -75.170772194737097, 40.016297446539902 ], [ -75.170099023268193, 40.015732494762098 ], [ -75.169910345304899, 40.015259351971103 ], [ -75.169876723940305, 40.015139808746298 ], [ -75.169176654401696, 40.013054584451602 ], [ -75.169116391543199, 40.012889886097497 ], [ -75.169049338792803, 40.012772275197001 ], [ -75.168447731427804, 40.011977856332599 ], [ -75.167815929199506, 40.011143541880799 ], [ -75.167779474749395, 40.011095612514197 ], [ -75.167939518975402, 40.011015209465597 ], [ -75.1682702765507, 40.010849032021802 ], [ -75.168557565934293, 40.010705894654699 ], [ -75.168844704244506, 40.010562568491302 ], [ -75.169131744040399, 40.010419119587297 ], [ -75.169418736813796, 40.010275611270401 ], [ -75.1697057327832, 40.010132109542802 ], [ -75.169992785714896, 40.009988679584502 ], [ -75.170123616587901, 40.0099233947724 ], [ -75.170279947067996, 40.009845385622199 ], [ -75.170567268234294, 40.009702293682501 ], [ -75.1708548006401, 40.009559468891503 ], [ -75.171142596917605, 40.0094169755005 ], [ -75.171430708494697, 40.0092748786345 ], [ -75.171719854322404, 40.0091340549032 ], [ -75.172016563986205, 40.0090026600149 ], [ -75.1723167565452, 40.008876063886603 ], [ -75.172617766194804, 40.008750414284599 ], [ -75.172891586388999, 40.008640910632998 ], [ -75.172921457804904, 40.008628965170402 ], [ -75.173230595369205, 40.008516442195003 ], [ -75.173546961056303, 40.0084156261846 ], [ -75.173864336316996, 40.008316741220703 ], [ -75.174181980785306, 40.008218456107699 ], [ -75.174503132718499, 40.008127574044003 ], [ -75.174827518933995, 40.008043484292102 ], [ -75.175153515929907, 40.007963025703901 ], [ -75.175480568739204, 40.007885230747902 ], [ -75.175810258226505, 40.007814450704103 ], [ -75.176142049754105, 40.0077493373621 ], [ -75.176279565266697, 40.007724970883899 ], [ -75.176475658899406, 40.007690224908799 ], [ -75.176811718540407, 40.007640820755299 ], [ -75.177149494700402, 40.0075978954238 ], [ -75.177488033704805, 40.0075583262484 ], [ -75.177826754367601, 40.007520414409697 ], [ -75.178165975396396, 40.007485150047103 ], [ -75.178189548271703, 40.007482742610101 ], [ -75.1785053182561, 40.0074504947004 ], [ -75.178844328559094, 40.007414060425297 ], [ -75.179182580615105, 40.007373350003903 ], [ -75.179485771076202, 40.007339659937003 ], [ -75.179521306437294, 40.007335711736197 ], [ -75.179861646326799, 40.007307453888501 ], [ -75.180202995605995, 40.007287468181197 ], [ -75.180544544498005, 40.007270251130699 ], [ -75.180886147871107, 40.007253570388301 ], [ -75.181227793737705, 40.007237309454801 ], [ -75.181569471312699, 40.007221350957302 ], [ -75.181911166364699, 40.007205575643603 ], [ -75.182252869206394, 40.007189867967703 ], [ -75.182594566772394, 40.007174108704099 ], [ -75.183100890464303, 40.007150410773697 ], [ -75.187518573236005, 40.006944271670498 ], [ -75.187727785330196, 40.006755420775299 ], [ -75.188103189011997, 40.006434682814799 ], [ -75.188708919284693, 40.006851729539498 ], [ -75.188757563172302, 40.006886426832303 ], [ -75.189796737008507, 40.006837900172698 ], [ -75.190135702177102, 40.006801113706302 ], [ -75.190474580639403, 40.006763912554199 ], [ -75.190812602140994, 40.006722641281598 ], [ -75.191149715281597, 40.006677045568701 ], [ -75.191486423985907, 40.006629545947099 ], [ -75.191601407407305, 40.006613439468403 ], [ -75.191741428978304, 40.006593824562302 ], [ -75.191823191418905, 40.006582371019597 ], [ -75.192160012002105, 40.006535451283902 ], [ -75.192480049545395, 40.006490202887299 ], [ -75.192561570381699, 40.006571501153203 ], [ -75.192619819703097, 40.006622134203297 ], [ -75.192714230190902, 40.006692362289002 ], [ -75.192804663472998, 40.006749919151602 ], [ -75.192961150275906, 40.0068365422471 ], [ -75.193089174072, 40.006898932962798 ], [ -75.193192511910198, 40.006949292246802 ], [ -75.193376019312197, 40.007038720369202 ], [ -75.193852915244804, 40.007276476532603 ], [ -75.193861721446197, 40.007280866780498 ], [ -75.194088705128706, 40.0073889484324 ], [ -75.194242280803294, 40.0074574316248 ], [ -75.194359020489102, 40.007506241996602 ], [ -75.194477343986804, 40.0075524187205 ], [ -75.194597473815193, 40.007595559490198 ], [ -75.194923443267399, 40.007701178099197 ], [ -75.195295626189306, 40.007810963200903 ], [ -75.195671851811795, 40.007914135333998 ], [ -75.196764912583404, 40.0082030543456 ], [ -75.196926856054603, 40.008248889366001 ], [ -75.1970982588781, 40.008297401441702 ], [ -75.197412901978396, 40.0083932860014 ], [ -75.197413137128095, 40.008393357903898 ], [ -75.197506965089801, 40.008424205826003 ], [ -75.197795069687302, 40.0085189271621 ], [ -75.198686586560896, 40.008825263981301 ], [ -75.199054189388605, 40.008945152237402 ], [ -75.199251434770503, 40.009004862553198 ], [ -75.199549623986101, 40.009095130816 ], [ -75.200712696609898, 40.009431917925099 ], [ -75.2010015958233, 40.009519431621897 ], [ -75.201247680982206, 40.009597221070003 ], [ -75.201573657890194, 40.009705057708899 ], [ -75.201898127316696, 40.009816154011801 ], [ -75.202220656663499, 40.0099307670881 ], [ -75.202500899989104, 40.010034196583803 ], [ -75.202897389416506, 40.010187493474 ], [ -75.203288738669201, 40.010347735200199 ], [ -75.203714942888297, 40.010530963679997 ], [ -75.203728604499403, 40.010537136693202 ], [ -75.204136256637597, 40.0107213360602 ], [ -75.204551581122104, 40.010919065896701 ], [ -75.204923031256499, 40.011105386221999 ], [ -75.205251049087494, 40.0112799621877 ], [ -75.205561486137597, 40.011455332388998 ], [ -75.205590520020095, 40.0114726074099 ], [ -75.206000501152005, 40.011716537523803 ], [ -75.206164655343102, 40.011817107114901 ], [ -75.206513219703098, 40.012033735612697 ], [ -75.206718223917093, 40.012164297251601 ], [ -75.207056113400597, 40.012385590816599 ], [ -75.2072745799898, 40.012531817061401 ], [ -75.207558479998795, 40.012721839780298 ], [ -75.207564155765297, 40.012720563501098 ], [ -75.2075919368569, 40.012744284849902 ], [ -75.207594969869305, 40.012746305381498 ], [ -75.207932625755404, 40.012971328417699 ], [ -75.208167892177102, 40.013125190497199 ], [ -75.208395659698397, 40.013270524782698 ], [ -75.208402778065803, 40.013275066626299 ], [ -75.208644772259504, 40.013424397702998 ], [ -75.208785957802803, 40.013506822386297 ], [ -75.208880590594205, 40.013559279158201 ], [ -75.208929813808695, 40.013586564241002 ], [ -75.209149288238194, 40.013702470526901 ], [ -75.209668086613107, 40.013966196841302 ], [ -75.210035531494299, 40.014157708299699 ], [ -75.210308963542801, 40.0142979769156 ], [ -75.210552718844795, 40.014423020228101 ], [ -75.210772114762193, 40.014539007146404 ], [ -75.210952239612297, 40.014638398265902 ], [ -75.211518413077599, 40.014969415863597 ], [ -75.211798609824896, 40.015138967795401 ], [ -75.21203743801, 40.015292456116001 ], [ -75.212169922861193, 40.015383147237699 ], [ -75.212266913512593, 40.015452882141403 ], [ -75.212392583870994, 40.015548459875397 ], [ -75.212483870693504, 40.015622236556602 ], [ -75.212603025882302, 40.01572259313 ], [ -75.212748624823703, 40.015850688244299 ], [ -75.213002544341506, 40.016087558503997 ], [ -75.213274790181401, 40.016357991632901 ], [ -75.213618231914893, 40.016716222430802 ], [ -75.213654067240597, 40.016754682096497 ], [ -75.214032007245194, 40.017160303918097 ], [ -75.214305518878206, 40.017471516376901 ], [ -75.215056812801706, 40.018359599015497 ], [ -75.215331051387295, 40.018669892319998 ], [ -75.2154852401993, 40.0188363270181 ], [ -75.215616933329201, 40.0189730726186 ], [ -75.215752100568096, 40.0191077107064 ], [ -75.215865162330104, 40.019214627186201 ], [ -75.216007665130107, 40.019342771156197 ], [ -75.216185816980101, 40.0194948031832 ], [ -75.216368783421402, 40.019643859729001 ], [ -75.2165553646321, 40.019790595454602 ], [ -75.216845126097894, 40.020010437273598 ], [ -75.217630977468502, 40.020606651156299 ], [ -75.217950671515297, 40.020844081681197 ], [ -75.218241691201399, 40.021054997895497 ], [ -75.218470694069197, 40.021216556294299 ], [ -75.218669124267805, 40.0213529088062 ], [ -75.218903434708096, 40.021509083600598 ], [ -75.219066689261993, 40.021614009004601 ], [ -75.218308255862098, 40.0222060320678 ], [ -75.218026579518707, 40.022425901165001 ], [ -75.217668501669493, 40.022660232531898 ], [ -75.217574654572005, 40.022721647340703 ], [ -75.217080047217607, 40.022994092107503 ], [ -75.216243951198507, 40.023428506509603 ], [ -75.215993306708398, 40.023551874709803 ], [ -75.2153502141296, 40.023912178970001 ], [ -75.2159827273356, 40.024378984394303 ], [ -75.216708035800195, 40.024952056209997 ], [ -75.217552919238997, 40.024940474926098 ], [ -75.218040398937106, 40.024947397324702 ], [ -75.218198388307599, 40.024981490161302 ], [ -75.2183256861736, 40.025037863608098 ], [ -75.218865393220696, 40.0255127318988 ], [ -75.218932162263698, 40.025590727964101 ], [ -75.218995526329294, 40.025626560626897 ], [ -75.219075662497502, 40.025613021496703 ], [ -75.219126952077701, 40.0255766180682 ], [ -75.219702446814793, 40.026149615576898 ], [ -75.219391237343004, 40.026332584089097 ], [ -75.218843715604706, 40.026609144354502 ], [ -75.218227210527004, 40.026905955765599 ], [ -75.217577777042393, 40.027186434388497 ], [ -75.216636185553199, 40.0276108903345 ], [ -75.216634683550794, 40.027611567188302 ], [ -75.215836894197295, 40.027959242374997 ], [ -75.215038685306993, 40.028333992371302 ], [ -75.214191373957306, 40.0287080952182 ], [ -75.213330976511401, 40.0290727920693 ], [ -75.211311421903304, 40.0299798899403 ], [ -75.209452902389799, 40.030820499947602 ], [ -75.208798725468498, 40.031092200309601 ], [ -75.208533026869503, 40.031215340754102 ], [ -75.208479980881293, 40.031239190399099 ], [ -75.208294153642598, 40.031322683265401 ], [ -75.207899392753404, 40.031500049789599 ], [ -75.207861134512797, 40.031517422111598 ], [ -75.207717718259801, 40.031582282169701 ], [ -75.207045054403196, 40.031868687837701 ], [ -75.206506180647906, 40.032113000818001 ], [ -75.205571453969796, 40.032523948356697 ], [ -75.204816222416397, 40.031522372566798 ], [ -75.204568468314307, 40.031183853492998 ], [ -75.204463204476895, 40.031040023502797 ], [ -75.204296277356505, 40.030811940731702 ], [ -75.204064878721297, 40.030495231332701 ], [ -75.2040629756562, 40.030493159188097 ], [ -75.2040622531579, 40.030492172792499 ], [ -75.203851110232094, 40.030203667309003 ], [ -75.203408967990995, 40.029570558038799 ], [ -75.202529556949003, 40.029962329080298 ], [ -75.201784978095304, 40.030280873087399 ], [ -75.201499509429794, 40.030474149698598 ], [ -75.199837050188293, 40.032157087915202 ], [ -75.199665695980102, 40.032330547314899 ], [ -75.199253525823295, 40.032741207651497 ], [ -75.199040031742399, 40.032968878910502 ], [ -75.198680330431998, 40.033111414355098 ], [ -75.197920858803798, 40.033252328409702 ], [ -75.197575052226, 40.033266907711798 ], [ -75.197268238149107, 40.0332921501534 ], [ -75.197177880329207, 40.033339614141902 ], [ -75.197124768361604, 40.033385066881202 ], [ -75.197024658031197, 40.033315474475501 ], [ -75.1969414049167, 40.0332751185625 ], [ -75.196736063801396, 40.033202428026698 ], [ -75.196484746760007, 40.033122791737597 ], [ -75.196094746367606, 40.032991615129603 ], [ -75.195243498868507, 40.032694565636703 ], [ -75.194132526381495, 40.032289192135003 ], [ -75.1940742239386, 40.032273123594202 ], [ -75.193346380733203, 40.032072522115499 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 39, "disday": "4MTHU", "sandis": "4M", "collday": "THU", "Shape__Area": 12241082.265625, "Shape__Length": 18110.057530972736 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.218854801586005, 40.057014575588802 ], [ -75.2185848592909, 40.056547799178503 ], [ -75.218508152758403, 40.056385299194503 ], [ -75.218470271047494, 40.056270456896598 ], [ -75.218449510142506, 40.056157192855402 ], [ -75.218423447001001, 40.056018609295101 ], [ -75.218393060435403, 40.055870330339403 ], [ -75.218352920726801, 40.055648632272003 ], [ -75.218314665894695, 40.055464878850799 ], [ -75.218206999223099, 40.054835806219202 ], [ -75.218180406058295, 40.054674503968101 ], [ -75.218051356547903, 40.054284407039702 ], [ -75.217983083358803, 40.053917590467897 ], [ -75.217895613707597, 40.053625931783898 ], [ -75.217825094610902, 40.0534291242639 ], [ -75.217735042462493, 40.053206692475598 ], [ -75.217556904856096, 40.052928780816899 ], [ -75.217368582001598, 40.052704182471999 ], [ -75.217138726324194, 40.0524944139597 ], [ -75.217027012836695, 40.052413220033301 ], [ -75.216198456503093, 40.051884771039603 ], [ -75.2158242719143, 40.0515440675847 ], [ -75.215463284944406, 40.051270197183101 ], [ -75.215085586161095, 40.050959535790497 ], [ -75.214999033154399, 40.050863149102902 ], [ -75.214944883776496, 40.050776924346003 ], [ -75.214877059542602, 40.050617964761202 ], [ -75.214767136559203, 40.0503793450806 ], [ -75.214614642949599, 40.050073652504302 ], [ -75.214492555737294, 40.049831614164098 ], [ -75.214420639325496, 40.049672564841401 ], [ -75.214269796452399, 40.049322817809198 ], [ -75.214244449884106, 40.049123855806002 ], [ -75.214233010316505, 40.048991334042398 ], [ -75.214173497631094, 40.048829409326103 ], [ -75.213863231457793, 40.048359619942197 ], [ -75.213722184914602, 40.048186446155903 ], [ -75.213619495269498, 40.048083403148397 ], [ -75.213360065085894, 40.0478981680738 ], [ -75.213208125703005, 40.047797186160899 ], [ -75.213023431039204, 40.047695480667599 ], [ -75.212798618025005, 40.047570844073 ], [ -75.212660013142795, 40.047453379308202 ], [ -75.212562253286706, 40.047316832414701 ], [ -75.212527874933798, 40.047249938828898 ], [ -75.2125138513031, 40.047186643835197 ], [ -75.212516557871695, 40.0471142705155 ], [ -75.212541853684399, 40.0469857098158 ], [ -75.212630001421104, 40.046710523098497 ], [ -75.212719701310306, 40.046284205519598 ], [ -75.212846179840199, 40.045713095174698 ], [ -75.212853097124906, 40.045565973377798 ], [ -75.212849849792605, 40.045433633217002 ], [ -75.212833732548006, 40.045316754659602 ], [ -75.212804978403696, 40.045209044863398 ], [ -75.212743377696299, 40.044993534850498 ], [ -75.212701307644807, 40.044803650821201 ], [ -75.212641142910698, 40.0444401581384 ], [ -75.212587496910899, 40.044231121698203 ], [ -75.212502744653605, 40.043977309506097 ], [ -75.212326442817201, 40.0435419678412 ], [ -75.212297572559507, 40.043437404301002 ], [ -75.212265198190707, 40.043317017476099 ], [ -75.212248304845701, 40.043280330393003 ], [ -75.212174507317101, 40.043120059276802 ], [ -75.212026538833896, 40.042950476454799 ], [ -75.211755056241202, 40.042672524750799 ], [ -75.211491414221797, 40.042338905282797 ], [ -75.211319706701303, 40.042032531488204 ], [ -75.211243492172599, 40.041877456391902 ], [ -75.211193512946593, 40.041678835541902 ], [ -75.211131760882196, 40.0414295246036 ], [ -75.211099424809802, 40.041360517719603 ], [ -75.210741166012795, 40.041362093297003 ], [ -75.210720200350394, 40.041305013707102 ], [ -75.210563476098997, 40.040878307067999 ], [ -75.210482550356801, 40.040657970534703 ], [ -75.210162928958198, 40.040268453571002 ], [ -75.210018840647706, 40.039951314932402 ], [ -75.209813469427203, 40.039684195859401 ], [ -75.209559787029903, 40.039318967472198 ], [ -75.209319239857905, 40.0389996952958 ], [ -75.209126364801804, 40.038795641073101 ], [ -75.208870767246296, 40.038481742768298 ], [ -75.208654140612794, 40.038317119783997 ], [ -75.2083783648863, 40.0381454797066 ], [ -75.208079902951795, 40.037984753460798 ], [ -75.207730999082401, 40.037782951479599 ], [ -75.207217414674105, 40.037417673350703 ], [ -75.206976030362796, 40.037121209579396 ], [ -75.206768755957697, 40.0369054166149 ], [ -75.206537358993003, 40.036540674361703 ], [ -75.2064789153346, 40.036316758982203 ], [ -75.206375311328202, 40.036108968785001 ], [ -75.206262149451902, 40.035958048834203 ], [ -75.206140927226997, 40.035824074669698 ], [ -75.206086912888196, 40.035680173254697 ], [ -75.206072776627494, 40.035462946792002 ], [ -75.206018976510407, 40.035313342234197 ], [ -75.205868931230299, 40.035155896151402 ], [ -75.205702763711301, 40.035032342483802 ], [ -75.205469605044996, 40.0349130131941 ], [ -75.205197208170702, 40.034849896090897 ], [ -75.2048648117228, 40.034802573225697 ], [ -75.204297975248195, 40.034670138138203 ], [ -75.204031503196902, 40.034647106278797 ], [ -75.203749335461893, 40.034646559931801 ], [ -75.203510188062097, 40.034686923457897 ], [ -75.203223953463294, 40.034794741993203 ], [ -75.203086543993194, 40.034894442617102 ], [ -75.202924304854804, 40.035062092055803 ], [ -75.202713905603403, 40.035325712945699 ], [ -75.202573282876699, 40.035510965785598 ], [ -75.202388353246604, 40.0356895278669 ], [ -75.202262994933207, 40.035863701431502 ], [ -75.202151836016895, 40.036055316108602 ], [ -75.202033898240103, 40.0362296549566 ], [ -75.201790032644197, 40.036395492113201 ], [ -75.201564861414695, 40.036458995027601 ], [ -75.201350109282401, 40.036442813372403 ], [ -75.201196859126796, 40.036370913987099 ], [ -75.201104255444207, 40.036266110438902 ], [ -75.200961424701106, 40.036114526604898 ], [ -75.200891081320194, 40.036010217791102 ], [ -75.200856552438495, 40.0359409527222 ], [ -75.200852773902398, 40.035843828152302 ], [ -75.200902435862403, 40.035707932862302 ], [ -75.200869192531997, 40.035604447403799 ], [ -75.200777660451493, 40.035471126269002 ], [ -75.200658806699494, 40.035274408633001 ], [ -75.200446065950899, 40.0350071071503 ], [ -75.2002929005791, 40.034735419926598 ], [ -75.200200808760897, 40.034419422789902 ], [ -75.200099369874394, 40.034154591436803 ], [ -75.199987162725506, 40.033781065338701 ], [ -75.200030476055204, 40.033616487474099 ], [ -75.200148282306202, 40.033248068043797 ], [ -75.200208468922796, 40.033029636953103 ], [ -75.200244576365293, 40.0328591911939 ], [ -75.200233593983299, 40.032756199683902 ], [ -75.200170245769797, 40.032663461316503 ], [ -75.199975060044395, 40.032522130277101 ], [ -75.199728366680702, 40.032368238558199 ], [ -75.199665695980102, 40.032330547314899 ], [ -75.199837050188293, 40.032157087915202 ], [ -75.201499509429794, 40.030474149698598 ], [ -75.201784978095304, 40.030280873087399 ], [ -75.202529556949003, 40.029962329080298 ], [ -75.203408967990995, 40.029570558038799 ], [ -75.203851110232094, 40.030203667309003 ], [ -75.2040622531579, 40.030492172792499 ], [ -75.2040629756562, 40.030493159188097 ], [ -75.204064878721297, 40.030495231332701 ], [ -75.204296277356505, 40.030811940731702 ], [ -75.204463204476895, 40.031040023502797 ], [ -75.204568468314307, 40.031183853492998 ], [ -75.204816222416397, 40.031522372566798 ], [ -75.205571453969796, 40.032523948356697 ], [ -75.206506180647906, 40.032113000818001 ], [ -75.207045054403196, 40.031868687837701 ], [ -75.207717718259801, 40.031582282169701 ], [ -75.207861134512797, 40.031517422111598 ], [ -75.207899392753404, 40.031500049789599 ], [ -75.208294153642598, 40.031322683265401 ], [ -75.208479980881293, 40.031239190399099 ], [ -75.208533026869503, 40.031215340754102 ], [ -75.208798725468498, 40.031092200309601 ], [ -75.209452902389799, 40.030820499947602 ], [ -75.211311421903304, 40.0299798899403 ], [ -75.213330976511401, 40.0290727920693 ], [ -75.214191373957306, 40.0287080952182 ], [ -75.215038685306993, 40.028333992371302 ], [ -75.215836894197295, 40.027959242374997 ], [ -75.216634683550794, 40.027611567188302 ], [ -75.216636185553199, 40.0276108903345 ], [ -75.217577777042393, 40.027186434388497 ], [ -75.218227210527004, 40.026905955765599 ], [ -75.218843715604706, 40.026609144354502 ], [ -75.219391237343004, 40.026332584089097 ], [ -75.219702446814793, 40.026149615576898 ], [ -75.219126952077701, 40.0255766180682 ], [ -75.219075662497502, 40.025613021496703 ], [ -75.218995526329294, 40.025626560626897 ], [ -75.218932162263698, 40.025590727964101 ], [ -75.218865393220696, 40.0255127318988 ], [ -75.2183256861736, 40.025037863608098 ], [ -75.218198388307599, 40.024981490161302 ], [ -75.218040398937106, 40.024947397324702 ], [ -75.217552919238997, 40.024940474926098 ], [ -75.216708035800195, 40.024952056209997 ], [ -75.2159827273356, 40.024378984394303 ], [ -75.2153502141296, 40.023912178970001 ], [ -75.215993306708398, 40.023551874709803 ], [ -75.216243951198507, 40.023428506509603 ], [ -75.217080047217607, 40.022994092107503 ], [ -75.217574654572005, 40.022721647340703 ], [ -75.217668501669493, 40.022660232531898 ], [ -75.218026579518707, 40.022425901165001 ], [ -75.218308255862098, 40.0222060320678 ], [ -75.219066689261993, 40.021614009004601 ], [ -75.219081696881105, 40.021623654290302 ], [ -75.219248684810907, 40.021723951288401 ], [ -75.219398291047398, 40.0218068748731 ], [ -75.219505045789603, 40.021861936667896 ], [ -75.219618519271705, 40.021916527422498 ], [ -75.219735682985103, 40.021967070999601 ], [ -75.219812174396495, 40.022000069672401 ], [ -75.219891157092704, 40.022030560744803 ], [ -75.220011227655704, 40.022072958185603 ], [ -75.220133256497405, 40.022112120809801 ], [ -75.2202570134383, 40.022148564317398 ], [ -75.220424247991403, 40.022193643724997 ], [ -75.220593439928095, 40.0222356080018 ], [ -75.221191833825003, 40.022372134435102 ], [ -75.221446778895398, 40.0224326515428 ], [ -75.221577946911594, 40.022457806908797 ], [ -75.221664248079904, 40.022471411000502 ], [ -75.221845763430593, 40.022500023449297 ], [ -75.2219758186354, 40.022526021516001 ], [ -75.222058854425796, 40.022548199390897 ], [ -75.222098905716905, 40.022561238214401 ], [ -75.222175465294598, 40.022592044647098 ], [ -75.222281878608001, 40.022649473998101 ], [ -75.222384700656804, 40.022711515691597 ], [ -75.222484992253797, 40.0227767794211 ], [ -75.222615442939897, 40.0228679969102 ], [ -75.222837305549703, 40.023036056456299 ], [ -75.223305600745107, 40.023407452721699 ], [ -75.223326313390103, 40.023422979423202 ], [ -75.223433541001796, 40.023503363146297 ], [ -75.2235314418255, 40.023573092711104 ], [ -75.223631650673298, 40.023640296113001 ], [ -75.223700363895702, 40.023683312166902 ], [ -75.223805859179393, 40.023745617659102 ], [ -75.223875915611501, 40.023784824905498 ], [ -75.223928325598607, 40.023813623056498 ], [ -75.224661944606495, 40.0242179622918 ], [ -75.226136542514297, 40.025037734058301 ], [ -75.226713949436501, 40.025355469879997 ], [ -75.227440076815498, 40.025747766204098 ], [ -75.228082338793399, 40.0260845627244 ], [ -75.228083201543797, 40.026084999732298 ], [ -75.2295892684471, 40.026836843444798 ], [ -75.231157404491, 40.027547575869399 ], [ -75.231704061791305, 40.027839316653399 ], [ -75.232188482228494, 40.0281323923709 ], [ -75.232403276925595, 40.028262342101598 ], [ -75.232678380776406, 40.028459957139098 ], [ -75.232921144303802, 40.028634339639197 ], [ -75.234182261240605, 40.029738090321203 ], [ -75.234657625060606, 40.030094494718902 ], [ -75.235301439330797, 40.030512015697603 ], [ -75.235750682163498, 40.0307861863933 ], [ -75.236589407261903, 40.0312980451234 ], [ -75.236871953489896, 40.031483088608702 ], [ -75.237366480633696, 40.031806956630902 ], [ -75.238545423876303, 40.032606693873603 ], [ -75.240098775300496, 40.033660363467803 ], [ -75.240402178028503, 40.033907321932098 ], [ -75.240669731008893, 40.034176986957199 ], [ -75.241297263360707, 40.0349660784264 ], [ -75.241521594336405, 40.035219604714499 ], [ -75.241803763087702, 40.035481494278798 ], [ -75.242181952875299, 40.035771987719897 ], [ -75.242689459895402, 40.036104358091997 ], [ -75.243017234419398, 40.0362906125861 ], [ -75.240149200929295, 40.038550372379603 ], [ -75.239493400906099, 40.0392617226073 ], [ -75.239431667367498, 40.0393359394699 ], [ -75.239063196179401, 40.039746996766603 ], [ -75.238699840832496, 40.0402494037316 ], [ -75.238635663112007, 40.040392942216698 ], [ -75.238531737572501, 40.040610965151402 ], [ -75.238118499849193, 40.041514185167998 ], [ -75.238001737530794, 40.041774250160799 ], [ -75.237662569485195, 40.042501613887303 ], [ -75.2375205110732, 40.042705285326598 ], [ -75.237273866977503, 40.042955321553499 ], [ -75.237078711686806, 40.043097014056499 ], [ -75.236836340737099, 40.043231590662899 ], [ -75.236520999786805, 40.043368966090398 ], [ -75.237060493460106, 40.044087234493503 ], [ -75.233172659452805, 40.045827075153099 ], [ -75.232937225046797, 40.045939179147403 ], [ -75.2343728156428, 40.0471791767064 ], [ -75.234800511752795, 40.047596016483197 ], [ -75.234949190669795, 40.047854703872503 ], [ -75.235422780411497, 40.048784913102203 ], [ -75.233933434268707, 40.049461654973499 ], [ -75.233620954588702, 40.049613587303497 ], [ -75.2306051654909, 40.050971849199101 ], [ -75.230051315962896, 40.051228848559397 ], [ -75.227164628533501, 40.0525431058782 ], [ -75.228134855404605, 40.052889561767699 ], [ -75.228801354273102, 40.053056232786503 ], [ -75.229877924517197, 40.053262305190401 ], [ -75.2304194889077, 40.053383654138401 ], [ -75.230981393848396, 40.053596672040797 ], [ -75.231225151749499, 40.053712975491301 ], [ -75.229822542357297, 40.054423827006602 ], [ -75.229391268457903, 40.054642393881103 ], [ -75.228794350843799, 40.054945545153601 ], [ -75.227979170084595, 40.0553716192493 ], [ -75.227397376468403, 40.055693341556797 ], [ -75.227268138730395, 40.055763484419103 ], [ -75.225784374412001, 40.056290414532299 ], [ -75.225327515423402, 40.056444582607497 ], [ -75.224840152143699, 40.056567669903799 ], [ -75.223928938605098, 40.056686565528999 ], [ -75.223634048586106, 40.056715008695903 ], [ -75.223203414061601, 40.056818623561199 ], [ -75.222473640893398, 40.057051359058697 ], [ -75.221768250762395, 40.0570245307348 ], [ -75.221266617086002, 40.057058724795297 ], [ -75.220967896363305, 40.057176543065601 ], [ -75.220635130821094, 40.057418005315903 ], [ -75.220407401307, 40.057605236327099 ], [ -75.220108255295301, 40.057734352386099 ], [ -75.220016235371304, 40.0578341026755 ], [ -75.219697997014705, 40.057796392283102 ], [ -75.2196251373866, 40.057715586508699 ], [ -75.219535664752399, 40.057644011308703 ], [ -75.219371652027107, 40.057519191495601 ], [ -75.219228463489401, 40.057380429503702 ], [ -75.219125572087293, 40.057291757506498 ], [ -75.219041050483597, 40.057213091093601 ], [ -75.218854801586005, 40.057014575588802 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 40, "disday": "4MTUE", "sandis": "4M", "collday": "TUE", "Shape__Area": 5644032.92578125, "Shape__Length": 10326.601944411381 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.154093423600301, 40.0163344562853 ], [ -75.153852446565907, 40.015901021071002 ], [ -75.155188361898496, 40.015304522343499 ], [ -75.156655710824495, 40.014627507048203 ], [ -75.157730429031105, 40.016019802613997 ], [ -75.157855218915003, 40.015978840358798 ], [ -75.158170063720902, 40.015874721672901 ], [ -75.158480782897996, 40.015763813578701 ], [ -75.158774521926404, 40.015629923985202 ], [ -75.159056713249598, 40.0154802359718 ], [ -75.159341823325605, 40.0153342983022 ], [ -75.159628347413701, 40.015190241637399 ], [ -75.159914881513302, 40.015046197124498 ], [ -75.160201424487994, 40.014902163836702 ], [ -75.160487976337905, 40.014758141774003 ], [ -75.160774535960996, 40.014614129109297 ], [ -75.161061103322993, 40.0144701267429 ], [ -75.161347677321899, 40.014326132847799 ], [ -75.161634257957701, 40.014182147424002 ], [ -75.161894323304296, 40.014051493337298 ], [ -75.161920844128304, 40.014038168644603 ], [ -75.161974107803104, 40.014011411619002 ], [ -75.161987293515907, 40.014004787225502 ], [ -75.162207435799601, 40.013894197409599 ], [ -75.1624940330058, 40.013750232819 ], [ -75.162780633439695, 40.0136062739195 ], [ -75.163067237170097, 40.013462318910697 ], [ -75.1633538441626, 40.0133183686929 ], [ -75.1636404544859, 40.0131744214655 ], [ -75.163927065764099, 40.013030478075898 ], [ -75.164213679236795, 40.012886536750102 ], [ -75.164500293767205, 40.012742596561402 ], [ -75.1647869069797, 40.012598658357199 ], [ -75.165073521318703, 40.012454719489803 ], [ -75.165360134408402, 40.012310780806501 ], [ -75.165646745112198, 40.012166841380697 ], [ -75.165933354669505, 40.0120228994383 ], [ -75.166219961875299, 40.011878955853298 ], [ -75.166506565592996, 40.011735009699002 ], [ -75.166793165891093, 40.011591059174997 ], [ -75.167079761598899, 40.011447104254998 ], [ -75.167366352681995, 40.0113031458393 ], [ -75.167652939277602, 40.0111591803268 ], [ -75.167779474749395, 40.011095612514197 ], [ -75.167815929199506, 40.011143541880799 ], [ -75.168447731427804, 40.011977856332599 ], [ -75.169049338792803, 40.012772275197001 ], [ -75.169116391543199, 40.012889886097497 ], [ -75.169176654401696, 40.013054584451602 ], [ -75.169876723940305, 40.015139808746298 ], [ -75.169910345304899, 40.015259351971103 ], [ -75.170099023268193, 40.015732494762098 ], [ -75.170772194737097, 40.016297446539902 ], [ -75.1722084216469, 40.0175027391982 ], [ -75.172344469085999, 40.017613632766697 ], [ -75.172377431527195, 40.017640502066698 ], [ -75.172465359282299, 40.0177121727314 ], [ -75.172559540074303, 40.017788941051499 ], [ -75.172963076886603, 40.018125883756703 ], [ -75.173249767050095, 40.018420738621799 ], [ -75.174965418274596, 40.019900978581099 ], [ -75.176863086469695, 40.021510846436499 ], [ -75.178131390234796, 40.022594640421403 ], [ -75.178142919216697, 40.022604491682998 ], [ -75.1790361770462, 40.023338257631202 ], [ -75.179846208477002, 40.024095189872703 ], [ -75.181669818222304, 40.0256663496301 ], [ -75.182126633353604, 40.0260554952444 ], [ -75.182934878432704, 40.0267543112952 ], [ -75.183546409317998, 40.027274639724197 ], [ -75.182703965965203, 40.028064318296799 ], [ -75.181483154332199, 40.029273401458497 ], [ -75.180885438134794, 40.029849588315301 ], [ -75.180293361098407, 40.030420326609402 ], [ -75.178916444936704, 40.031746149132502 ], [ -75.178809910032697, 40.0318593906904 ], [ -75.178469853980502, 40.032185550820401 ], [ -75.177741725328403, 40.0328996932734 ], [ -75.177577236320403, 40.033055653727203 ], [ -75.176498018843603, 40.034105938406498 ], [ -75.174727098930504, 40.0358300615448 ], [ -75.173953493365801, 40.0352027065546 ], [ -75.173726902715103, 40.035022077557599 ], [ -75.173515839132705, 40.0348404737138 ], [ -75.172712838256501, 40.034374883820398 ], [ -75.172062128966402, 40.0339911619944 ], [ -75.170612863758294, 40.033140746927103 ], [ -75.169333423532294, 40.032392469783503 ], [ -75.169213479065306, 40.032323230324202 ], [ -75.168526652292698, 40.031954796866103 ], [ -75.167744629218404, 40.0315257286329 ], [ -75.166657904872494, 40.030899819205104 ], [ -75.166490894316695, 40.030803490511502 ], [ -75.166123025675304, 40.030609454560597 ], [ -75.165493026190404, 40.030251434981203 ], [ -75.164951792165695, 40.029955017295102 ], [ -75.164136635983297, 40.029503248760697 ], [ -75.163751410985, 40.029264856318797 ], [ -75.163272123671206, 40.028969976724497 ], [ -75.162271155739305, 40.028343351486498 ], [ -75.162128709824998, 40.028254175902802 ], [ -75.161428169776698, 40.027773820058897 ], [ -75.160984834983694, 40.027262635833999 ], [ -75.160577214358995, 40.026732876889596 ], [ -75.160247097221202, 40.026309573842603 ], [ -75.160056180128905, 40.0260323390496 ], [ -75.159933680973197, 40.0255644865533 ], [ -75.159900009489704, 40.024942995959798 ], [ -75.159860080749198, 40.024633766985403 ], [ -75.159554069688099, 40.023934607040999 ], [ -75.159316955893402, 40.023419994953997 ], [ -75.159216230078599, 40.023201387753502 ], [ -75.159140639132701, 40.023037328292098 ], [ -75.1590378292358, 40.022809979082801 ], [ -75.1582744459932, 40.021868370469399 ], [ -75.158024015531495, 40.021549141022398 ], [ -75.157706206110504, 40.021269224881699 ], [ -75.157552474541902, 40.021109892913799 ], [ -75.157186476343497, 40.020742933942003 ], [ -75.157138487469595, 40.020693723474103 ], [ -75.157053903472104, 40.020606986443902 ], [ -75.157039736215097, 40.020593149486999 ], [ -75.156924093635396, 40.020480203243501 ], [ -75.156351457668293, 40.0199290897339 ], [ -75.156097016084004, 40.019704174534702 ], [ -75.155695661874702, 40.019087501327903 ], [ -75.155421911987204, 40.018638307704201 ], [ -75.155385140036501, 40.018580164020698 ], [ -75.155100570512303, 40.0181440366744 ], [ -75.155027134630799, 40.018032463822301 ], [ -75.154790498729398, 40.017658810566701 ], [ -75.154579265130707, 40.017282071007102 ], [ -75.154475494936605, 40.0170849344549 ], [ -75.154124686092999, 40.0163906864639 ], [ -75.154093423600301, 40.0163344562853 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 41, "disday": "4MWED", "sandis": "4M", "collday": "WED", "Shape__Area": 11948325.3359375, "Shape__Length": 17411.574988477561 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.186518960508906, 40.053975223327697 ], [ -75.186117738302201, 40.0532553968523 ], [ -75.185682692607699, 40.052431049376999 ], [ -75.185290497120505, 40.051752634887499 ], [ -75.185222788503296, 40.051594458062503 ], [ -75.185018380996596, 40.051225518307398 ], [ -75.184695551036398, 40.050650495476297 ], [ -75.184575193604999, 40.050413006317697 ], [ -75.184369627323804, 40.050077718094499 ], [ -75.184205231464304, 40.049783776270203 ], [ -75.183969436963395, 40.049322977546097 ], [ -75.183920173758906, 40.0492175188948 ], [ -75.183761884492895, 40.048924840798698 ], [ -75.183400395637506, 40.048263404926303 ], [ -75.182800149581496, 40.047083853588397 ], [ -75.182206227722901, 40.045903812842297 ], [ -75.181704381337298, 40.044840461510702 ], [ -75.181432715903597, 40.044170720893 ], [ -75.181258815065405, 40.043741911341002 ], [ -75.181176445872197, 40.043618433235999 ], [ -75.180981003307906, 40.043346462914599 ], [ -75.180886042705396, 40.043256010550998 ], [ -75.179983452119103, 40.042102815108699 ], [ -75.1796338110764, 40.041690609089997 ], [ -75.179131556852695, 40.041074348700398 ], [ -75.178714423282202, 40.040566512294603 ], [ -75.178633170638804, 40.040463101903697 ], [ -75.177760223020599, 40.039410138430199 ], [ -75.177630906200093, 40.039238439187699 ], [ -75.176957638590196, 40.0384317761701 ], [ -75.176430226558196, 40.037803487375399 ], [ -75.176145724489501, 40.0374611608989 ], [ -75.176122390304201, 40.037410423812503 ], [ -75.175624158722002, 40.036776951702002 ], [ -75.175210011776002, 40.036241853197502 ], [ -75.174727098930504, 40.0358300615448 ], [ -75.176498018843603, 40.034105938406498 ], [ -75.177577236320403, 40.033055653727203 ], [ -75.177741725328403, 40.0328996932734 ], [ -75.178469853980502, 40.032185550820401 ], [ -75.178809910032697, 40.0318593906904 ], [ -75.178916444936704, 40.031746149132502 ], [ -75.180293361098407, 40.030420326609402 ], [ -75.180885438134794, 40.029849588315301 ], [ -75.181483154332199, 40.029273401458497 ], [ -75.182703965965203, 40.028064318296799 ], [ -75.183546409317998, 40.027274639724197 ], [ -75.184171361790604, 40.027795350138398 ], [ -75.184235880462893, 40.027865521397601 ], [ -75.184757777761504, 40.028294786520398 ], [ -75.185466577037303, 40.028884976588202 ], [ -75.186196116080495, 40.029478058606102 ], [ -75.187379658592505, 40.030432036180102 ], [ -75.187778852320406, 40.030780734121599 ], [ -75.188667081863599, 40.031585751518698 ], [ -75.189065999337501, 40.031914258666902 ], [ -75.189259273721802, 40.031833743795801 ], [ -75.189839624105801, 40.031545399064797 ], [ -75.189974087058701, 40.031499771753801 ], [ -75.190050536481195, 40.0314599736585 ], [ -75.190433261713807, 40.031259923609099 ], [ -75.190573497180296, 40.031183221524302 ], [ -75.190685693783493, 40.031139370433301 ], [ -75.190791771412506, 40.031114680632101 ], [ -75.190830036347194, 40.0311273968398 ], [ -75.190860802684796, 40.031149956122597 ], [ -75.191861813823394, 40.032091658455798 ], [ -75.192652671029805, 40.032022245581302 ], [ -75.193346380733203, 40.032072522115499 ], [ -75.1940742239386, 40.032273123594202 ], [ -75.194132526381495, 40.032289192135003 ], [ -75.195243498868507, 40.032694565636703 ], [ -75.196094746367606, 40.032991615129603 ], [ -75.196484746760007, 40.033122791737597 ], [ -75.196736063801396, 40.033202428026698 ], [ -75.1969414049167, 40.0332751185625 ], [ -75.197024658031197, 40.033315474475501 ], [ -75.197124768361604, 40.033385066881202 ], [ -75.197177880329207, 40.033339614141902 ], [ -75.197268238149107, 40.0332921501534 ], [ -75.197575052226, 40.033266907711798 ], [ -75.197920858803798, 40.033252328409702 ], [ -75.198680330431998, 40.033111414355098 ], [ -75.199040031742399, 40.032968878910502 ], [ -75.199253525823295, 40.032741207651497 ], [ -75.199665695980102, 40.032330547314899 ], [ -75.199728366680702, 40.032368238558199 ], [ -75.199975060044395, 40.032522130277101 ], [ -75.200170245769797, 40.032663461316503 ], [ -75.200233593983299, 40.032756199683902 ], [ -75.200244576365293, 40.0328591911939 ], [ -75.200208468922796, 40.033029636953103 ], [ -75.200148282306202, 40.033248068043797 ], [ -75.200030476055204, 40.033616487474099 ], [ -75.199987162725506, 40.033781065338701 ], [ -75.200099369874394, 40.034154591436803 ], [ -75.200200808760897, 40.034419422789902 ], [ -75.2002929005791, 40.034735419926598 ], [ -75.200446065950899, 40.0350071071503 ], [ -75.200658806699494, 40.035274408633001 ], [ -75.200777660451493, 40.035471126269002 ], [ -75.200869192531997, 40.035604447403799 ], [ -75.200902435862403, 40.035707932862302 ], [ -75.200852773902398, 40.035843828152302 ], [ -75.200856552438495, 40.0359409527222 ], [ -75.200891081320194, 40.036010217791102 ], [ -75.200961424701106, 40.036114526604898 ], [ -75.201104255444207, 40.036266110438902 ], [ -75.201196859126796, 40.036370913987099 ], [ -75.201350109282401, 40.036442813372403 ], [ -75.201564861414695, 40.036458995027601 ], [ -75.201790032644197, 40.036395492113201 ], [ -75.202033898240103, 40.0362296549566 ], [ -75.202151836016895, 40.036055316108602 ], [ -75.202262994933207, 40.035863701431502 ], [ -75.202388353246604, 40.0356895278669 ], [ -75.202573282876699, 40.035510965785598 ], [ -75.202713905603403, 40.035325712945699 ], [ -75.202924304854804, 40.035062092055803 ], [ -75.203086543993194, 40.034894442617102 ], [ -75.203223953463294, 40.034794741993203 ], [ -75.203510188062097, 40.034686923457897 ], [ -75.203749335461893, 40.034646559931801 ], [ -75.204031503196902, 40.034647106278797 ], [ -75.204297975248195, 40.034670138138203 ], [ -75.2048648117228, 40.034802573225697 ], [ -75.205197208170702, 40.034849896090897 ], [ -75.205469605044996, 40.0349130131941 ], [ -75.205702763711301, 40.035032342483802 ], [ -75.205868931230299, 40.035155896151402 ], [ -75.206018976510407, 40.035313342234197 ], [ -75.206072776627494, 40.035462946792002 ], [ -75.206086912888196, 40.035680173254697 ], [ -75.206140927226997, 40.035824074669698 ], [ -75.206262149451902, 40.035958048834203 ], [ -75.206375311328202, 40.036108968785001 ], [ -75.2064789153346, 40.036316758982203 ], [ -75.206537358993003, 40.036540674361703 ], [ -75.206768755957697, 40.0369054166149 ], [ -75.206976030362796, 40.037121209579396 ], [ -75.207217414674105, 40.037417673350703 ], [ -75.207730999082401, 40.037782951479599 ], [ -75.208079902951795, 40.037984753460798 ], [ -75.2083783648863, 40.0381454797066 ], [ -75.208654140612794, 40.038317119783997 ], [ -75.208870767246296, 40.038481742768298 ], [ -75.209126364801804, 40.038795641073101 ], [ -75.209319239857905, 40.0389996952958 ], [ -75.209559787029903, 40.039318967472198 ], [ -75.209813469427203, 40.039684195859401 ], [ -75.210018840647706, 40.039951314932402 ], [ -75.210162928958198, 40.040268453571002 ], [ -75.210482550356801, 40.040657970534703 ], [ -75.210563476098997, 40.040878307067999 ], [ -75.210720200350394, 40.041305013707102 ], [ -75.210741166012795, 40.041362093297003 ], [ -75.211099424809802, 40.041360517719603 ], [ -75.211131760882196, 40.0414295246036 ], [ -75.211193512946593, 40.041678835541902 ], [ -75.211243492172599, 40.041877456391902 ], [ -75.211319706701303, 40.042032531488204 ], [ -75.211491414221797, 40.042338905282797 ], [ -75.211755056241202, 40.042672524750799 ], [ -75.212026538833896, 40.042950476454799 ], [ -75.212174507317101, 40.043120059276802 ], [ -75.212248304845701, 40.043280330393003 ], [ -75.212265198190707, 40.043317017476099 ], [ -75.212297572559507, 40.043437404301002 ], [ -75.212326442817201, 40.0435419678412 ], [ -75.212502744653605, 40.043977309506097 ], [ -75.212587496910899, 40.044231121698203 ], [ -75.212641142910698, 40.0444401581384 ], [ -75.212701307644807, 40.044803650821201 ], [ -75.212743377696299, 40.044993534850498 ], [ -75.212804978403696, 40.045209044863398 ], [ -75.212833732548006, 40.045316754659602 ], [ -75.212849849792605, 40.045433633217002 ], [ -75.212853097124906, 40.045565973377798 ], [ -75.212846179840199, 40.045713095174698 ], [ -75.212719701310306, 40.046284205519598 ], [ -75.212630001421104, 40.046710523098497 ], [ -75.212541853684399, 40.0469857098158 ], [ -75.212516557871695, 40.0471142705155 ], [ -75.2125138513031, 40.047186643835197 ], [ -75.212527874933798, 40.047249938828898 ], [ -75.212562253286706, 40.047316832414701 ], [ -75.212660013142795, 40.047453379308202 ], [ -75.212798618025005, 40.047570844073 ], [ -75.213023431039204, 40.047695480667599 ], [ -75.213208125703005, 40.047797186160899 ], [ -75.213360065085894, 40.0478981680738 ], [ -75.213619495269498, 40.048083403148397 ], [ -75.213722184914602, 40.048186446155903 ], [ -75.213863231457793, 40.048359619942197 ], [ -75.214173497631094, 40.048829409326103 ], [ -75.214233010316505, 40.048991334042398 ], [ -75.214244449884106, 40.049123855806002 ], [ -75.214269796452399, 40.049322817809198 ], [ -75.214420639325496, 40.049672564841401 ], [ -75.214492555737294, 40.049831614164098 ], [ -75.214614642949599, 40.050073652504302 ], [ -75.214767136559203, 40.0503793450806 ], [ -75.214877059542602, 40.050617964761202 ], [ -75.214944883776496, 40.050776924346003 ], [ -75.214999033154399, 40.050863149102902 ], [ -75.215085586161095, 40.050959535790497 ], [ -75.215463284944406, 40.051270197183101 ], [ -75.208738990764303, 40.048546052009399 ], [ -75.208517307572393, 40.048763310169299 ], [ -75.208137465728399, 40.049105149340399 ], [ -75.207561671838306, 40.049670473271 ], [ -75.206455371547904, 40.050758644281501 ], [ -75.2062923922892, 40.0509189502704 ], [ -75.206091839767097, 40.051091477745302 ], [ -75.205823150372694, 40.0512923073804 ], [ -75.205519868531496, 40.051571433979902 ], [ -75.203764522306997, 40.053217192442403 ], [ -75.203519769512397, 40.053412466654201 ], [ -75.203345195187097, 40.053513298825202 ], [ -75.203139300238703, 40.053645175094303 ], [ -75.202806820699095, 40.053934389450902 ], [ -75.2026986160989, 40.054012876888997 ], [ -75.202526140311406, 40.0540899391304 ], [ -75.202313943677098, 40.054134664537699 ], [ -75.202144165005393, 40.054139887002201 ], [ -75.201934160166402, 40.054126242077402 ], [ -75.201695954726901, 40.054085008782501 ], [ -75.2015464026274, 40.054018779957303 ], [ -75.201302245757404, 40.053824628223602 ], [ -75.200976290327105, 40.0535907253009 ], [ -75.200552450468706, 40.054014702726498 ], [ -75.200110401090797, 40.054418313745103 ], [ -75.199292297138598, 40.055187948552202 ], [ -75.199633081383396, 40.0555400184466 ], [ -75.199842393688598, 40.0558669990697 ], [ -75.199915533358293, 40.056026749264099 ], [ -75.199980765530796, 40.056186322995302 ], [ -75.200023189109899, 40.056321063398499 ], [ -75.200057703745102, 40.056455629149703 ], [ -75.200085224219904, 40.056565711700301 ], [ -75.200102781282098, 40.056730308994602 ], [ -75.200091361359497, 40.057034144654203 ], [ -75.200034691163907, 40.0574890201312 ], [ -75.200013535479599, 40.057841293816701 ], [ -75.200074658362993, 40.058110247982299 ], [ -75.200145091779405, 40.058386440147999 ], [ -75.200210877335195, 40.0584806068956 ], [ -75.200435789518707, 40.0588140131781 ], [ -75.200556839698905, 40.058962662442099 ], [ -75.200816586057798, 40.059211697059503 ], [ -75.20096424738, 40.059397843098999 ], [ -75.201018007156406, 40.059538499118098 ], [ -75.201038992094198, 40.059611945801201 ], [ -75.201064460520698, 40.059776719263702 ], [ -75.201026205929907, 40.059952241682304 ], [ -75.200988893144199, 40.060030637181299 ], [ -75.200940272785104, 40.060132788097 ], [ -75.200418438259902, 40.060960494836699 ], [ -75.2001077806366, 40.061434061200003 ], [ -75.200047396007406, 40.0615665207999 ], [ -75.200003285056596, 40.061687177108602 ], [ -75.199998259755105, 40.0618208643629 ], [ -75.200030264509195, 40.062022273708003 ], [ -75.200115118158095, 40.062291754349197 ], [ -75.200230462554799, 40.062592321235797 ], [ -75.200455533104602, 40.0631325123042 ], [ -75.200458188901806, 40.063272451743799 ], [ -75.200438260500107, 40.063381481264898 ], [ -75.200361640198693, 40.063485907425601 ], [ -75.200354833817002, 40.063495183577501 ], [ -75.200194258230397, 40.063658127323102 ], [ -75.200035199395302, 40.063786097897697 ], [ -75.199798991874104, 40.063963309505503 ], [ -75.199508335445003, 40.064114984138598 ], [ -75.199249997266904, 40.064249131102898 ], [ -75.198856522427604, 40.064398521662397 ], [ -75.198661910948104, 40.064521917770698 ], [ -75.198482201029606, 40.064669971517702 ], [ -75.198155467618506, 40.065149258883501 ], [ -75.197884884781303, 40.065471819798901 ], [ -75.197736337010696, 40.065559592845901 ], [ -75.197051627704397, 40.066085660595 ], [ -75.196822627293301, 40.066281270937097 ], [ -75.196640622444804, 40.0664900895706 ], [ -75.1963884379429, 40.066632235607202 ], [ -75.196024602842201, 40.065410187897903 ], [ -75.195729239823706, 40.065186306146003 ], [ -75.195094841717307, 40.064924127313397 ], [ -75.194602752018, 40.064668303813797 ], [ -75.194298588945003, 40.064510594011402 ], [ -75.194155850570695, 40.064385908041601 ], [ -75.194122390799095, 40.064321553844501 ], [ -75.192893026003404, 40.062671237271999 ], [ -75.191879690194895, 40.061266825585797 ], [ -75.191293390214199, 40.060465505364803 ], [ -75.191056617998399, 40.060186017038397 ], [ -75.190875827796901, 40.0599594684222 ], [ -75.190221789391302, 40.059208235735298 ], [ -75.190017368930299, 40.058991821666801 ], [ -75.189426378139302, 40.058426314584501 ], [ -75.188379866747496, 40.057445755219298 ], [ -75.188079485029903, 40.0569075778334 ], [ -75.187308565723697, 40.055493900592303 ], [ -75.186963672006598, 40.054831637825103 ], [ -75.186780353523005, 40.054513413171598 ], [ -75.186518960508906, 40.053975223327697 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 42, "disday": "5FFRI", "sandis": "5F", "collday": "FRI", "Shape__Area": 21350564.53515625, "Shape__Length": 18902.038741573004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.069788880761493, 40.011552411556501 ], [ -75.069510729085906, 40.010807595720998 ], [ -75.069333515097696, 40.010851442357897 ], [ -75.069007648882007, 40.010932068125904 ], [ -75.068681780686305, 40.011012693841799 ], [ -75.068355912923096, 40.01109331776 ], [ -75.067853077002198, 40.011217723332202 ], [ -75.061024028759107, 40.012849839528997 ], [ -75.053686120238297, 40.004520778994497 ], [ -75.054222741758494, 40.003700909870098 ], [ -75.054357522118707, 40.003514964534098 ], [ -75.055163781686502, 40.002402608890101 ], [ -75.056029058441695, 40.000927532271703 ], [ -75.056936887674595, 39.999421631342798 ], [ -75.057805870251201, 39.997851178333903 ], [ -75.057886489111795, 39.9976993855174 ], [ -75.058115434776795, 39.997268312510698 ], [ -75.0584317482611, 39.996672729150603 ], [ -75.058820846802803, 39.9957273511463 ], [ -75.059398547967305, 39.9941977840666 ], [ -75.060083322410804, 39.992575274241602 ], [ -75.060532475808003, 39.9916790236555 ], [ -75.061114404899101, 39.990563165935903 ], [ -75.062615727245003, 39.988164351886297 ], [ -75.063185644413196, 39.987350462451801 ], [ -75.063948419662793, 39.986366092103701 ], [ -75.064466300283399, 39.985821419928797 ], [ -75.064980402311505, 39.985372106780801 ], [ -75.065775231357406, 39.984788883686498 ], [ -75.0658817723303, 39.984710705763703 ], [ -75.068017183101006, 39.983143721829599 ], [ -75.068089870015598, 39.983090381938602 ], [ -75.068880662604002, 39.982433662245398 ], [ -75.069394092401495, 39.982007271671897 ], [ -75.070139785020899, 39.9814519878041 ], [ -75.071201638750097, 39.980744997774899 ], [ -75.072239048846299, 39.980132876521097 ], [ -75.073233243652695, 39.979567463881502 ], [ -75.074498499530307, 39.978944730394403 ], [ -75.075824458615202, 39.978355213891398 ], [ -75.077230530276395, 39.977831181927797 ], [ -75.078299783174899, 39.977458374520197 ], [ -75.079038407664996, 39.977243542300101 ], [ -75.079261978184206, 39.977178514993497 ], [ -75.081496851305005, 39.976610086667598 ], [ -75.086392842050302, 39.975673891901003 ], [ -75.091365904694698, 39.974816811411699 ], [ -75.098019392058504, 39.982933608848299 ], [ -75.0982190340617, 39.983177123467399 ], [ -75.0983572528352, 39.983345714771502 ], [ -75.098402362862203, 39.983400738061597 ], [ -75.099002446365404, 39.984132673983098 ], [ -75.099029126380699, 39.9842372508122 ], [ -75.099056187983095, 39.984309968631202 ], [ -75.099294310630597, 39.984580465805699 ], [ -75.0995036272612, 39.984826092680201 ], [ -75.099716048614297, 39.985064476229198 ], [ -75.099779803754501, 39.985138978264303 ], [ -75.100069264626796, 39.985462127186203 ], [ -75.100265283454803, 39.9856848880939 ], [ -75.100311695981503, 39.985739930717997 ], [ -75.100554538888204, 39.986010388043397 ], [ -75.100913889307506, 39.986425283015002 ], [ -75.101283693514205, 39.986831113927103 ], [ -75.101603534126497, 39.987196155026197 ], [ -75.101924121136605, 39.987557462266999 ], [ -75.1022797318806, 39.987959454472701 ], [ -75.102624098622798, 39.988357825264202 ], [ -75.103052360378001, 39.9888307044288 ], [ -75.103484864372604, 39.989320461423198 ], [ -75.103905480166304, 39.989805616700501 ], [ -75.104314244720101, 39.990262873228097 ], [ -75.104604763558797, 39.990597705130803 ], [ -75.104895852981301, 39.990930592333399 ], [ -75.106049019704301, 39.992223065097498 ], [ -75.106375809479999, 39.9925865415712 ], [ -75.1063804524169, 39.992591705102498 ], [ -75.1069056782828, 39.993198835522598 ], [ -75.107272631766307, 39.993619441363101 ], [ -75.1075073915339, 39.993886713200602 ], [ -75.107802963935796, 39.994214366842201 ], [ -75.108154917594106, 39.9946134861014 ], [ -75.108489901210902, 39.995000779560897 ], [ -75.108927713662595, 39.995490596655102 ], [ -75.108452099987204, 39.9957385595239 ], [ -75.108350984409796, 39.995793889584597 ], [ -75.107778135695995, 39.996093542387001 ], [ -75.107218674730504, 39.996394847717497 ], [ -75.106622207513098, 39.996691603114002 ], [ -75.107057478347002, 39.997180653420699 ], [ -75.107486460701594, 39.9976678974596 ], [ -75.108726040685198, 39.999041741804497 ], [ -75.108146872359896, 39.999366724672001 ], [ -75.107595651113002, 39.999671654947697 ], [ -75.106445529011594, 40.000331758850002 ], [ -75.105429151937003, 40.000882959773399 ], [ -75.104200709439098, 40.001534988256402 ], [ -75.103182666781606, 40.0021054246468 ], [ -75.103086461643898, 40.002159310211198 ], [ -75.1018130912678, 40.002872518073701 ], [ -75.100500027500502, 40.003588429294801 ], [ -75.099365175138402, 40.004212416819897 ], [ -75.097982011590304, 40.004959280412599 ], [ -75.096869348457602, 40.005570433276901 ], [ -75.096349769128494, 40.005860991276897 ], [ -75.093275735463195, 40.0059703389406 ], [ -75.092886555342304, 40.005982733504297 ], [ -75.091817923845696, 40.006016759935399 ], [ -75.091698997711902, 40.005911773698898 ], [ -75.091632352797902, 40.005593966558699 ], [ -75.091529704392499, 40.005562177948804 ], [ -75.090411928389898, 40.005216024585899 ], [ -75.089921401293097, 40.005055609143902 ], [ -75.0896093160042, 40.005096970343303 ], [ -75.0894861618427, 40.005285708458899 ], [ -75.088679636329005, 40.006521710627901 ], [ -75.0882115655278, 40.006627469693797 ], [ -75.086858335661404, 40.007237229388899 ], [ -75.086306839833298, 40.0074532501514 ], [ -75.085835466031895, 40.007666080945299 ], [ -75.085629705550005, 40.007732997080701 ], [ -75.085215698125594, 40.007908023719096 ], [ -75.084590070625893, 40.0081726460214 ], [ -75.083790372216399, 40.008512332099102 ], [ -75.082144304108695, 40.009196993757399 ], [ -75.080496184809405, 40.009895613176198 ], [ -75.079282079688696, 40.010418195678902 ], [ -75.078506666189995, 40.0107405722691 ], [ -75.078315395674693, 40.010828469195303 ], [ -75.077060695237705, 40.0113416046146 ], [ -75.076228095224394, 40.011685045637599 ], [ -75.075231155711194, 40.012110773039801 ], [ -75.0732975759678, 40.012553068426598 ], [ -75.072632032399298, 40.012698789318002 ], [ -75.071846903286996, 40.012866842621598 ], [ -75.071090769022504, 40.013027177559103 ], [ -75.070431988124497, 40.013176861426203 ], [ -75.069729081899794, 40.013341491525601 ], [ -75.069135004042096, 40.0134812685938 ], [ -75.068505984534795, 40.013628574769001 ], [ -75.0685833343192, 40.013381049814797 ], [ -75.068673160326099, 40.013109454663997 ], [ -75.068870679922995, 40.012760936535898 ], [ -75.069071555704099, 40.012460431997702 ], [ -75.069291401626103, 40.012201016143401 ], [ -75.069788880761493, 40.011552411556501 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 43, "disday": "5FMON", "sandis": "5F", "collday": "MON", "Shape__Area": 4327133.5625, "Shape__Length": 10198.747411564187 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.113485306370507, 40.0059365907764 ], [ -75.109374053533202, 40.005401422532103 ], [ -75.108630196768402, 40.005413894891099 ], [ -75.108039568915601, 40.005440453390101 ], [ -75.107354666039896, 40.005480776246799 ], [ -75.106663324057095, 40.005489224134202 ], [ -75.106028066998604, 40.005507373380603 ], [ -75.105338738743896, 40.005527452367403 ], [ -75.103272788606304, 40.005611089674701 ], [ -75.102484609179598, 40.005643605370302 ], [ -75.101827947501604, 40.005676484213097 ], [ -75.101067093540706, 40.005704490940197 ], [ -75.099051764387497, 40.0057710160509 ], [ -75.097037201421898, 40.005842714454303 ], [ -75.096349769128494, 40.005860991276897 ], [ -75.096869348457602, 40.005570433276901 ], [ -75.097982011590304, 40.004959280412599 ], [ -75.099365175138402, 40.004212416819897 ], [ -75.100500027500502, 40.003588429294801 ], [ -75.1018130912678, 40.002872518073701 ], [ -75.103086461643898, 40.002159310211198 ], [ -75.103182666781606, 40.0021054246468 ], [ -75.104200709439098, 40.001534988256402 ], [ -75.105429151937003, 40.000882959773399 ], [ -75.106445529011594, 40.000331758850002 ], [ -75.107595651113002, 39.999671654947697 ], [ -75.108146872359896, 39.999366724672001 ], [ -75.108726040685198, 39.999041741804497 ], [ -75.107486460701594, 39.9976678974596 ], [ -75.107057478347002, 39.997180653420699 ], [ -75.106622207513098, 39.996691603114002 ], [ -75.107218674730504, 39.996394847717497 ], [ -75.107778135695995, 39.996093542387001 ], [ -75.108350984409796, 39.995793889584597 ], [ -75.108452099987204, 39.9957385595239 ], [ -75.108927713662595, 39.995490596655102 ], [ -75.108489901210902, 39.995000779560897 ], [ -75.108154917594106, 39.9946134861014 ], [ -75.107802963935796, 39.994214366842201 ], [ -75.108662597950399, 39.993750922495799 ], [ -75.109453342767395, 39.993373150347502 ], [ -75.110261502386507, 39.992966340356404 ], [ -75.111114674992507, 39.9925592758051 ], [ -75.111681353490098, 39.992285089041502 ], [ -75.112115025022206, 39.992067545213501 ], [ -75.112776851284096, 39.991756129688603 ], [ -75.114149009911699, 39.991181503802203 ], [ -75.114272110580899, 39.991129225467603 ], [ -75.114844190504598, 39.9908835778906 ], [ -75.1151283910133, 39.990765234913901 ], [ -75.115301842842399, 39.990696156539997 ], [ -75.115715145916496, 39.990532844391197 ], [ -75.115989170537304, 39.990428430893601 ], [ -75.116121910602203, 39.990373636323199 ], [ -75.116672884695404, 39.9901610985983 ], [ -75.117169847038895, 39.989963986609503 ], [ -75.117713306413194, 39.989757020229703 ], [ -75.118355569476094, 39.989515175481202 ], [ -75.118965280774404, 39.989277320469398 ], [ -75.119381753690007, 39.989125820297097 ], [ -75.119592681588998, 39.989041972525499 ], [ -75.119913645671701, 39.988921762017398 ], [ -75.120205111020198, 39.988770844364801 ], [ -75.120812491518393, 39.988440505235801 ], [ -75.121048978856606, 39.9882352474283 ], [ -75.1213497571933, 39.987954498488698 ], [ -75.121440799668505, 39.987868574740801 ], [ -75.121503988257501, 39.987761339837299 ], [ -75.121706675396396, 39.987580980586898 ], [ -75.121910619752398, 39.987751513780402 ], [ -75.122136840914095, 39.987948687356003 ], [ -75.122361227203299, 39.988147178999398 ], [ -75.122583232897497, 39.9883461373717 ], [ -75.122584002708706, 39.988346828062099 ], [ -75.122805386733106, 39.988547476487199 ], [ -75.123025602125495, 39.988748965396297 ], [ -75.123244871735395, 39.988951135909197 ], [ -75.123463414936893, 39.989153828163602 ], [ -75.123681454545704, 39.989356884176097 ], [ -75.123899213447999, 39.989560144160997 ], [ -75.124116912189706, 39.989763448277799 ], [ -75.124334773553599, 39.9899666394383 ], [ -75.124553018121802, 39.990169556898003 ], [ -75.124681178611596, 39.990288134345001 ], [ -75.124434398131001, 39.990422450547896 ], [ -75.124589393571398, 39.990439465441803 ], [ -75.124744063633102, 39.990593586506499 ], [ -75.124506323680194, 39.991700216319003 ], [ -75.124190423151504, 39.993194118673003 ], [ -75.123869293383805, 39.994684897636198 ], [ -75.123559471136801, 39.996184606159602 ], [ -75.123212436239498, 39.997762091602397 ], [ -75.122871596442593, 39.999356300566099 ], [ -75.122549815241499, 40.000849147809099 ], [ -75.122215299611199, 40.0023865857858 ], [ -75.121404787824403, 40.004533023296098 ], [ -75.120529030274795, 40.006852087198602 ], [ -75.119302392700206, 40.0066886976782 ], [ -75.113485306370507, 40.0059365907764 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 44, "disday": "5FTHU", "sandis": "5F", "collday": "THU", "Shape__Area": 5282129.34765625, "Shape__Length": 9858.8354854219942 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.105078272131493, 39.971604096849802 ], [ -75.1059037964677, 39.971294533527001 ], [ -75.111537923130996, 39.977693323564502 ], [ -75.111598926037303, 39.977749882770901 ], [ -75.111649949249795, 39.9778077091147 ], [ -75.111762332341002, 39.977935075805803 ], [ -75.111791012627094, 39.977967580315998 ], [ -75.111976258401199, 39.978188561293599 ], [ -75.112157309804303, 39.978411992746103 ], [ -75.112335997933997, 39.978636805809302 ], [ -75.112514154005595, 39.978861928906703 ], [ -75.112750561360102, 39.979156467792102 ], [ -75.112924145945797, 39.979383325036203 ], [ -75.113010899281804, 39.9794974212192 ], [ -75.113096933040595, 39.9796105709312 ], [ -75.113269355979696, 39.979837994684601 ], [ -75.113441845726797, 39.980065386347498 ], [ -75.1136148368644, 39.980292533348901 ], [ -75.113788760363207, 39.980519225734497 ], [ -75.113964049573198, 39.980745252701603 ], [ -75.114141136677404, 39.980970403417501 ], [ -75.114253304975904, 39.981110166986802 ], [ -75.114320857113796, 39.981194337549397 ], [ -75.114506644031195, 39.981415631908 ], [ -75.114699946283395, 39.981633079914801 ], [ -75.114901695646395, 39.9818456099758 ], [ -75.115111651036599, 39.9820531876776 ], [ -75.115327322847307, 39.9822574912045 ], [ -75.115546505070697, 39.982459771873103 ], [ -75.115766992823097, 39.982661281943301 ], [ -75.115986582520407, 39.982863270117903 ], [ -75.116077248341199, 39.982947339318898 ], [ -75.116205063413602, 39.9830658550067 ], [ -75.116424081224395, 39.983268098565503 ], [ -75.116643580726304, 39.983470035565297 ], [ -75.116863499636594, 39.983671701516599 ], [ -75.117083703362496, 39.983873184333099 ], [ -75.117303025187496, 39.984075302415299 ], [ -75.117522565265105, 39.984277292602101 ], [ -75.117558868266897, 39.9843101208576 ], [ -75.117744284499494, 39.984477791557303 ], [ -75.117970146175495, 39.984675435082799 ], [ -75.118201203316801, 39.984869497644901 ], [ -75.118435958594006, 39.9850610171044 ], [ -75.118672489057801, 39.985251314410299 ], [ -75.1190053391568, 39.985520154473399 ], [ -75.119242136705907, 39.985710199859 ], [ -75.119478143632904, 39.985900852818801 ], [ -75.119714377633699, 39.986091332062202 ], [ -75.119951854099199, 39.986280855336297 ], [ -75.120191593136695, 39.986468639586803 ], [ -75.120435426436998, 39.986653331072603 ], [ -75.120685066857803, 39.986833740905503 ], [ -75.120937534709597, 39.987012041650701 ], [ -75.121189565988004, 39.987190609326497 ], [ -75.121437894279396, 39.987371821726803 ], [ -75.121679256784901, 39.987558054052897 ], [ -75.121706675396396, 39.987580980586898 ], [ -75.121503988257501, 39.987761339837299 ], [ -75.121440799668505, 39.987868574740801 ], [ -75.1213497571933, 39.987954498488698 ], [ -75.121048978856606, 39.9882352474283 ], [ -75.120812491518393, 39.988440505235801 ], [ -75.120205111020198, 39.988770844364801 ], [ -75.119913645671701, 39.988921762017398 ], [ -75.119592681588998, 39.989041972525499 ], [ -75.119381753690007, 39.989125820297097 ], [ -75.118965280774404, 39.989277320469398 ], [ -75.118355569476094, 39.989515175481202 ], [ -75.117713306413194, 39.989757020229703 ], [ -75.117169847038895, 39.989963986609503 ], [ -75.116672884695404, 39.9901610985983 ], [ -75.116121910602203, 39.990373636323199 ], [ -75.115989170537304, 39.990428430893601 ], [ -75.115715145916496, 39.990532844391197 ], [ -75.115301842842399, 39.990696156539997 ], [ -75.1151283910133, 39.990765234913901 ], [ -75.114844190504598, 39.9908835778906 ], [ -75.114272110580899, 39.991129225467603 ], [ -75.114149009911699, 39.991181503802203 ], [ -75.112776851284096, 39.991756129688603 ], [ -75.112115025022206, 39.992067545213501 ], [ -75.111681353490098, 39.992285089041502 ], [ -75.111114674992507, 39.9925592758051 ], [ -75.110261502386507, 39.992966340356404 ], [ -75.109453342767395, 39.993373150347502 ], [ -75.108662597950399, 39.993750922495799 ], [ -75.107802963935796, 39.994214366842201 ], [ -75.1075073915339, 39.993886713200602 ], [ -75.107272631766307, 39.993619441363101 ], [ -75.1069056782828, 39.993198835522598 ], [ -75.1063804524169, 39.992591705102498 ], [ -75.106375809479999, 39.9925865415712 ], [ -75.106049019704301, 39.992223065097498 ], [ -75.104895852981301, 39.990930592333399 ], [ -75.104604763558797, 39.990597705130803 ], [ -75.104314244720101, 39.990262873228097 ], [ -75.103905480166304, 39.989805616700501 ], [ -75.103484864372604, 39.989320461423198 ], [ -75.103052360378001, 39.9888307044288 ], [ -75.102624098622798, 39.988357825264202 ], [ -75.1022797318806, 39.987959454472701 ], [ -75.101924121136605, 39.987557462266999 ], [ -75.101603534126497, 39.987196155026197 ], [ -75.101283693514205, 39.986831113927103 ], [ -75.100913889307506, 39.986425283015002 ], [ -75.100554538888204, 39.986010388043397 ], [ -75.100311695981503, 39.985739930717997 ], [ -75.100265283454803, 39.9856848880939 ], [ -75.100069264626796, 39.985462127186203 ], [ -75.099779803754501, 39.985138978264303 ], [ -75.099716048614297, 39.985064476229198 ], [ -75.0995036272612, 39.984826092680201 ], [ -75.099294310630597, 39.984580465805699 ], [ -75.099056187983095, 39.984309968631202 ], [ -75.099029126380699, 39.9842372508122 ], [ -75.099002446365404, 39.984132673983098 ], [ -75.098402362862203, 39.983400738061597 ], [ -75.0983572528352, 39.983345714771502 ], [ -75.0982190340617, 39.983177123467399 ], [ -75.098019392058504, 39.982933608848299 ], [ -75.091365904694698, 39.974816811411699 ], [ -75.093470884180505, 39.974453958084297 ], [ -75.096075536444204, 39.973941533249999 ], [ -75.099182765342206, 39.973265672154497 ], [ -75.101250631169904, 39.9727528797684 ], [ -75.101354130203404, 39.972727212392101 ], [ -75.103173044108303, 39.972212397626699 ], [ -75.105078272131493, 39.971604096849802 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 45, "disday": "5FTUE", "sandis": "5F", "collday": "TUE", "Shape__Area": 9973490.12890625, "Shape__Length": 13327.01603142414 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.085190208295103, 40.029568873137997 ], [ -75.085377751628599, 40.028564181180599 ], [ -75.085389932486095, 40.028552434049402 ], [ -75.085239526912105, 40.027820660391299 ], [ -75.084933364299204, 40.026386012235101 ], [ -75.084729503830502, 40.0254676408655 ], [ -75.084623050007707, 40.025050966397998 ], [ -75.084458765164399, 40.024159828599402 ], [ -75.084456562821401, 40.023646711792097 ], [ -75.084466431308499, 40.023330397954602 ], [ -75.084427225006706, 40.0226588990216 ], [ -75.084428631156996, 40.022426460132699 ], [ -75.084367680515598, 40.021384577356599 ], [ -75.084349232569295, 40.021175688434496 ], [ -75.084329604925401, 40.020433133826103 ], [ -75.084300157781797, 40.020042386107299 ], [ -75.084120067712405, 40.019058464393197 ], [ -75.084073668775403, 40.018789476802603 ], [ -75.084060978046196, 40.018667796922998 ], [ -75.0839528994467, 40.0178962969187 ], [ -75.083782693694801, 40.016874441239302 ], [ -75.083662347329593, 40.016805972654502 ], [ -75.083854973713898, 40.016582474627498 ], [ -75.084384952684005, 40.016005614580997 ], [ -75.084658959947305, 40.015721715778803 ], [ -75.085521474546994, 40.014796946838601 ], [ -75.085821566277104, 40.014457280927999 ], [ -75.086351613390903, 40.013877139736898 ], [ -75.087579522754098, 40.0125251935116 ], [ -75.087657469441098, 40.012439127262603 ], [ -75.087975098000499, 40.012112371937498 ], [ -75.088733250272995, 40.010932827302199 ], [ -75.089199388546504, 40.010187702159897 ], [ -75.089274207548897, 40.010072340883902 ], [ -75.089528511420596, 40.009680234152803 ], [ -75.089661474387597, 40.009475218828698 ], [ -75.090184486916996, 40.009264694068399 ], [ -75.091518142959899, 40.008520962143898 ], [ -75.092029822251902, 40.008241386208802 ], [ -75.092583562772006, 40.007938654624702 ], [ -75.093595300382901, 40.007385520824002 ], [ -75.094106113905994, 40.007106243966099 ], [ -75.094107023884206, 40.007105746020599 ], [ -75.094852543438904, 40.006687231356402 ], [ -75.096349769128494, 40.005860991276897 ], [ -75.097037201421898, 40.005842714454303 ], [ -75.099051764387497, 40.0057710160509 ], [ -75.101067093540706, 40.005704490940197 ], [ -75.101827947501604, 40.005676484213097 ], [ -75.102484609179598, 40.005643605370302 ], [ -75.103272788606304, 40.005611089674701 ], [ -75.105338738743896, 40.005527452367403 ], [ -75.106028066998604, 40.005507373380603 ], [ -75.106663324057095, 40.005489224134202 ], [ -75.107354666039896, 40.005480776246799 ], [ -75.108039568915601, 40.005440453390101 ], [ -75.108630196768402, 40.005413894891099 ], [ -75.109374053533202, 40.005401422532103 ], [ -75.113485306370507, 40.0059365907764 ], [ -75.119302392700206, 40.0066886976782 ], [ -75.120529030274795, 40.006852087198602 ], [ -75.119251996394297, 40.009857193898902 ], [ -75.117716486909799, 40.012807461554303 ], [ -75.114134249090995, 40.017751020327204 ], [ -75.112992177107003, 40.019160979775201 ], [ -75.112168225282801, 40.020057683221097 ], [ -75.102538457809601, 40.029846620290101 ], [ -75.102159520682505, 40.029757341765801 ], [ -75.101808324923795, 40.0296284308981 ], [ -75.101284047395396, 40.0293706863323 ], [ -75.100593173074301, 40.028916410988003 ], [ -75.098811034711105, 40.027748534360597 ], [ -75.097463676445997, 40.026861157037999 ], [ -75.096736155280198, 40.026570170272898 ], [ -75.096728597617201, 40.026708061179001 ], [ -75.0964079879476, 40.026627063974402 ], [ -75.096041309717094, 40.026576604099297 ], [ -75.095741334571699, 40.026566172468101 ], [ -75.095499789606393, 40.026574584275203 ], [ -75.095239371954705, 40.026600054687997 ], [ -75.0949086964402, 40.026676382753401 ], [ -75.094565649366004, 40.026768313570997 ], [ -75.0941454472391, 40.026962510624003 ], [ -75.093510400407098, 40.027313466133698 ], [ -75.092901004747105, 40.027662350121602 ], [ -75.092164104478101, 40.028059162566798 ], [ -75.091409553479096, 40.0284796078138 ], [ -75.090583140056907, 40.028931772112401 ], [ -75.090348203676996, 40.028901828650298 ], [ -75.089874361968, 40.029151347178001 ], [ -75.089165771488197, 40.029555824069497 ], [ -75.088132806397297, 40.030094509282002 ], [ -75.086724176250499, 40.030883728172299 ], [ -75.086196931062403, 40.031137622484202 ], [ -75.085852479487997, 40.031297304874997 ], [ -75.085383953685593, 40.031500185800702 ], [ -75.085377232533602, 40.031493621678798 ], [ -75.085280573555806, 40.031399234364699 ], [ -75.085266731637702, 40.031390642571402 ], [ -75.085081822574907, 40.031275856880796 ], [ -75.084796667344506, 40.031232808058498 ], [ -75.085042823114094, 40.030317337802302 ], [ -75.085190208295103, 40.029568873137997 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 46, "disday": "5FWED", "sandis": "5F", "collday": "WED", "Shape__Area": 5439101.54296875, "Shape__Length": 13140.5922533017 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.061903233475306, 40.013847632169998 ], [ -75.061404361231396, 40.013281475665799 ], [ -75.061024028759107, 40.012849839528997 ], [ -75.067853077002198, 40.011217723332202 ], [ -75.068355912923096, 40.01109331776 ], [ -75.068681780686305, 40.011012693841799 ], [ -75.069007648882007, 40.010932068125904 ], [ -75.069333515097696, 40.010851442357897 ], [ -75.069510729085906, 40.010807595720998 ], [ -75.069788880761493, 40.011552411556501 ], [ -75.069291401626103, 40.012201016143401 ], [ -75.069071555704099, 40.012460431997702 ], [ -75.068870679922995, 40.012760936535898 ], [ -75.068673160326099, 40.013109454663997 ], [ -75.0685833343192, 40.013381049814797 ], [ -75.068505984534795, 40.013628574769001 ], [ -75.069135004042096, 40.0134812685938 ], [ -75.069729081899794, 40.013341491525601 ], [ -75.070431988124497, 40.013176861426203 ], [ -75.071090769022504, 40.013027177559103 ], [ -75.071846903286996, 40.012866842621598 ], [ -75.072632032399298, 40.012698789318002 ], [ -75.0732975759678, 40.012553068426598 ], [ -75.075231155711194, 40.012110773039801 ], [ -75.076228095224394, 40.011685045637599 ], [ -75.077060695237705, 40.0113416046146 ], [ -75.078315395674693, 40.010828469195303 ], [ -75.078506666189995, 40.0107405722691 ], [ -75.079282079688696, 40.010418195678902 ], [ -75.080496184809405, 40.009895613176198 ], [ -75.082144304108695, 40.009196993757399 ], [ -75.083790372216399, 40.008512332099102 ], [ -75.084590070625893, 40.0081726460214 ], [ -75.085215698125594, 40.007908023719096 ], [ -75.085629705550005, 40.007732997080701 ], [ -75.085835466031895, 40.007666080945299 ], [ -75.086306839833298, 40.0074532501514 ], [ -75.086858335661404, 40.007237229388899 ], [ -75.0882115655278, 40.006627469693797 ], [ -75.088679636329005, 40.006521710627901 ], [ -75.0894861618427, 40.005285708458899 ], [ -75.0896093160042, 40.005096970343303 ], [ -75.089921401293097, 40.005055609143902 ], [ -75.090411928389898, 40.005216024585899 ], [ -75.091529704392499, 40.005562177948804 ], [ -75.091632352797902, 40.005593966558699 ], [ -75.091698997711902, 40.005911773698898 ], [ -75.091817923845696, 40.006016759935399 ], [ -75.092886555342304, 40.005982733504297 ], [ -75.093275735463195, 40.0059703389406 ], [ -75.096349769128494, 40.005860991276897 ], [ -75.094852543438904, 40.006687231356402 ], [ -75.094107023884206, 40.007105746020599 ], [ -75.094106113905994, 40.007106243966099 ], [ -75.093595300382901, 40.007385520824002 ], [ -75.092583562772006, 40.007938654624702 ], [ -75.092029822251902, 40.008241386208802 ], [ -75.091518142959899, 40.008520962143898 ], [ -75.090184486916996, 40.009264694068399 ], [ -75.089661474387597, 40.009475218828698 ], [ -75.089528511420596, 40.009680234152803 ], [ -75.089274207548897, 40.010072340883902 ], [ -75.089199388546504, 40.010187702159897 ], [ -75.088733250272995, 40.010932827302199 ], [ -75.087975098000499, 40.012112371937498 ], [ -75.087657469441098, 40.012439127262603 ], [ -75.087579522754098, 40.0125251935116 ], [ -75.086351613390903, 40.013877139736898 ], [ -75.085821566277104, 40.014457280927999 ], [ -75.085521474546994, 40.014796946838601 ], [ -75.084658959947305, 40.015721715778803 ], [ -75.084384952684005, 40.016005614580997 ], [ -75.083854973713898, 40.016582474627498 ], [ -75.083662347329593, 40.016805972654502 ], [ -75.083782693694801, 40.016874441239302 ], [ -75.0839528994467, 40.0178962969187 ], [ -75.084060978046196, 40.018667796922998 ], [ -75.084073668775403, 40.018789476802603 ], [ -75.084120067712405, 40.019058464393197 ], [ -75.084300157781797, 40.020042386107299 ], [ -75.084329604925401, 40.020433133826103 ], [ -75.084349232569295, 40.021175688434496 ], [ -75.084367680515598, 40.021384577356599 ], [ -75.084428631156996, 40.022426460132699 ], [ -75.084427225006706, 40.0226588990216 ], [ -75.084466431308499, 40.023330397954602 ], [ -75.084456562821401, 40.023646711792097 ], [ -75.084458765164399, 40.024159828599402 ], [ -75.084623050007707, 40.025050966397998 ], [ -75.084729503830502, 40.0254676408655 ], [ -75.084933364299204, 40.026386012235101 ], [ -75.085239526912105, 40.027820660391299 ], [ -75.085389932486095, 40.028552434049402 ], [ -75.085377751628599, 40.028564181180599 ], [ -75.085190208295103, 40.029568873137997 ], [ -75.085042823114094, 40.030317337802302 ], [ -75.084796667344506, 40.031232808058498 ], [ -75.084493662149498, 40.031301491942202 ], [ -75.084200494680204, 40.031447772838398 ], [ -75.084107665119006, 40.0314050776459 ], [ -75.083684927820599, 40.031163262862599 ], [ -75.083362557157997, 40.030978857418802 ], [ -75.082637478004699, 40.030572412885398 ], [ -75.080868684672694, 40.029565130611402 ], [ -75.080789106738607, 40.0295256843076 ], [ -75.080286675568203, 40.0292402544924 ], [ -75.079986935514199, 40.029069508683001 ], [ -75.079695013776202, 40.0289034057949 ], [ -75.079082767232407, 40.028561804233703 ], [ -75.078475683617299, 40.028217261235 ], [ -75.077863966031799, 40.027878963894302 ], [ -75.077216458680695, 40.027500983624499 ], [ -75.076775954446603, 40.027390800561101 ], [ -75.075638968632902, 40.027089904534698 ], [ -75.075490740493606, 40.027080831821401 ], [ -75.075368941655597, 40.027047180454701 ], [ -75.075144042871898, 40.026857751445398 ], [ -75.074946853147694, 40.026700545316402 ], [ -75.073366166094203, 40.025378218243702 ], [ -75.073334874003507, 40.025299046879297 ], [ -75.070199391410199, 40.022733696253198 ], [ -75.069766768678605, 40.022396859587403 ], [ -75.069090165162194, 40.021913666143099 ], [ -75.0686255484665, 40.021523706607901 ], [ -75.068518974562593, 40.021394716866602 ], [ -75.068276470921305, 40.0211186874714 ], [ -75.067909672620701, 40.020701514462601 ], [ -75.067523897856304, 40.020246029596699 ], [ -75.067156382575803, 40.019825615066097 ], [ -75.067011766406694, 40.019679477413298 ], [ -75.066952772826298, 40.019601933727401 ], [ -75.0661179767269, 40.018657386522499 ], [ -75.065116615991997, 40.017521008059802 ], [ -75.064315055877699, 40.016594736341702 ], [ -75.063387753131593, 40.015529108010703 ], [ -75.062917591455999, 40.015011532765499 ], [ -75.062521294898204, 40.0145519744867 ], [ -75.062063080616397, 40.014030785244003 ], [ -75.061903233475306, 40.013847632169998 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 47, "disday": "5LFRI", "sandis": "5L", "collday": "FRI", "Shape__Area": 5453036.95703125, "Shape__Length": 14189.820782787152 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.139495387555101, 40.033565053302397 ], [ -75.139466666539704, 40.0335258944449 ], [ -75.139412475062002, 40.0335346604124 ], [ -75.139073280986096, 40.033570779283103 ], [ -75.138731346071296, 40.033584994084599 ], [ -75.138388918467399, 40.033583192723299 ], [ -75.138046621807703, 40.033575734902897 ], [ -75.137704373660398, 40.033567048170603 ], [ -75.137362409143194, 40.033553278798102 ], [ -75.137021322932299, 40.033529943315102 ], [ -75.136681806200997, 40.033495655462403 ], [ -75.136342964732805, 40.033457629208002 ], [ -75.136004628056597, 40.033417035609801 ], [ -75.135666694501694, 40.033374506676601 ], [ -75.135329042718993, 40.033330667661701 ], [ -75.134991544389493, 40.033286141856003 ], [ -75.134792355159107, 40.033259824183098 ], [ -75.135364150907407, 40.032377150730298 ], [ -75.134166136093, 40.032226495510002 ], [ -75.134496414314299, 40.030676000384602 ], [ -75.134201062111103, 40.030645670492099 ], [ -75.133808222755704, 40.030593125426599 ], [ -75.134148582101801, 40.0290524558256 ], [ -75.135062556450407, 40.029159498070001 ], [ -75.135805648162901, 40.029263353317504 ], [ -75.136140567105599, 40.027750628220197 ], [ -75.136405382275896, 40.026564256581203 ], [ -75.136458063274503, 40.026256463384101 ], [ -75.135811386379203, 40.0261732882147 ], [ -75.136144379688304, 40.024681985372801 ], [ -75.136783587034898, 40.024768281346702 ], [ -75.137428145367906, 40.0248530114524 ], [ -75.138081204105205, 40.024936990575902 ], [ -75.138559697489498, 40.025002016911799 ], [ -75.139029458305799, 40.025053446296901 ], [ -75.139842533524501, 40.025155357094498 ], [ -75.1406407157057, 40.025271755390598 ], [ -75.141422993210597, 40.025366948886699 ], [ -75.142208320098703, 40.025468635035203 ], [ -75.143002935517103, 40.025570672589801 ], [ -75.143784746616902, 40.025671060672003 ], [ -75.144582832143598, 40.025778803624299 ], [ -75.145362420558101, 40.025882494841099 ], [ -75.146689761443596, 40.026060245081197 ], [ -75.147558185557997, 40.026147696615404 ], [ -75.147221396525694, 40.027653223843998 ], [ -75.146915294944094, 40.029153247782297 ], [ -75.146852776793907, 40.029490885140397 ], [ -75.146829626034105, 40.029612045733401 ], [ -75.146708041131902, 40.030136199459697 ], [ -75.146684879898004, 40.030236047986001 ], [ -75.1465780114208, 40.030646612128301 ], [ -75.146521627280904, 40.030874774907097 ], [ -75.146229797737107, 40.032194889219099 ], [ -75.145900359952194, 40.033737119198101 ], [ -75.145556007971905, 40.035271185815198 ], [ -75.145191243915903, 40.036985892718199 ], [ -75.144915198471594, 40.0383029637999 ], [ -75.144751910858602, 40.039082022661198 ], [ -75.144574691481594, 40.039845949870298 ], [ -75.144445924240401, 40.040523617620302 ], [ -75.144286792714198, 40.041176978027302 ], [ -75.144226954744397, 40.041390767815301 ], [ -75.144196088839706, 40.041483746597201 ], [ -75.144077920181402, 40.042003084952697 ], [ -75.143871512690296, 40.042910197802797 ], [ -75.143549677351103, 40.0444351171408 ], [ -75.143265291517295, 40.045724877955699 ], [ -75.143105165825105, 40.046481615537999 ], [ -75.142899997648797, 40.047503029679703 ], [ -75.142550335415095, 40.049049744413601 ], [ -75.142216916403001, 40.050572396795999 ], [ -75.141874605031106, 40.052086433731397 ], [ -75.141625714412598, 40.053233132320997 ], [ -75.141563177286699, 40.053609064011098 ], [ -75.141445027253397, 40.054217319628101 ], [ -75.141214459777302, 40.0551483176761 ], [ -75.140872373231701, 40.056703586258301 ], [ -75.140720323385395, 40.057359038132503 ], [ -75.140545913380393, 40.058218608108199 ], [ -75.140205878465395, 40.059738763949298 ], [ -75.139875125694203, 40.061260177750199 ], [ -75.139721662438504, 40.061949223444799 ], [ -75.1395541603749, 40.062813157849 ], [ -75.139417353468204, 40.063394590806602 ], [ -75.136839327908504, 40.0619814549392 ], [ -75.136765770834998, 40.061936062683102 ], [ -75.1351837874588, 40.060959800253997 ], [ -75.134119142979301, 40.060302765463902 ], [ -75.133371299353698, 40.059841228403499 ], [ -75.133071576535002, 40.059656248498499 ], [ -75.1301118326368, 40.0578780019829 ], [ -75.130170738645006, 40.057781153517404 ], [ -75.131675348717593, 40.055307285846702 ], [ -75.133355128262906, 40.0525451691745 ], [ -75.133469571660797, 40.052356976171303 ], [ -75.1336996393606, 40.051985733659201 ], [ -75.133845973434106, 40.051747694914503 ], [ -75.133986429338805, 40.051507730017597 ], [ -75.134118668445794, 40.051264795514399 ], [ -75.134241608770196, 40.051018888419897 ], [ -75.134352061206798, 40.050769951468901 ], [ -75.134441906131698, 40.050515779738298 ], [ -75.134517009249706, 40.050258842265698 ], [ -75.13458467481, 40.050000542472802 ], [ -75.134640304834306, 40.049740783801603 ], [ -75.134675286112198, 40.0494792503425 ], [ -75.134692235681996, 40.049216064759797 ], [ -75.1347071370691, 40.048953027166 ], [ -75.134707648579095, 40.048940274032397 ], [ -75.134717692442706, 40.048689892430701 ], [ -75.134720837573198, 40.048426680896 ], [ -75.134722230123003, 40.048163464598801 ], [ -75.134723419945701, 40.047900245485003 ], [ -75.134724428093705, 40.047637024934801 ], [ -75.134725274516796, 40.047373802501497 ], [ -75.134725977993398, 40.0471105777115 ], [ -75.134726560745904, 40.0468473519715 ], [ -75.134727041552196, 40.046584124808199 ], [ -75.1347274414628, 40.046320897601802 ], [ -75.134727668856399, 40.046143844725101 ], [ -75.134727780495396, 40.046057668105 ], [ -75.134728077322706, 40.045794438544803 ], [ -75.134728354200504, 40.045531209427999 ], [ -75.134728628768201, 40.045267979354101 ], [ -75.134728923280903, 40.045004748829797 ], [ -75.134729257615902, 40.044741519208799 ], [ -75.134729650548607, 40.044478290017302 ], [ -75.134730124333004, 40.044215061762301 ], [ -75.134730696572305, 40.043951833943296 ], [ -75.134731389520098, 40.043688607067203 ], [ -75.134731464610397, 40.043425350803297 ], [ -75.134728744783402, 40.043161975939803 ], [ -75.134725289038798, 40.042898563593603 ], [ -75.134723592919102, 40.042635212930797 ], [ -75.134726155476102, 40.042372022297101 ], [ -75.134735473311196, 40.042109091785001 ], [ -75.134753523093295, 40.0418464754095 ], [ -75.134779181534498, 40.041584085423501 ], [ -75.134810677947698, 40.041321903134197 ], [ -75.134846288210497, 40.041059919018501 ], [ -75.134884291845495, 40.040798120933999 ], [ -75.134922965920197, 40.040536500288098 ], [ -75.134964107722993, 40.0402752340527 ], [ -75.135010571677, 40.040014443974897 ], [ -75.135059546996899, 40.039753877745703 ], [ -75.135108169237398, 40.0394932773332 ], [ -75.135152606479195, 40.0392321824799 ], [ -75.135193909341396, 40.0389706477415 ], [ -75.135243637563804, 40.0387103698014 ], [ -75.135311525459301, 40.038452226188902 ], [ -75.135401623063402, 40.038197946226802 ], [ -75.135521410962397, 40.037952010635799 ], [ -75.1356622835237, 40.037711622203197 ], [ -75.135795080185503, 40.037468786440598 ], [ -75.135918976597097, 40.037222995357602 ], [ -75.135960683032096, 40.037148310056601 ], [ -75.136053903600299, 40.036981377344702 ], [ -75.136213486252501, 40.036748785383203 ], [ -75.136389210143307, 40.036522402750997 ], [ -75.136482426339498, 40.036407215325198 ], [ -75.136570135769702, 40.0362988322901 ], [ -75.136756777177794, 40.036077935201703 ], [ -75.136952501029896, 40.035861990150401 ], [ -75.137156972874607, 40.035650731790199 ], [ -75.137368956519197, 40.035443690454898 ], [ -75.137590149911901, 40.035242919408802 ], [ -75.137820903137296, 40.035047971545403 ], [ -75.1380632505509, 40.034861509638802 ], [ -75.138319797494603, 40.034687777203303 ], [ -75.138585970507407, 40.034522349759001 ], [ -75.138858143829196, 40.034362157922203 ], [ -75.139133529420903, 40.034205177649298 ], [ -75.139409865595098, 40.034049718551103 ], [ -75.1396877054584, 40.033895906719998 ], [ -75.139722115026302, 40.033877107768902 ], [ -75.139495387555101, 40.033565053302397 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 48, "disday": "5LMON", "sandis": "5L", "collday": "MON", "Shape__Area": 4975637.4140625, "Shape__Length": 10226.874714659887 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.1221130719087, 40.033983960835798 ], [ -75.124169860021695, 40.032584252809798 ], [ -75.124229083124703, 40.032562144110003 ], [ -75.124231469467603, 40.032561268809502 ], [ -75.124538551804804, 40.032448610369002 ], [ -75.124861752858394, 40.032365268616402 ], [ -75.125199405474703, 40.032314717503702 ], [ -75.125539807548606, 40.032290319234498 ], [ -75.125882656805601, 40.032285441629398 ], [ -75.126225535681797, 40.032291134507702 ], [ -75.126567590662006, 40.032303313844402 ], [ -75.126909304627702, 40.032322832231003 ], [ -75.127249982072897, 40.032349097129 ], [ -75.127589543242195, 40.032382688786299 ], [ -75.127928379092197, 40.032421378891499 ], [ -75.128266822562097, 40.032461830445897 ], [ -75.128430875560099, 40.032481458518603 ], [ -75.128605172666497, 40.032502311299801 ], [ -75.128943495638794, 40.032542927484499 ], [ -75.129281796686698, 40.032583665603603 ], [ -75.129620076333595, 40.032624512153703 ], [ -75.129958337444293, 40.032665453685198 ], [ -75.130296582849198, 40.032706477648297 ], [ -75.130634815447493, 40.032747569692901 ], [ -75.130973036932403, 40.032788716342303 ], [ -75.131292489114699, 40.032827621168202 ], [ -75.131311251269693, 40.032829905973699 ], [ -75.131649459050394, 40.0328711232833 ], [ -75.131987665445607, 40.032912355774698 ], [ -75.1323258709416, 40.0329535908445 ], [ -75.132664078470995, 40.032994813242297 ], [ -75.133002291998096, 40.033036011345096 ], [ -75.133340513214506, 40.033077171675998 ], [ -75.133978589792306, 40.033154668066999 ], [ -75.134316453835197, 40.033197520295197 ], [ -75.134654061813507, 40.033241552335703 ], [ -75.134792355159107, 40.033259824183098 ], [ -75.134991544389493, 40.033286141856003 ], [ -75.135329042718993, 40.033330667661701 ], [ -75.135666694501694, 40.033374506676601 ], [ -75.136004628056597, 40.033417035609801 ], [ -75.136342964732805, 40.033457629208002 ], [ -75.136681806200997, 40.033495655462403 ], [ -75.137021322932299, 40.033529943315102 ], [ -75.137362409143194, 40.033553278798102 ], [ -75.137704373660398, 40.033567048170603 ], [ -75.138046621807703, 40.033575734902897 ], [ -75.138388918467399, 40.033583192723299 ], [ -75.138731346071296, 40.033584994084599 ], [ -75.139073280986096, 40.033570779283103 ], [ -75.139412475062002, 40.0335346604124 ], [ -75.139466666539704, 40.0335258944449 ], [ -75.139495387555101, 40.033565053302397 ], [ -75.139722115026302, 40.033877107768902 ], [ -75.1396877054584, 40.033895906719998 ], [ -75.139409865595098, 40.034049718551103 ], [ -75.139133529420903, 40.034205177649298 ], [ -75.138858143829196, 40.034362157922203 ], [ -75.138585970507407, 40.034522349759001 ], [ -75.138319797494603, 40.034687777203303 ], [ -75.1380632505509, 40.034861509638802 ], [ -75.137820903137296, 40.035047971545403 ], [ -75.137590149911901, 40.035242919408802 ], [ -75.137368956519197, 40.035443690454898 ], [ -75.137156972874607, 40.035650731790199 ], [ -75.136952501029896, 40.035861990150401 ], [ -75.136756777177794, 40.036077935201703 ], [ -75.136570135769702, 40.0362988322901 ], [ -75.136482426339498, 40.036407215325198 ], [ -75.136389210143307, 40.036522402750997 ], [ -75.136213486252501, 40.036748785383203 ], [ -75.136053903600299, 40.036981377344702 ], [ -75.135960683032096, 40.037148310056601 ], [ -75.135918976597097, 40.037222995357602 ], [ -75.135795080185503, 40.037468786440598 ], [ -75.1356622835237, 40.037711622203197 ], [ -75.135521410962397, 40.037952010635799 ], [ -75.135401623063402, 40.038197946226802 ], [ -75.135311525459301, 40.038452226188902 ], [ -75.135243637563804, 40.0387103698014 ], [ -75.135193909341396, 40.0389706477415 ], [ -75.135152606479195, 40.0392321824799 ], [ -75.135108169237398, 40.0394932773332 ], [ -75.135059546996899, 40.039753877745703 ], [ -75.135010571677, 40.040014443974897 ], [ -75.134964107722993, 40.0402752340527 ], [ -75.134922965920197, 40.040536500288098 ], [ -75.134884291845495, 40.040798120933999 ], [ -75.134846288210497, 40.041059919018501 ], [ -75.134810677947698, 40.041321903134197 ], [ -75.134779181534498, 40.041584085423501 ], [ -75.134753523093295, 40.0418464754095 ], [ -75.134735473311196, 40.042109091785001 ], [ -75.134726155476102, 40.042372022297101 ], [ -75.134723592919102, 40.042635212930797 ], [ -75.134725289038798, 40.042898563593603 ], [ -75.134728744783402, 40.043161975939803 ], [ -75.134731464610397, 40.043425350803297 ], [ -75.134731389520098, 40.043688607067203 ], [ -75.134730696572305, 40.043951833943296 ], [ -75.134730124333004, 40.044215061762301 ], [ -75.134729650548607, 40.044478290017302 ], [ -75.134729257615902, 40.044741519208799 ], [ -75.134728923280903, 40.045004748829797 ], [ -75.134728628768201, 40.045267979354101 ], [ -75.134728354200504, 40.045531209427999 ], [ -75.134728077322706, 40.045794438544803 ], [ -75.134727780495396, 40.046057668105 ], [ -75.134727668856399, 40.046143844725101 ], [ -75.1347274414628, 40.046320897601802 ], [ -75.134727041552196, 40.046584124808199 ], [ -75.134726560745904, 40.0468473519715 ], [ -75.134725977993398, 40.0471105777115 ], [ -75.134725274516796, 40.047373802501497 ], [ -75.134724428093705, 40.047637024934801 ], [ -75.134723419945701, 40.047900245485003 ], [ -75.134722230123003, 40.048163464598801 ], [ -75.134720837573198, 40.048426680896 ], [ -75.134717692442706, 40.048689892430701 ], [ -75.134707648579095, 40.048940274032397 ], [ -75.1347071370691, 40.048953027166 ], [ -75.134692235681996, 40.049216064759797 ], [ -75.134675286112198, 40.0494792503425 ], [ -75.134640304834306, 40.049740783801603 ], [ -75.13458467481, 40.050000542472802 ], [ -75.134517009249706, 40.050258842265698 ], [ -75.134441906131698, 40.050515779738298 ], [ -75.134352061206798, 40.050769951468901 ], [ -75.134241608770196, 40.051018888419897 ], [ -75.134118668445794, 40.051264795514399 ], [ -75.133986429338805, 40.051507730017597 ], [ -75.133845973434106, 40.051747694914503 ], [ -75.1336996393606, 40.051985733659201 ], [ -75.133469571660797, 40.052356976171303 ], [ -75.133355128262906, 40.0525451691745 ], [ -75.131675348717593, 40.055307285846702 ], [ -75.130170738645006, 40.057781153517404 ], [ -75.1301118326368, 40.0578780019829 ], [ -75.128975928060996, 40.057195493511799 ], [ -75.128463408060298, 40.0568875364986 ], [ -75.126958129960599, 40.055983035703598 ], [ -75.126302923059299, 40.055589317554201 ], [ -75.125355738186499, 40.055020132122202 ], [ -75.124844482341203, 40.054727275623499 ], [ -75.124552957418004, 40.054560281996999 ], [ -75.123327736233506, 40.0538584264498 ], [ -75.122124213740094, 40.053168973241299 ], [ -75.122269269429907, 40.052613336340798 ], [ -75.1222736482339, 40.052594003177099 ], [ -75.122518351485496, 40.051135007296502 ], [ -75.1227787853108, 40.049622387630997 ], [ -75.123037655927703, 40.048195233695203 ], [ -75.123119879154203, 40.047822733308301 ], [ -75.123158843731602, 40.047589409928499 ], [ -75.123210541597999, 40.047248788046801 ], [ -75.123261259081104, 40.046977448813699 ], [ -75.123341166738996, 40.0465735369662 ], [ -75.123434289665596, 40.046049297945302 ], [ -75.119249810361396, 40.0455307310067 ], [ -75.119456355828405, 40.0444896933151 ], [ -75.119579089410806, 40.0439351647412 ], [ -75.119688411642201, 40.0434444253099 ], [ -75.119785275107603, 40.0429359061838 ], [ -75.119904242098698, 40.042420190225798 ], [ -75.120007842622002, 40.041937939675201 ], [ -75.120106609408396, 40.0414264418798 ], [ -75.120235746018096, 40.040899551498804 ], [ -75.120333372097804, 40.040408996134197 ], [ -75.120436748259806, 40.039896015141203 ], [ -75.120769749830899, 40.038367650786697 ], [ -75.121074899484796, 40.036824257908698 ], [ -75.121281691230195, 40.035920401979602 ], [ -75.121424498061302, 40.035290136905601 ], [ -75.121446188971305, 40.035174088235202 ], [ -75.121707483743194, 40.0345800266022 ], [ -75.121851369893506, 40.034279235357801 ], [ -75.121915765987097, 40.034175243749502 ], [ -75.1221130719087, 40.033983960835798 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 49, "disday": "5LTHU", "sandis": "5L", "collday": "THU", "Shape__Area": 6902067.11328125, "Shape__Length": 16964.42794700155 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.106311395111007, 40.034312044781302 ], [ -75.105937924802404, 40.034109858260301 ], [ -75.104728580496001, 40.035330194891401 ], [ -75.103203690080804, 40.0367830870834 ], [ -75.102332712830901, 40.037629885929 ], [ -75.102125387262205, 40.037811307578501 ], [ -75.101883574009406, 40.038032873963701 ], [ -75.101575512369493, 40.038302552916598 ], [ -75.099388546207095, 40.036770789887299 ], [ -75.098418563108595, 40.036110767283802 ], [ -75.100549927199395, 40.033993762327903 ], [ -75.101150833947798, 40.033344018363501 ], [ -75.102382057270503, 40.032127978499702 ], [ -75.103905374573699, 40.030598255068803 ], [ -75.103229840933807, 40.0300577749599 ], [ -75.103071456528795, 40.0299044946915 ], [ -75.103598275039502, 40.0299395082614 ], [ -75.103966218581107, 40.029907714681201 ], [ -75.104308883495094, 40.029855104910197 ], [ -75.104604699407005, 40.0297895285767 ], [ -75.104616016277703, 40.029786093222597 ], [ -75.105134833068007, 40.029628573971003 ], [ -75.106134820236306, 40.029299988023602 ], [ -75.107254796587696, 40.028950140535002 ], [ -75.110041774317395, 40.028056792562197 ], [ -75.111379904962803, 40.027628822988703 ], [ -75.111900982803704, 40.0275084645032 ], [ -75.112393514849103, 40.027413914918803 ], [ -75.112885228641503, 40.027340206001298 ], [ -75.113609599985494, 40.0272316171136 ], [ -75.117235719392795, 40.026680033880702 ], [ -75.118337804576598, 40.026531705225601 ], [ -75.119760812709004, 40.026336521879301 ], [ -75.119818967671804, 40.0263434780436 ], [ -75.121989090545, 40.025999150283603 ], [ -75.123454906245399, 40.025794015087101 ], [ -75.124550547297503, 40.0256443682065 ], [ -75.125414660148707, 40.025514480831497 ], [ -75.126677313980096, 40.025329288410397 ], [ -75.127934848675096, 40.0251329773807 ], [ -75.128883347915206, 40.024932203479601 ], [ -75.130568459501902, 40.024591439200002 ], [ -75.131460576099698, 40.024380202043801 ], [ -75.132245247321293, 40.024136569624197 ], [ -75.133255282833801, 40.023906459694601 ], [ -75.133262880371603, 40.023904859604997 ], [ -75.1332866484004, 40.023793773400101 ], [ -75.133302889510901, 40.0237178700391 ], [ -75.133334722781299, 40.023538479007399 ], [ -75.134452796491402, 40.023304992769397 ], [ -75.135153254619993, 40.023133055362798 ], [ -75.135685107974794, 40.022961963434 ], [ -75.136119436366897, 40.022809853009697 ], [ -75.136318272292598, 40.0227271120716 ], [ -75.136705749529895, 40.022555588300897 ], [ -75.136802506875199, 40.022672894023003 ], [ -75.137007413281594, 40.022931240551998 ], [ -75.137057150487905, 40.023069418699798 ], [ -75.136952484817996, 40.023107188437798 ], [ -75.136428857483097, 40.023329838902598 ], [ -75.136144379688304, 40.024681985372801 ], [ -75.135811386379203, 40.0261732882147 ], [ -75.136458063274503, 40.026256463384101 ], [ -75.136405382275896, 40.026564256581203 ], [ -75.136140567105599, 40.027750628220197 ], [ -75.135805648162901, 40.029263353317504 ], [ -75.135062556450407, 40.029159498070001 ], [ -75.134148582101801, 40.0290524558256 ], [ -75.133808222755704, 40.030593125426599 ], [ -75.134201062111103, 40.030645670492099 ], [ -75.134496414314299, 40.030676000384602 ], [ -75.134166136093, 40.032226495510002 ], [ -75.135364150907407, 40.032377150730298 ], [ -75.134792355159107, 40.033259824183098 ], [ -75.134654061813507, 40.033241552335703 ], [ -75.134316453835197, 40.033197520295197 ], [ -75.133978589792306, 40.033154668066999 ], [ -75.133340513214506, 40.033077171675998 ], [ -75.133002291998096, 40.033036011345096 ], [ -75.132664078470995, 40.032994813242297 ], [ -75.1323258709416, 40.0329535908445 ], [ -75.131987665445607, 40.032912355774698 ], [ -75.131649459050394, 40.0328711232833 ], [ -75.131311251269693, 40.032829905973699 ], [ -75.131292489114699, 40.032827621168202 ], [ -75.130973036932403, 40.032788716342303 ], [ -75.130634815447493, 40.032747569692901 ], [ -75.130296582849198, 40.032706477648297 ], [ -75.129958337444293, 40.032665453685198 ], [ -75.129620076333595, 40.032624512153703 ], [ -75.129281796686698, 40.032583665603603 ], [ -75.128943495638794, 40.032542927484499 ], [ -75.128605172666497, 40.032502311299801 ], [ -75.128430875560099, 40.032481458518603 ], [ -75.128266822562097, 40.032461830445897 ], [ -75.127928379092197, 40.032421378891499 ], [ -75.127589543242195, 40.032382688786299 ], [ -75.127249982072897, 40.032349097129 ], [ -75.126909304627702, 40.032322832231003 ], [ -75.126567590662006, 40.032303313844402 ], [ -75.126225535681797, 40.032291134507702 ], [ -75.125882656805601, 40.032285441629398 ], [ -75.125539807548606, 40.032290319234498 ], [ -75.125199405474703, 40.032314717503702 ], [ -75.124861752858394, 40.032365268616402 ], [ -75.124538551804804, 40.032448610369002 ], [ -75.124231469467603, 40.032561268809502 ], [ -75.124229083124703, 40.032562144110003 ], [ -75.124169860021695, 40.032584252809798 ], [ -75.1221130719087, 40.033983960835798 ], [ -75.121915765987097, 40.034175243749502 ], [ -75.121851369893506, 40.034279235357801 ], [ -75.121707483743194, 40.0345800266022 ], [ -75.121446188971305, 40.035174088235202 ], [ -75.121424498061302, 40.035290136905601 ], [ -75.121281691230195, 40.035920401979602 ], [ -75.121074899484796, 40.036824257908698 ], [ -75.120769749830899, 40.038367650786697 ], [ -75.120436748259806, 40.039896015141203 ], [ -75.120333372097804, 40.040408996134197 ], [ -75.120235746018096, 40.040899551498804 ], [ -75.120106609408396, 40.0414264418798 ], [ -75.120007842622002, 40.041937939675201 ], [ -75.119904242098698, 40.042420190225798 ], [ -75.119785275107603, 40.0429359061838 ], [ -75.119688411642201, 40.0434444253099 ], [ -75.119579089410806, 40.0439351647412 ], [ -75.119456355828405, 40.0444896933151 ], [ -75.119249810361396, 40.0455307310067 ], [ -75.123434289665596, 40.046049297945302 ], [ -75.123341166738996, 40.0465735369662 ], [ -75.123261259081104, 40.046977448813699 ], [ -75.123210541597999, 40.047248788046801 ], [ -75.123158843731602, 40.047589409928499 ], [ -75.123119879154203, 40.047822733308301 ], [ -75.123037655927703, 40.048195233695203 ], [ -75.1227787853108, 40.049622387630997 ], [ -75.122518351485496, 40.051135007296502 ], [ -75.1222736482339, 40.052594003177099 ], [ -75.122269269429907, 40.052613336340798 ], [ -75.122124213740094, 40.053168973241299 ], [ -75.120808475402896, 40.052422411361398 ], [ -75.119992121663302, 40.051958986193803 ], [ -75.119544436482897, 40.051704840296502 ], [ -75.118566996290099, 40.051149946132 ], [ -75.117062150046195, 40.050295610241498 ], [ -75.115074874723305, 40.049143492230698 ], [ -75.114509255016998, 40.048815562035102 ], [ -75.112928499140494, 40.047898959961202 ], [ -75.1123662022692, 40.047572903363999 ], [ -75.112058314497602, 40.047394363242901 ], [ -75.111065334644294, 40.046822701695902 ], [ -75.109433840918499, 40.0458834040654 ], [ -75.109442658018096, 40.045865246459798 ], [ -75.109556045527, 40.045616932266299 ], [ -75.109662998026096, 40.045366877046 ], [ -75.1097672916097, 40.045116078548197 ], [ -75.109873028042301, 40.0448656600284 ], [ -75.109984109567506, 40.0446166887846 ], [ -75.110099370642303, 40.044368837973302 ], [ -75.110216915544001, 40.044121595482302 ], [ -75.110335970039799, 40.043874762406297 ], [ -75.110455761148202, 40.0436281380697 ], [ -75.110575298918107, 40.0433814339194 ], [ -75.1106903551172, 40.0431329534767 ], [ -75.110803457901298, 40.042883645959499 ], [ -75.110919796847, 40.042635538084397 ], [ -75.111044561399197, 40.042390658347301 ], [ -75.111156588498005, 40.042196678760902 ], [ -75.111182947972196, 40.042151035381799 ], [ -75.111343956283207, 40.041919380743202 ], [ -75.111527020186401, 40.041695929119101 ], [ -75.111723875656295, 40.041479182300499 ], [ -75.111861705633402, 40.0413367461557 ], [ -75.111799401932998, 40.041279785646402 ], [ -75.110774372595202, 40.040308445998001 ], [ -75.110328316856297, 40.0396907712448 ], [ -75.110013245000303, 40.039158432311901 ], [ -75.109658801117604, 40.038527244457399 ], [ -75.109168402465997, 40.037603986251 ], [ -75.109128206681206, 40.037525490556199 ], [ -75.108981879843398, 40.037239742226902 ], [ -75.108860781906998, 40.037003258296302 ], [ -75.10873551, 40.036732906708899 ], [ -75.108685110673704, 40.036434420266502 ], [ -75.108592546969703, 40.035759355126899 ], [ -75.108573425823494, 40.035504736470202 ], [ -75.108257445141106, 40.03539828273 ], [ -75.107689391008407, 40.035079399413497 ], [ -75.107587819703198, 40.035022839489798 ], [ -75.106311395111007, 40.034312044781302 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 50, "disday": "5LTUE", "sandis": "5L", "collday": "TUE", "Shape__Area": 4936653.578125, "Shape__Length": 10740.481237669266 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.136802506875199, 40.022672894023003 ], [ -75.136705749529895, 40.022555588300897 ], [ -75.136318272292598, 40.0227271120716 ], [ -75.136119436366897, 40.022809853009697 ], [ -75.136368665837296, 40.021672905650199 ], [ -75.136569641347407, 40.020709663469802 ], [ -75.136626879998701, 40.020480689104303 ], [ -75.136742202982902, 40.019967534075299 ], [ -75.136986451346203, 40.018798762661497 ], [ -75.136803610003795, 40.018438929363199 ], [ -75.136579184135101, 40.018004977212897 ], [ -75.136814123427399, 40.016908357222697 ], [ -75.137165862664105, 40.015308739073397 ], [ -75.1375054861184, 40.013719724292002 ], [ -75.137828852455499, 40.012242936086302 ], [ -75.138161118316404, 40.0107374250289 ], [ -75.138486714102697, 40.009243546909403 ], [ -75.138580339188593, 40.008798858555203 ], [ -75.138831192789198, 40.007657330107001 ], [ -75.139654864893302, 40.007764269787899 ], [ -75.140315473688702, 40.007839135583403 ], [ -75.140475030894507, 40.007887619719597 ], [ -75.140835670526997, 40.0062878139465 ], [ -75.140994485007198, 40.005536865144698 ], [ -75.141163315628006, 40.004793760131101 ], [ -75.141251420250398, 40.004390006877301 ], [ -75.141265905755702, 40.004298058794298 ], [ -75.141363245683294, 40.003857972595803 ], [ -75.141404327937195, 40.003695831969701 ], [ -75.141480404551004, 40.0033347614904 ], [ -75.141411586395293, 40.0032668618408 ], [ -75.141483242575006, 40.003165229347999 ], [ -75.142930896888501, 40.002624125697601 ], [ -75.142925515559696, 40.002616500683601 ], [ -75.142755031895703, 40.0023881655382 ], [ -75.142579727190196, 40.0021621452603 ], [ -75.142418437462496, 40.001959423584999 ], [ -75.142719331633799, 40.001852725539202 ], [ -75.143029928012396, 40.001742121279101 ], [ -75.143340240923905, 40.001631061056301 ], [ -75.1436502205907, 40.001519468057197 ], [ -75.143800490491003, 40.001465008885098 ], [ -75.143959820711103, 40.001407266448801 ], [ -75.1442689937425, 40.001294382172503 ], [ -75.144577687839401, 40.001180731161199 ], [ -75.144885866575606, 40.001066254926897 ], [ -75.145193576239606, 40.000951029309199 ], [ -75.145500873207098, 40.000835142088803 ], [ -75.145807812650006, 40.000718681919899 ], [ -75.1461144497069, 40.000601738356202 ], [ -75.146420838416006, 40.000484399123799 ], [ -75.146727036328599, 40.000366752027702 ], [ -75.147033097416397, 40.000248886593397 ], [ -75.147339076857307, 40.000130891471997 ], [ -75.147645031070198, 40.0000128535399 ], [ -75.147720346364196, 39.999983811771401 ], [ -75.147951015166299, 39.999894863247697 ], [ -75.148257083191496, 39.999777008317899 ], [ -75.148563292703997, 39.999659376552003 ], [ -75.148869696512307, 39.999542057445403 ], [ -75.149176352142902, 39.999425139698701 ], [ -75.149483314851196, 39.999308710158402 ], [ -75.149790638585301, 39.999192859244801 ], [ -75.150023193583195, 39.999105815413799 ], [ -75.150098378603403, 39.999077673803299 ], [ -75.150406560352295, 39.998963193150303 ], [ -75.150714970782005, 39.998849076378001 ], [ -75.151023549100699, 39.998735228402097 ], [ -75.151332284260803, 39.998621631851798 ], [ -75.151641166488005, 39.998508266681803 ], [ -75.151950181187999, 39.9983951163425 ], [ -75.152259319756595, 39.998282160815599 ], [ -75.152568569905597, 39.9981693845046 ], [ -75.152877920655001, 39.998056768238897 ], [ -75.153187358683098, 39.997944292794699 ], [ -75.1534968741109, 39.997831940828597 ], [ -75.153784062213305, 39.997727814847501 ], [ -75.153611215595504, 39.998524671983901 ], [ -75.153567950016694, 39.998732992736699 ], [ -75.153518534912905, 39.998951755942301 ], [ -75.153432206765601, 39.999330977279598 ], [ -75.153377413557905, 39.999543791904799 ], [ -75.153273554521405, 40.000014037531798 ], [ -75.152928293101198, 40.001602016253202 ], [ -75.152552519511403, 40.003190912169202 ], [ -75.152237940685495, 40.004699034316801 ], [ -75.151923332658995, 40.006176598929002 ], [ -75.151605276942902, 40.007674637109098 ], [ -75.151455656316898, 40.008312743546099 ], [ -75.1513714226529, 40.008736639488198 ], [ -75.151248688451702, 40.009288306864399 ], [ -75.151093326153003, 40.009943683455397 ], [ -75.150885615913097, 40.010846462311598 ], [ -75.150575571768599, 40.012379618539001 ], [ -75.150396908182898, 40.013175222225897 ], [ -75.150247432022198, 40.013771153160498 ], [ -75.150205385058797, 40.013996085621798 ], [ -75.150098271083806, 40.014577303273903 ], [ -75.150072739290906, 40.014689750746399 ], [ -75.150041397422598, 40.014827779026596 ], [ -75.149933994314395, 40.015334787516501 ], [ -75.149841567294303, 40.015681231126202 ], [ -75.149772184912607, 40.016030882479001 ], [ -75.149728962120406, 40.0162240867379 ], [ -75.149588638686794, 40.016941698757101 ], [ -75.149349276920404, 40.017966917177702 ], [ -75.149232663894594, 40.0185118648225 ], [ -75.148995781779803, 40.019581879843997 ], [ -75.148956406764995, 40.019751438202199 ], [ -75.148956066379696, 40.019753042414798 ], [ -75.148938735474999, 40.019834656981999 ], [ -75.148938000480797, 40.0198381182662 ], [ -75.148861837881398, 40.020161958210899 ], [ -75.148740535634403, 40.020720261382898 ], [ -75.148694010308503, 40.020962392452503 ], [ -75.148569336705805, 40.021485204564499 ], [ -75.1482480748207, 40.022968752271503 ], [ -75.147896826083596, 40.024562913703299 ], [ -75.147558185557997, 40.026147696615404 ], [ -75.146689761443596, 40.026060245081197 ], [ -75.145362420558101, 40.025882494841099 ], [ -75.144582832143598, 40.025778803624299 ], [ -75.143784746616902, 40.025671060672003 ], [ -75.143002935517103, 40.025570672589801 ], [ -75.142208320098703, 40.025468635035203 ], [ -75.141422993210597, 40.025366948886699 ], [ -75.1406407157057, 40.025271755390598 ], [ -75.139842533524501, 40.025155357094498 ], [ -75.139029458305799, 40.025053446296901 ], [ -75.138559697489498, 40.025002016911799 ], [ -75.138081204105205, 40.024936990575902 ], [ -75.137428145367906, 40.0248530114524 ], [ -75.136783587034898, 40.024768281346702 ], [ -75.136144379688304, 40.024681985372801 ], [ -75.136428857483097, 40.023329838902598 ], [ -75.136952484817996, 40.023107188437798 ], [ -75.137057150487905, 40.023069418699798 ], [ -75.137007413281594, 40.022931240551998 ], [ -75.136802506875199, 40.022672894023003 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 51, "disday": "5LWED", "sandis": "5L", "collday": "WED", "Shape__Area": 7979583.24609375, "Shape__Length": 14069.074624525794 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102538457809601, 40.029846620290101 ], [ -75.112168225282801, 40.020057683221097 ], [ -75.112992177107003, 40.019160979775201 ], [ -75.114134249090995, 40.017751020327204 ], [ -75.117716486909799, 40.012807461554303 ], [ -75.119251996394297, 40.009857193898902 ], [ -75.120529030274795, 40.006852087198602 ], [ -75.121404787824403, 40.004533023296098 ], [ -75.121431299341197, 40.004536701925197 ], [ -75.121768426032105, 40.004583194391003 ], [ -75.122105743799196, 40.004628545024097 ], [ -75.122443392842399, 40.004671885738702 ], [ -75.122781512208803, 40.004712347519998 ], [ -75.123120241994897, 40.004749064079 ], [ -75.1234596971766, 40.004781333438899 ], [ -75.123799634531807, 40.004810837654702 ], [ -75.123951088905798, 40.004823102527098 ], [ -75.124139920456798, 40.004838394502698 ], [ -75.124480512145198, 40.004864201227299 ], [ -75.124821365519196, 40.004888457747597 ], [ -75.125162436574797, 40.004911362182497 ], [ -75.125503680106505, 40.004933113524999 ], [ -75.125845054459106, 40.004953909948597 ], [ -75.126186513299004, 40.004973949520497 ], [ -75.126528016080201, 40.004993432242301 ], [ -75.126869515306097, 40.005012556155499 ], [ -75.127210969337497, 40.005031519435597 ], [ -75.127552350725907, 40.005050425975099 ], [ -75.127865118087797, 40.0050667209183 ], [ -75.127893843278301, 40.0050682176634 ], [ -75.128235485293501, 40.005084630472901 ], [ -75.128577252852907, 40.005099767474697 ], [ -75.128919118423696, 40.0051137343603 ], [ -75.129261054579501, 40.005126634121197 ], [ -75.1296030362371, 40.005138569802398 ], [ -75.129945035869994, 40.005149647096701 ], [ -75.130287028433997, 40.005159968149698 ], [ -75.130629108809401, 40.005168500749598 ], [ -75.130971443951495, 40.005172860088102 ], [ -75.131313855667898, 40.005173320516498 ], [ -75.131656149829396, 40.005170265949502 ], [ -75.131940320813897, 40.0051654334804 ], [ -75.131998442798206, 40.005164445091197 ], [ -75.132341065553007, 40.005155507782597 ], [ -75.132682966018706, 40.005139955686403 ], [ -75.133023014628805, 40.005114019306603 ], [ -75.133360648929198, 40.005070734441802 ], [ -75.133695340303106, 40.005013048936199 ], [ -75.134026626155404, 40.004946972921502 ], [ -75.134354268483605, 40.004869587996701 ], [ -75.1346757418534, 40.004779474316599 ], [ -75.134991320507396, 40.004677690578802 ], [ -75.135302671429002, 40.004567708602302 ], [ -75.1356108601519, 40.004453042353198 ], [ -75.135917518395203, 40.004336165380003 ], [ -75.136223260047004, 40.004217808886999 ], [ -75.136528441542296, 40.004098544135601 ], [ -75.136833416982796, 40.0039789423302 ], [ -75.137138543954904, 40.003859575651497 ], [ -75.137444174269206, 40.003741014342999 ], [ -75.137671046493097, 40.003654272767299 ], [ -75.137750666698494, 40.003623830604297 ], [ -75.138058375375607, 40.003508595624901 ], [ -75.138367456919795, 40.003395563441799 ], [ -75.138677091560496, 40.0032834152208 ], [ -75.138987100367601, 40.003171868471497 ], [ -75.139297438191605, 40.003060848280199 ], [ -75.139608057609905, 40.002950277879897 ], [ -75.139878214566494, 40.002854509540001 ], [ -75.139918911094995, 40.002840083204902 ], [ -75.140229951221997, 40.002730187489199 ], [ -75.140541130495905, 40.002620515767703 ], [ -75.140852402625896, 40.002510992202403 ], [ -75.141163718978703, 40.002401540902397 ], [ -75.141475034397303, 40.002292086957503 ], [ -75.141786300280799, 40.002182553577597 ], [ -75.142097470299504, 40.002072865827103 ], [ -75.142408495781297, 40.0019629487171 ], [ -75.142418437462496, 40.001959423584999 ], [ -75.142579727190196, 40.0021621452603 ], [ -75.142755031895703, 40.0023881655382 ], [ -75.142925515559696, 40.002616500683601 ], [ -75.142930896888501, 40.002624125697601 ], [ -75.141483242575006, 40.003165229347999 ], [ -75.141411586395293, 40.0032668618408 ], [ -75.141480404551004, 40.0033347614904 ], [ -75.141404327937195, 40.003695831969701 ], [ -75.141363245683294, 40.003857972595803 ], [ -75.141265905755702, 40.004298058794298 ], [ -75.141251420250398, 40.004390006877301 ], [ -75.141163315628006, 40.004793760131101 ], [ -75.140994485007198, 40.005536865144698 ], [ -75.140835670526997, 40.0062878139465 ], [ -75.140475030894507, 40.007887619719597 ], [ -75.140315473688702, 40.007839135583403 ], [ -75.139654864893302, 40.007764269787899 ], [ -75.138831192789198, 40.007657330107001 ], [ -75.138580339188593, 40.008798858555203 ], [ -75.138486714102697, 40.009243546909403 ], [ -75.138161118316404, 40.0107374250289 ], [ -75.137828852455499, 40.012242936086302 ], [ -75.1375054861184, 40.013719724292002 ], [ -75.137165862664105, 40.015308739073397 ], [ -75.136814123427399, 40.016908357222697 ], [ -75.136579184135101, 40.018004977212897 ], [ -75.136803610003795, 40.018438929363199 ], [ -75.136986451346203, 40.018798762661497 ], [ -75.136742202982902, 40.019967534075299 ], [ -75.136626879998701, 40.020480689104303 ], [ -75.136569641347407, 40.020709663469802 ], [ -75.136368665837296, 40.021672905650199 ], [ -75.136119436366897, 40.022809853009697 ], [ -75.135685107974794, 40.022961963434 ], [ -75.135153254619993, 40.023133055362798 ], [ -75.134452796491402, 40.023304992769397 ], [ -75.133334722781299, 40.023538479007399 ], [ -75.133302889510901, 40.0237178700391 ], [ -75.1332866484004, 40.023793773400101 ], [ -75.133262880371603, 40.023904859604997 ], [ -75.133255282833801, 40.023906459694601 ], [ -75.132245247321293, 40.024136569624197 ], [ -75.131460576099698, 40.024380202043801 ], [ -75.130568459501902, 40.024591439200002 ], [ -75.128883347915206, 40.024932203479601 ], [ -75.127934848675096, 40.0251329773807 ], [ -75.126677313980096, 40.025329288410397 ], [ -75.125414660148707, 40.025514480831497 ], [ -75.124550547297503, 40.0256443682065 ], [ -75.123454906245399, 40.025794015087101 ], [ -75.121989090545, 40.025999150283603 ], [ -75.119818967671804, 40.0263434780436 ], [ -75.119760812709004, 40.026336521879301 ], [ -75.118337804576598, 40.026531705225601 ], [ -75.117235719392795, 40.026680033880702 ], [ -75.113609599985494, 40.0272316171136 ], [ -75.112885228641503, 40.027340206001298 ], [ -75.112393514849103, 40.027413914918803 ], [ -75.111900982803704, 40.0275084645032 ], [ -75.111379904962803, 40.027628822988703 ], [ -75.110041774317395, 40.028056792562197 ], [ -75.107254796587696, 40.028950140535002 ], [ -75.106134820236306, 40.029299988023602 ], [ -75.105134833068007, 40.029628573971003 ], [ -75.104616016277703, 40.029786093222597 ], [ -75.104604699407005, 40.0297895285767 ], [ -75.104308883495094, 40.029855104910197 ], [ -75.103966218581107, 40.029907714681201 ], [ -75.103598275039502, 40.0299395082614 ], [ -75.103071456528795, 40.0299044946915 ], [ -75.102538457809601, 40.029846620290101 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 52, "disday": "6AFRI", "sandis": "6A", "collday": "FRI", "Shape__Area": 7933174.81640625, "Shape__Length": 12097.787754518036 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.052829288906494, 40.046026475591702 ], [ -75.054436579782106, 40.044537996170298 ], [ -75.054649700194801, 40.044654428735498 ], [ -75.055725206097705, 40.045265600687003 ], [ -75.056145853060002, 40.045508312813503 ], [ -75.056385772621198, 40.045649003124403 ], [ -75.056716471523799, 40.0458439478017 ], [ -75.057050435439706, 40.046039385207898 ], [ -75.057372466440995, 40.046216677749499 ], [ -75.057727770934605, 40.046419639679698 ], [ -75.058067916751895, 40.046640459865202 ], [ -75.058370216772005, 40.0468145028644 ], [ -75.059938996694399, 40.047760404567697 ], [ -75.061377023045694, 40.048594681088503 ], [ -75.0623859346437, 40.049157317103102 ], [ -75.063440409854707, 40.049760467938398 ], [ -75.063519700121404, 40.049773987134301 ], [ -75.063579306053001, 40.049802044729702 ], [ -75.063832592256801, 40.049940071396001 ], [ -75.064188377140297, 40.050138877934003 ], [ -75.064563048734996, 40.050347969624603 ], [ -75.064845249382998, 40.050503214827799 ], [ -75.0651338611695, 40.050673630435 ], [ -75.0654053606399, 40.050818126044199 ], [ -75.065757561183105, 40.051017340212397 ], [ -75.066048583769899, 40.051190411053902 ], [ -75.067726082026397, 40.052154676212801 ], [ -75.068505204251906, 40.052599882036397 ], [ -75.069135291661794, 40.052958499711202 ], [ -75.069724086594803, 40.053294013614597 ], [ -75.071473094868793, 40.054303698466001 ], [ -75.073258164643207, 40.055339140035898 ], [ -75.074097540284896, 40.055828358020001 ], [ -75.075034339485001, 40.056368199457701 ], [ -75.076735990816601, 40.057359764519099 ], [ -75.077780664210906, 40.057934638911803 ], [ -75.078078176456501, 40.058113187238 ], [ -75.078762329605198, 40.058509282801197 ], [ -75.079613540090193, 40.059003004656503 ], [ -75.0796494231178, 40.059024483245501 ], [ -75.080508985452298, 40.059536662614697 ], [ -75.081404746867406, 40.060041055789497 ], [ -75.082279506296103, 40.060556129592896 ], [ -75.083099853407703, 40.061027847807203 ], [ -75.083527347543694, 40.0612797593975 ], [ -75.083836021615895, 40.061481921324699 ], [ -75.083650059083894, 40.061658148551501 ], [ -75.083586876191404, 40.061763884072398 ], [ -75.083481317994995, 40.061991004172803 ], [ -75.083516775998902, 40.063734314479802 ], [ -75.0835174186643, 40.063765906232099 ], [ -75.083522257191007, 40.064242629187497 ], [ -75.083520520349097, 40.065543952788197 ], [ -75.083350674205803, 40.065619833160603 ], [ -75.083259000155394, 40.065691660904598 ], [ -75.083097396965798, 40.065847197371198 ], [ -75.082693542773399, 40.066250251437701 ], [ -75.082138165141004, 40.066773239167603 ], [ -75.081589397566106, 40.067331053417703 ], [ -75.080967424000406, 40.0679836146276 ], [ -75.080274201555795, 40.0686100740553 ], [ -75.079663666719597, 40.069212694064099 ], [ -75.079039841137302, 40.069812281002498 ], [ -75.078420867725399, 40.070422356656202 ], [ -75.077844973369395, 40.0710032344683 ], [ -75.077204657934701, 40.071636833946997 ], [ -75.076583633546605, 40.072236112330302 ], [ -75.075901955394698, 40.072893854735298 ], [ -75.074031886825793, 40.071992128319103 ], [ -75.073163254364701, 40.071575432098101 ], [ -75.072300597738902, 40.071150257964398 ], [ -75.071419036268907, 40.070721228696499 ], [ -75.070414118692895, 40.070229718450399 ], [ -75.068916747583103, 40.069511163256102 ], [ -75.067841163301097, 40.068968412728204 ], [ -75.067837789663002, 40.0689667103061 ], [ -75.067358276065605, 40.068736444718503 ], [ -75.065848526758501, 40.067840191543198 ], [ -75.064059933598003, 40.066778346947999 ], [ -75.063042556602994, 40.066152880630803 ], [ -75.062559380138495, 40.065846706420203 ], [ -75.062183222483995, 40.0656127913688 ], [ -75.061338343371304, 40.065065880198503 ], [ -75.059626595933295, 40.063983473001301 ], [ -75.057699897522397, 40.062796902852 ], [ -75.056148066558805, 40.061841488063799 ], [ -75.054186314818693, 40.060727070249101 ], [ -75.052410021439101, 40.059748687813098 ], [ -75.0520249185642, 40.059544784051099 ], [ -75.050584449063606, 40.0587786600492 ], [ -75.048566868589901, 40.057677530758603 ], [ -75.048554125215503, 40.057659675100801 ], [ -75.048148095555206, 40.057447530214603 ], [ -75.047807213152694, 40.057256781521197 ], [ -75.047405229384097, 40.057040679741903 ], [ -75.047393300467803, 40.0570397125325 ], [ -75.0470060606863, 40.056827208910398 ], [ -75.046858692042903, 40.056747027287699 ], [ -75.048206759686096, 40.055377526091398 ], [ -75.049285420699306, 40.054282453783003 ], [ -75.049330368149498, 40.054235963002199 ], [ -75.049620388014304, 40.053955515458398 ], [ -75.0500429485311, 40.053539975027803 ], [ -75.050463586371507, 40.053088287501403 ], [ -75.050644397141795, 40.052844989477698 ], [ -75.050885200333994, 40.052443225145197 ], [ -75.051054781568695, 40.052060416622403 ], [ -75.051203002260706, 40.051455345672601 ], [ -75.051359473328006, 40.049559829529301 ], [ -75.051411003677899, 40.048925451014597 ], [ -75.051453659279503, 40.048359157099704 ], [ -75.051572387900606, 40.047820437261997 ], [ -75.051726498296105, 40.047390088452801 ], [ -75.051981049658195, 40.046946827636297 ], [ -75.052288458708603, 40.046550785425502 ], [ -75.052829288906494, 40.046026475591702 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 53, "disday": "6AMON", "sandis": "6A", "collday": "MON", "Shape__Area": 19255639.26171875, "Shape__Length": 22044.291326763527 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.998536419910096, 40.128206043304402 ], [ -74.997886789180498, 40.1278260453619 ], [ -74.997803632662198, 40.1279118538015 ], [ -74.997573931100504, 40.128127703916903 ], [ -74.997451385651701, 40.128259287604997 ], [ -74.994197017449096, 40.131518252656903 ], [ -74.993848535484005, 40.131862760498102 ], [ -74.993674905361203, 40.1317424726628 ], [ -74.993509580721593, 40.131623870353401 ], [ -74.993432790041993, 40.131559630549098 ], [ -74.993357062243902, 40.131469295304299 ], [ -74.993212512613098, 40.131327971021598 ], [ -74.9931026685598, 40.1311932839807 ], [ -74.992998491663698, 40.1310587326711 ], [ -74.992923295846495, 40.130955349879997 ], [ -74.992842609042299, 40.130824263825701 ], [ -74.992781992469901, 40.1307342904122 ], [ -74.992752832808506, 40.130614597199298 ], [ -74.992745629741407, 40.130512844265397 ], [ -74.992773485495405, 40.130432247138899 ], [ -74.992815329106406, 40.1303099030686 ], [ -74.992865671979004, 40.130234198931603 ], [ -74.992942456977204, 40.130205565741903 ], [ -74.993048695336299, 40.130196503150501 ], [ -74.993105529015907, 40.130100639179098 ], [ -74.993114262601395, 40.130025388248903 ], [ -74.993102278279906, 40.129901753797597 ], [ -74.993135562469604, 40.129803873709101 ], [ -74.993187971619605, 40.129770302141097 ], [ -74.993279866528198, 40.129742030922898 ], [ -74.993390705921101, 40.129712762089099 ], [ -74.993482776390493, 40.1296801418939 ], [ -74.993526096320196, 40.1296376453788 ], [ -74.993504313597796, 40.1295224821963 ], [ -74.993451132860201, 40.129435589654101 ], [ -74.993418840328602, 40.1291837673961 ], [ -74.993423969865901, 40.129011204655903 ], [ -74.993508006027895, 40.128781035154901 ], [ -74.993661929430701, 40.128761505658197 ], [ -74.993693442698103, 40.128683899217201 ], [ -74.993784802884605, 40.1286222377109 ], [ -74.993813717930706, 40.128515545794201 ], [ -74.993796718359306, 40.128468701311697 ], [ -74.993661856661504, 40.128391461503199 ], [ -74.993688762938106, 40.128217968152398 ], [ -74.993669991077098, 40.128121742662302 ], [ -74.993753790037601, 40.127920590510001 ], [ -74.993895547343996, 40.127758556494399 ], [ -74.994006322892304, 40.127684300138903 ], [ -74.994101753407193, 40.127615481511597 ], [ -74.9942384358053, 40.127508469534398 ], [ -74.994409106291101, 40.127286179961899 ], [ -74.994474490481593, 40.127119413036702 ], [ -74.994528190217807, 40.126961073983999 ], [ -74.994545822310101, 40.1266901319879 ], [ -74.994482429227304, 40.126528986550397 ], [ -74.994428127898203, 40.126423202949397 ], [ -74.994351985472505, 40.126226925030402 ], [ -74.994277619851303, 40.126149682861502 ], [ -74.994154979446705, 40.126097405616797 ], [ -74.993926049778096, 40.126055640167898 ], [ -74.993482827355805, 40.1260072883398 ], [ -74.993148846175401, 40.125945590319198 ], [ -74.992877897264293, 40.12591442566 ], [ -74.992637638021705, 40.125918823114098 ], [ -74.992365450755202, 40.125941320019599 ], [ -74.992045696897193, 40.125994600215598 ], [ -74.991703868321096, 40.1260792765231 ], [ -74.991455523828407, 40.1261429747356 ], [ -74.991068015370203, 40.126212040984001 ], [ -74.990783727206093, 40.126276327104101 ], [ -74.990621901302902, 40.126304369995601 ], [ -74.990397050765395, 40.126258969468601 ], [ -74.990295652692794, 40.126238495263003 ], [ -74.990082953287995, 40.1262391957113 ], [ -74.989742539753607, 40.126242635201201 ], [ -74.9895610617302, 40.126242633317801 ], [ -74.989339569372902, 40.126203940425903 ], [ -74.989157560712997, 40.126170547997297 ], [ -74.989060479303902, 40.126117427188397 ], [ -74.989043602576203, 40.126021246253401 ], [ -74.9890139199874, 40.125914599294298 ], [ -74.988978690483194, 40.125804917732303 ], [ -74.988992975062502, 40.125732702585303 ], [ -74.989068461235405, 40.125643092979999 ], [ -74.989074010055404, 40.125576472750701 ], [ -74.989015232062499, 40.125487992835801 ], [ -74.988940223600494, 40.125426694844798 ], [ -74.9887991778686, 40.125315923396499 ], [ -74.988714729794296, 40.125161525140001 ], [ -74.988696260101406, 40.125104486805498 ], [ -74.988501934883303, 40.124700754339997 ], [ -74.988484411929406, 40.1245740829116 ], [ -74.988391532743805, 40.124278720529702 ], [ -74.988363385417003, 40.124180817186797 ], [ -74.988274926190996, 40.1240785640572 ], [ -74.988209066553495, 40.124024740596603 ], [ -74.988059228826899, 40.123967449548601 ], [ -74.987840694559196, 40.123949140884399 ], [ -74.987708266641206, 40.123905327536903 ], [ -74.987544385551999, 40.123798359851698 ], [ -74.987386939347701, 40.123672680934597 ], [ -74.987316420543294, 40.123594075691301 ], [ -74.987196565741201, 40.123520089803101 ], [ -74.987046728281399, 40.123486016001799 ], [ -74.986845908666297, 40.123334624898398 ], [ -74.986671177113607, 40.1231693486598 ], [ -74.986548727903696, 40.123066276451802 ], [ -74.986492782754098, 40.123047518113999 ], [ -74.986426273744598, 40.123056078442403 ], [ -74.986245032891802, 40.123143144829399 ], [ -74.986038117240398, 40.123257166423798 ], [ -74.985921320545103, 40.123339977428401 ], [ -74.985676042697406, 40.123490806599001 ], [ -74.985529320442893, 40.1236120788584 ], [ -74.9851344888596, 40.123837673701203 ], [ -74.985000163002098, 40.1239099037806 ], [ -74.984866608250897, 40.123940068941998 ], [ -74.984700124970701, 40.123943322108801 ], [ -74.984554183195101, 40.123906435499599 ], [ -74.984456340963305, 40.123848939293801 ], [ -74.984387890753894, 40.123766028882102 ], [ -74.984359632271705, 40.123671024067399 ], [ -74.984307646980795, 40.123601569591003 ], [ -74.984214465697903, 40.123568854600997 ], [ -74.984080264678596, 40.123568529294701 ], [ -74.983976748661206, 40.123603768928099 ], [ -74.983678483898402, 40.123616910916702 ], [ -74.983545225011397, 40.123639826288297 ], [ -74.983439825363604, 40.1236285837605 ], [ -74.983138690100503, 40.123457358691603 ], [ -74.982907365587707, 40.123335700578401 ], [ -74.982820797327904, 40.123279924910101 ], [ -74.982683071482995, 40.123157616159801 ], [ -74.982612683473604, 40.123029672312498 ], [ -74.982586730049604, 40.122924564752402 ], [ -74.982586215462206, 40.1227983014305 ], [ -74.982603513568804, 40.122745025032401 ], [ -74.982739270689706, 40.122545130531499 ], [ -74.9827579892806, 40.122457060327001 ], [ -74.982724128004506, 40.122360469496698 ], [ -74.982635211341005, 40.1222233727771 ], [ -74.982507125589393, 40.121957631694698 ], [ -74.982448648768298, 40.1219083363872 ], [ -74.982327493184798, 40.1219126759555 ], [ -74.982259627415004, 40.121908140266697 ], [ -74.982192123587794, 40.121848469853397 ], [ -74.982194965477007, 40.121778882299097 ], [ -74.9822531636528, 40.121696116311497 ], [ -74.982380005505206, 40.121529384031199 ], [ -74.982389874701795, 40.121426589241402 ], [ -74.982413672687898, 40.121306716583902 ], [ -74.982456229967696, 40.121236634121601 ], [ -74.982601762191806, 40.121190797723202 ], [ -74.982771310482406, 40.121158599099402 ], [ -74.982932423300198, 40.121101526991403 ], [ -74.9830039579318, 40.121016179228803 ], [ -74.983069239623802, 40.120898755335503 ], [ -74.983082528231904, 40.1208047497758 ], [ -74.983079419591107, 40.1206494016362 ], [ -74.983035005723906, 40.120464037227698 ], [ -74.982984563133698, 40.120356888863199 ], [ -74.982923020805202, 40.120290106017798 ], [ -74.982789365315696, 40.1202302948384 ], [ -74.982715900954204, 40.1201777366405 ], [ -74.982674895256906, 40.120117252514497 ], [ -74.982619785531895, 40.120054978239899 ], [ -74.982516285933201, 40.119997343146999 ], [ -74.9823726560343, 40.119950351454499 ], [ -74.982165823018804, 40.119923606279599 ], [ -74.981982709803106, 40.119917747111302 ], [ -74.981834883350402, 40.119927249647397 ], [ -74.981698972335494, 40.119968963594097 ], [ -74.981588728853097, 40.120030160925602 ], [ -74.981508877255195, 40.1200877349929 ], [ -74.981359804235197, 40.120150899620903 ], [ -74.981205482277602, 40.120180560403398 ], [ -74.981053937588996, 40.120188520809002 ], [ -74.980871119899902, 40.120175411619996 ], [ -74.980726779933093, 40.120145814755602 ], [ -74.980413612195306, 40.120084579984301 ], [ -74.980292707526701, 40.120013464502598 ], [ -74.980105979561102, 40.119858284319399 ], [ -74.981212618423896, 40.119109492059103 ], [ -74.982206798524999, 40.118401002502097 ], [ -74.983243942595394, 40.117638268125702 ], [ -74.983616680676903, 40.1173082704763 ], [ -74.984705688360293, 40.116489169886698 ], [ -74.987924346953804, 40.1142532171109 ], [ -74.989681458751505, 40.113070062606297 ], [ -74.9900620166854, 40.112793038064297 ], [ -74.990866354312601, 40.1122311912615 ], [ -74.996798831824094, 40.108126832809702 ], [ -74.996832633661597, 40.108103445121998 ], [ -74.996943105933795, 40.108027519661299 ], [ -74.996959718813599, 40.108016285651303 ], [ -74.999047401092, 40.106604453888998 ], [ -74.999053298511797, 40.106600387042498 ], [ -75.001648063974699, 40.104810600228802 ], [ -75.002242763539996, 40.104404090297002 ], [ -75.003135702869201, 40.103793701443003 ], [ -75.005282134948999, 40.102300294655002 ], [ -75.0062411556885, 40.101644794720798 ], [ -75.008498659374794, 40.100088505499698 ], [ -75.009488281706894, 40.0994159993446 ], [ -75.011700021425696, 40.097897830387303 ], [ -75.012155740234405, 40.097577780448901 ], [ -75.012758716571994, 40.097145873808799 ], [ -75.013347366591702, 40.096678990998299 ], [ -75.013902994709596, 40.096223473743201 ], [ -75.014728307260896, 40.095394537165703 ], [ -75.014950282214201, 40.095181024197203 ], [ -75.015255961153898, 40.094859234501101 ], [ -75.015369646316799, 40.094743572653996 ], [ -75.015530614465206, 40.094869449041497 ], [ -75.015618377162099, 40.094931395666499 ], [ -75.018235021006106, 40.097114169974503 ], [ -75.018877824703395, 40.097646912212703 ], [ -75.019728746366994, 40.098355983256504 ], [ -75.021851094247197, 40.100110289887297 ], [ -75.021860603569294, 40.100118149282402 ], [ -75.022089087812404, 40.100221261655001 ], [ -75.0222945457284, 40.100286055031397 ], [ -75.022791806724697, 40.100424344204797 ], [ -75.023928778625105, 40.100711979890299 ], [ -75.024066616181102, 40.100746849142098 ], [ -75.025658168166999, 40.101151400095702 ], [ -75.026969978928904, 40.101515354036401 ], [ -75.027637861079, 40.101774988085502 ], [ -75.027914749909201, 40.101958239887097 ], [ -75.028886329530806, 40.102552348587601 ], [ -75.028398685443804, 40.103562094709297 ], [ -75.027714559896594, 40.105088967126903 ], [ -75.027050876612705, 40.106657353198599 ], [ -75.026307529277304, 40.108333904256597 ], [ -75.025588071364098, 40.109321475230097 ], [ -75.025144256116405, 40.109964814034697 ], [ -75.024765909037598, 40.110561629178299 ], [ -75.024308643617402, 40.111191092653598 ], [ -75.023044566203694, 40.113007190970499 ], [ -75.024702379511297, 40.113973693029301 ], [ -75.026250953805501, 40.114892233431902 ], [ -75.026921773161902, 40.115282165097597 ], [ -75.027233194043404, 40.115431221812401 ], [ -75.027735445936102, 40.115607466046797 ], [ -75.0280639139106, 40.115709541329799 ], [ -75.029233612493798, 40.115979439724299 ], [ -75.030061828960697, 40.1163080124904 ], [ -75.0304415834905, 40.1165506152334 ], [ -75.030174445170502, 40.116812935274297 ], [ -75.031710725005496, 40.118688562587501 ], [ -75.030482971438005, 40.120763420870297 ], [ -75.030311689858706, 40.121232169199203 ], [ -75.030567885478305, 40.121306699602997 ], [ -75.030845110500906, 40.121324195531898 ], [ -75.031072936475795, 40.121329582299602 ], [ -75.031409984253898, 40.121320718192202 ], [ -75.0316267582362, 40.122026026657103 ], [ -75.032145896934196, 40.1219403258604 ], [ -75.032649415516403, 40.121795580931398 ], [ -75.033740511048194, 40.121386037422702 ], [ -75.034875269945303, 40.120983787877002 ], [ -75.036497906998093, 40.1204000549859 ], [ -75.037672512247696, 40.120152664650902 ], [ -75.037910446728503, 40.120176647841703 ], [ -75.031655424052403, 40.124512852239697 ], [ -75.025788718887398, 40.128579046507802 ], [ -75.025357117692295, 40.128898490092404 ], [ -75.024894625083903, 40.129225840383498 ], [ -75.020574017793805, 40.132283704915203 ], [ -75.017952533032101, 40.134857423291201 ], [ -75.014967423862899, 40.137934840149398 ], [ -75.014562405771997, 40.137688766252197 ], [ -75.013870162253994, 40.137267470810002 ], [ -75.012235678029796, 40.136266395119598 ], [ -75.011461067716596, 40.135791950301197 ], [ -75.010623932749098, 40.135279195588303 ], [ -75.010429489751203, 40.135160095343103 ], [ -75.009464935861203, 40.1345792415202 ], [ -75.0090955516321, 40.134364291693998 ], [ -75.008337700585997, 40.133923282058298 ], [ -75.006903519034594, 40.133088668537802 ], [ -75.005960345513202, 40.132540019046601 ], [ -75.003271745302399, 40.130975952416499 ], [ -75.000953453035706, 40.129619386676403 ], [ -74.999741846988101, 40.128915141910703 ], [ -74.998536419910096, 40.128206043304402 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 54, "disday": "6ATHU", "sandis": "6A", "collday": "THU", "Shape__Area": 9322436.171875, "Shape__Length": 18708.748651409249 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.048457434203897, 40.078476429570998 ], [ -75.048185412694295, 40.0784447902357 ], [ -75.047781130538198, 40.078447956576902 ], [ -75.047433269534693, 40.078484130024698 ], [ -75.047072206923502, 40.078437621789497 ], [ -75.046720394565199, 40.078365987130198 ], [ -75.046313173031294, 40.078236022349301 ], [ -75.045955898371403, 40.078094559853199 ], [ -75.045616619493501, 40.0779155035722 ], [ -75.045351001428102, 40.077750852155702 ], [ -75.045183509952196, 40.0776075172219 ], [ -75.045056715065996, 40.077477812243202 ], [ -75.044963639679395, 40.077329892284503 ], [ -75.044895284630002, 40.077182554118103 ], [ -75.044829454794098, 40.076971915435202 ], [ -75.044744368414797, 40.076830519491097 ], [ -75.0446255986284, 40.076733511807603 ], [ -75.044584615794705, 40.076700037206699 ], [ -75.044377190913295, 40.076524080939699 ], [ -75.044202726993703, 40.076348900330899 ], [ -75.0439841276484, 40.076039623267 ], [ -75.043818411372001, 40.075851975647403 ], [ -75.043506111940403, 40.075410602196001 ], [ -75.043448276846703, 40.0752064861164 ], [ -75.0434730498785, 40.075020466869901 ], [ -75.043483605770604, 40.074941204231799 ], [ -75.043582328902005, 40.074740775275401 ], [ -75.043813488828107, 40.074321704341202 ], [ -75.043880512958097, 40.074088848716798 ], [ -75.043890363223198, 40.0738419743817 ], [ -75.043675214095501, 40.073653163228101 ], [ -75.043382624171102, 40.073544895298298 ], [ -75.042998387917905, 40.073459812507103 ], [ -75.042731781828905, 40.073320474066598 ], [ -75.042343098460506, 40.073140243399699 ], [ -75.041855920487805, 40.0729481859901 ], [ -75.041613785418093, 40.072815758620102 ], [ -75.041389900505195, 40.072639408521603 ], [ -75.041322821952207, 40.0724604179821 ], [ -75.041363112297006, 40.072277622034498 ], [ -75.041476041017503, 40.072134554358001 ], [ -75.041814470307898, 40.071920768816099 ], [ -75.042086476781606, 40.071718089468298 ], [ -75.042490159350095, 40.071315757941797 ], [ -75.042763423555797, 40.0710814258345 ], [ -75.042854156226198, 40.070874474015199 ], [ -75.043026873939496, 40.070473035580001 ], [ -75.043577498939101, 40.069488077339898 ], [ -75.043763656853301, 40.069162986814803 ], [ -75.043861454246596, 40.068778791361197 ], [ -75.043889140032206, 40.068291566802799 ], [ -75.043864770798905, 40.068075567405401 ], [ -75.043784307640394, 40.067405219293803 ], [ -75.043680832054605, 40.0671049882285 ], [ -75.043510182845196, 40.066834854841701 ], [ -75.043321036078098, 40.066614973967702 ], [ -75.043120114930005, 40.066483519174902 ], [ -75.042893215393306, 40.066383132871501 ], [ -75.042524740366602, 40.066317427358797 ], [ -75.042148784011999, 40.066232534898603 ], [ -75.041814529135394, 40.066135952594202 ], [ -75.041471922104506, 40.066026760456197 ], [ -75.041342236710705, 40.065985426834096 ], [ -75.0413317548511, 40.065981605277898 ], [ -75.0424526310169, 40.0634815515266 ], [ -75.042912914360301, 40.062416726650298 ], [ -75.044203255454093, 40.059486119802202 ], [ -75.044240186314099, 40.059412445728498 ], [ -75.044277188872996, 40.059365137134499 ], [ -75.044704347126498, 40.058818993546097 ], [ -75.044817751117407, 40.058673998908297 ], [ -75.0449671827934, 40.058512694640598 ], [ -75.045956240052405, 40.057605279107399 ], [ -75.046480873958103, 40.057140560906198 ], [ -75.046858692042903, 40.056747027287699 ], [ -75.0470060606863, 40.056827208910398 ], [ -75.047393300467803, 40.0570397125325 ], [ -75.047405229384097, 40.057040679741903 ], [ -75.047807213152694, 40.057256781521197 ], [ -75.048148095555206, 40.057447530214603 ], [ -75.048554125215503, 40.057659675100801 ], [ -75.048566868589901, 40.057677530758603 ], [ -75.050584449063606, 40.0587786600492 ], [ -75.0520249185642, 40.059544784051099 ], [ -75.052410021439101, 40.059748687813098 ], [ -75.054186314818693, 40.060727070249101 ], [ -75.056148066558805, 40.061841488063799 ], [ -75.057699897522397, 40.062796902852 ], [ -75.059626595933295, 40.063983473001301 ], [ -75.061338343371304, 40.065065880198503 ], [ -75.062183222483995, 40.0656127913688 ], [ -75.062559380138495, 40.065846706420203 ], [ -75.063042556602994, 40.066152880630803 ], [ -75.064059933598003, 40.066778346947999 ], [ -75.065848526758501, 40.067840191543198 ], [ -75.067358276065605, 40.068736444718503 ], [ -75.067837789663002, 40.0689667103061 ], [ -75.067841163301097, 40.068968412728204 ], [ -75.067796654640404, 40.068987517509001 ], [ -75.067498133913602, 40.069116704608803 ], [ -75.067200271090002, 40.069246811865703 ], [ -75.066903105216198, 40.069377860019799 ], [ -75.066606675338505, 40.069509869811299 ], [ -75.0663110168814, 40.069642864599302 ], [ -75.0660155059998, 40.069776160344801 ], [ -75.065719787385802, 40.069909400045802 ], [ -75.065425020731496, 40.070043863242098 ], [ -75.065132381443107, 40.070180846972598 ], [ -75.064843047186798, 40.070321650143399 ], [ -75.064557885901294, 40.0704672481681 ], [ -75.064275443875104, 40.070616114976303 ], [ -75.063995135116599, 40.070767528671702 ], [ -75.063716709591802, 40.070921109492801 ], [ -75.0634399206794, 40.071076480457897 ], [ -75.063164519490101, 40.071233262728299 ], [ -75.062890258238994, 40.071391079290002 ], [ -75.062617083062094, 40.071549898256301 ], [ -75.062345467568903, 40.071710435327503 ], [ -75.062075668478997, 40.071872841587798 ], [ -75.061807931971899, 40.0720372381423 ], [ -75.061542497269002, 40.072203744133702 ], [ -75.0612796095226, 40.072372477043501 ], [ -75.061018693360396, 40.072543039581099 ], [ -75.060759161799893, 40.072715031476001 ], [ -75.060501450434302, 40.072888707115197 ], [ -75.060245998301298, 40.073064322771899 ], [ -75.059993243339505, 40.073242132895601 ], [ -75.059743619973304, 40.073422391856901 ], [ -75.0594974557239, 40.073605299266703 ], [ -75.059254224705199, 40.0737905409839 ], [ -75.059013320247004, 40.073977651398103 ], [ -75.058774184323298, 40.074166180449303 ], [ -75.058536253049397, 40.0743556779356 ], [ -75.058298967228197, 40.0745456937603 ], [ -75.058061764182796, 40.074735776839503 ], [ -75.057824084716003, 40.074925477066998 ], [ -75.057585366079707, 40.075114345149998 ], [ -75.055526720088395, 40.0766794219196 ], [ -75.055377950798501, 40.076792519089103 ], [ -75.0553470981217, 40.076724798478701 ], [ -75.055174869110303, 40.0764926631687 ], [ -75.054986412256596, 40.0762538108659 ], [ -75.054798477486301, 40.076100344492303 ], [ -75.0547866989277, 40.076090726219 ], [ -75.054561511070304, 40.075946052158798 ], [ -75.054315566436102, 40.075908603507301 ], [ -75.054149003823099, 40.075949048522403 ], [ -75.053997160068207, 40.0760341907569 ], [ -75.053967909813693, 40.076147553479103 ], [ -75.053931361886796, 40.076444488875502 ], [ -75.053870029687403, 40.076949932205302 ], [ -75.053779322496794, 40.0771568926437 ], [ -75.053624832981797, 40.077308501073702 ], [ -75.053463485499705, 40.077425099562497 ], [ -75.053254710875805, 40.077489896630503 ], [ -75.052914594679805, 40.077538939622698 ], [ -75.052633165813106, 40.077564014460698 ], [ -75.052344757606093, 40.077557244915702 ], [ -75.052130006200002, 40.0775648760889 ], [ -75.051987906530798, 40.077612228519897 ], [ -75.051867254093693, 40.077742452525797 ], [ -75.051687659793998, 40.077902972413497 ], [ -75.051508316487997, 40.078057162677503 ], [ -75.051229836710405, 40.078215359972504 ], [ -75.050968087416905, 40.078367614283501 ], [ -75.050650167233101, 40.078480531763098 ], [ -75.050391690222696, 40.078550492516399 ], [ -75.0501589446894, 40.078595713454 ], [ -75.049960924057501, 40.078597397537003 ], [ -75.049738936686694, 40.078579510589101 ], [ -75.049410076763294, 40.078552774847303 ], [ -75.048834007863803, 40.0785202281279 ], [ -75.048634194339499, 40.078496988073603 ], [ -75.048457434203897, 40.078476429570998 ] ] ], [ [ [ -75.073016277024493, 40.078790350536501 ], [ -75.071010399700299, 40.0776913856077 ], [ -75.071635586272194, 40.0770897615688 ], [ -75.072244862914701, 40.076467962410199 ], [ -75.072865163783405, 40.075863940489697 ], [ -75.073480661910693, 40.075269287942099 ], [ -75.074725654935605, 40.074058107800802 ], [ -75.075278311269102, 40.073496278702201 ], [ -75.075901955394698, 40.072893854735298 ], [ -75.076583633546605, 40.072236112330302 ], [ -75.077204657934701, 40.071636833946997 ], [ -75.077844973369395, 40.0710032344683 ], [ -75.078420867725399, 40.070422356656202 ], [ -75.079039841137302, 40.069812281002498 ], [ -75.079663666719597, 40.069212694064099 ], [ -75.080274201555795, 40.0686100740553 ], [ -75.080967424000406, 40.0679836146276 ], [ -75.081589397566106, 40.067331053417703 ], [ -75.082138165141004, 40.066773239167603 ], [ -75.082693542773399, 40.066250251437701 ], [ -75.083097396965798, 40.065847197371198 ], [ -75.083259000155394, 40.065691660904598 ], [ -75.083350674205803, 40.065619833160603 ], [ -75.083520520349097, 40.065543952788197 ], [ -75.083522257191007, 40.064242629187497 ], [ -75.0835174186643, 40.063765906232099 ], [ -75.083516775998902, 40.063734314479802 ], [ -75.083481317994995, 40.061991004172803 ], [ -75.083586876191404, 40.061763884072398 ], [ -75.083650059083894, 40.061658148551501 ], [ -75.083836021615895, 40.061481921324699 ], [ -75.084782037495998, 40.062053409851899 ], [ -75.085732619141694, 40.062598738976703 ], [ -75.085742620662401, 40.062604476220997 ], [ -75.086570535455095, 40.063099146469803 ], [ -75.086991952831795, 40.063330345648303 ], [ -75.087067087918697, 40.063371564980898 ], [ -75.087466289175197, 40.063593396585702 ], [ -75.087898771696999, 40.0638450472089 ], [ -75.088766844311095, 40.064350145300999 ], [ -75.089447930933801, 40.064745601313597 ], [ -75.090372342235895, 40.065284286989097 ], [ -75.091960362211097, 40.066208211138203 ], [ -75.093246250303096, 40.066956318492501 ], [ -75.096740029898797, 40.068988782062398 ], [ -75.094044358544906, 40.071641381816903 ], [ -75.093855262478399, 40.071827857277199 ], [ -75.093822309473197, 40.071860353640801 ], [ -75.089962429079407, 40.075669256460102 ], [ -75.089521706815404, 40.076104122201201 ], [ -75.089192509288495, 40.076416871679001 ], [ -75.087940065722407, 40.0776067050625 ], [ -75.086949449761207, 40.078668588368402 ], [ -75.0868785513955, 40.078615109865098 ], [ -75.083417459775106, 40.081962544211699 ], [ -75.082459629714194, 40.082893223502701 ], [ -75.081683850145296, 40.083646989308498 ], [ -75.078846758802598, 40.082057386982498 ], [ -75.0778705894692, 40.081510412426901 ], [ -75.077124709547107, 40.081089252111099 ], [ -75.076261202414699, 40.0806148326946 ], [ -75.075170222959898, 40.080000173050699 ], [ -75.074637457959, 40.079700005799502 ], [ -75.073706987181296, 40.079191452953097 ], [ -75.073016277024493, 40.078790350536501 ] ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 55, "disday": "6ATUE", "sandis": "6A", "collday": "TUE", "Shape__Area": 12900054.30078125, "Shape__Length": 15959.700229489363 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.0316267582362, 40.122026026657103 ], [ -75.031409984253898, 40.121320718192202 ], [ -75.031072936475795, 40.121329582299602 ], [ -75.030845110500906, 40.121324195531898 ], [ -75.030567885478305, 40.121306699602997 ], [ -75.030311689858706, 40.121232169199203 ], [ -75.030482971438005, 40.120763420870297 ], [ -75.031710725005496, 40.118688562587501 ], [ -75.030174445170502, 40.116812935274297 ], [ -75.0304415834905, 40.1165506152334 ], [ -75.030061828960697, 40.1163080124904 ], [ -75.029233612493798, 40.115979439724299 ], [ -75.0280639139106, 40.115709541329799 ], [ -75.027735445936102, 40.115607466046797 ], [ -75.027233194043404, 40.115431221812401 ], [ -75.026921773161902, 40.115282165097597 ], [ -75.026250953805501, 40.114892233431902 ], [ -75.024702379511297, 40.113973693029301 ], [ -75.023044566203694, 40.113007190970499 ], [ -75.024308643617402, 40.111191092653598 ], [ -75.024765909037598, 40.110561629178299 ], [ -75.025144256116405, 40.109964814034697 ], [ -75.025588071364098, 40.109321475230097 ], [ -75.026307529277304, 40.108333904256597 ], [ -75.027050876612705, 40.106657353198599 ], [ -75.027714559896594, 40.105088967126903 ], [ -75.028398685443804, 40.103562094709297 ], [ -75.028886329530806, 40.102552348587601 ], [ -75.029866220394794, 40.1004105853537 ], [ -75.030147147601099, 40.099766331367498 ], [ -75.030480582225394, 40.0980980214608 ], [ -75.030575530348102, 40.097164288595501 ], [ -75.030623373832498, 40.096782394178 ], [ -75.030727248392196, 40.095544179066501 ], [ -75.030727660533401, 40.095540016946998 ], [ -75.030794927871199, 40.0948608060149 ], [ -75.030840639847995, 40.094550273040198 ], [ -75.030901840383606, 40.094358724458999 ], [ -75.030933482419599, 40.094225530700101 ], [ -75.030930306615403, 40.094060583860298 ], [ -75.031045857463397, 40.093903913812397 ], [ -75.031107669336805, 40.093821903320602 ], [ -75.031302738955105, 40.093501250970199 ], [ -75.032707279869996, 40.091033265680103 ], [ -75.033549863868203, 40.089591612245997 ], [ -75.033960587272801, 40.088978031383 ], [ -75.034634181427904, 40.088268490258002 ], [ -75.035472710788198, 40.087393781228698 ], [ -75.035818474011904, 40.087008453288099 ], [ -75.036271760612905, 40.086583481310498 ], [ -75.036760491914507, 40.086202148774198 ], [ -75.0372330339641, 40.085729231495002 ], [ -75.037500696187706, 40.085468764770802 ], [ -75.037850779932498, 40.085729861664902 ], [ -75.038183126273395, 40.085896839667498 ], [ -75.038644303431795, 40.086139190281301 ], [ -75.039151948815103, 40.086397101282103 ], [ -75.039614289443307, 40.086610540780597 ], [ -75.040336606973099, 40.086916910074898 ], [ -75.041069132934695, 40.087177511317201 ], [ -75.041491357274197, 40.087347212122303 ], [ -75.041672176269699, 40.087419886796603 ], [ -75.042245262732905, 40.087615305181899 ], [ -75.042610270913897, 40.087756217823497 ], [ -75.043718583539999, 40.088205189093998 ], [ -75.044141096318199, 40.088388233863 ], [ -75.044338155330607, 40.088491966286497 ], [ -75.045686995081496, 40.089030572471003 ], [ -75.045816927335807, 40.0892406755924 ], [ -75.046027429966799, 40.089520208312798 ], [ -75.046343476961695, 40.090021888547703 ], [ -75.047055627818196, 40.091089215200398 ], [ -75.047509849520495, 40.091765544239003 ], [ -75.047550156324206, 40.091844354900402 ], [ -75.0475694094809, 40.091929190549898 ], [ -75.048125567715601, 40.092414672222098 ], [ -75.048690491948804, 40.092923355302801 ], [ -75.050754633431296, 40.094789181115402 ], [ -75.051488512799096, 40.094100276474101 ], [ -75.052102582150695, 40.093519467929497 ], [ -75.052626931327097, 40.0930235090715 ], [ -75.052651000338102, 40.0930020829597 ], [ -75.052677667775001, 40.093018086849199 ], [ -75.052780142207794, 40.093085878395698 ], [ -75.052848763520004, 40.093123387944203 ], [ -75.052944165099106, 40.093180116146499 ], [ -75.052993232426203, 40.093205627133202 ], [ -75.053044825378606, 40.093230556711099 ], [ -75.053084165442996, 40.093248787861597 ], [ -75.053127674758201, 40.093267116813401 ], [ -75.053155595269303, 40.093278669990902 ], [ -75.053175379957196, 40.093284903543697 ], [ -75.053200269157401, 40.093288692473898 ], [ -75.053262583025997, 40.093295924657703 ], [ -75.053368764122695, 40.093312518756498 ], [ -75.053481284724498, 40.093337594328503 ], [ -75.053561511745301, 40.093356143786401 ], [ -75.053626550339999, 40.093378824119803 ], [ -75.053679887980493, 40.093401871499402 ], [ -75.053728350406004, 40.093421598585103 ], [ -75.053789798562406, 40.093450605538301 ], [ -75.053852710987996, 40.093484774645397 ], [ -75.053912365170405, 40.093516944468298 ], [ -75.054058273782303, 40.0936049854215 ], [ -75.054209237516304, 40.093691862544397 ], [ -75.054426349853003, 40.093815548499002 ], [ -75.056152185380398, 40.0945779074518 ], [ -75.062250149552298, 40.094660330318298 ], [ -75.062395956715804, 40.0947620583418 ], [ -75.062557724381193, 40.094857113156301 ], [ -75.062823181034503, 40.095013266550097 ], [ -75.062934396355899, 40.095067905028102 ], [ -75.063310864082595, 40.094917094798099 ], [ -75.063525601049193, 40.094853658584 ], [ -75.063782356560296, 40.094800983769098 ], [ -75.064012052213499, 40.094765188754899 ], [ -75.064238030014295, 40.0947627341504 ], [ -75.064931782629003, 40.094728600527603 ], [ -75.064997814982107, 40.095052350608903 ], [ -75.065064299873796, 40.095247156933297 ], [ -75.065240557171094, 40.095785496140202 ], [ -75.065292851537095, 40.095965908330498 ], [ -75.065347222872902, 40.096177046727298 ], [ -75.065456600128101, 40.096601782753801 ], [ -75.065537524703402, 40.096915865988102 ], [ -75.065558952395193, 40.0971668799817 ], [ -75.065547899322098, 40.0974460408749 ], [ -75.065491668298094, 40.0978777012186 ], [ -75.065412357955495, 40.098270689645297 ], [ -75.065238269321796, 40.098650591777698 ], [ -75.065117038736702, 40.098869284968302 ], [ -75.064935369541999, 40.099101593096599 ], [ -75.064244738037104, 40.099815787412801 ], [ -75.063746777644496, 40.1003307267287 ], [ -75.063566857529906, 40.100523382885299 ], [ -75.062822100749699, 40.101291218438803 ], [ -75.061418763823099, 40.102737980875901 ], [ -75.060317383028803, 40.103876775182897 ], [ -75.059554711740503, 40.104665325783898 ], [ -75.059229762899093, 40.105001293000299 ], [ -75.058425917687302, 40.105831981587201 ], [ -75.058293025335502, 40.105924905315199 ], [ -75.055341376695907, 40.107990525626803 ], [ -75.055329341269598, 40.107998947632197 ], [ -75.054274698080107, 40.108736955893697 ], [ -75.054268282513505, 40.1087414449485 ], [ -75.052975053465403, 40.109646374230699 ], [ -75.048564008652903, 40.112724657795397 ], [ -75.048544068182807, 40.112738572692102 ], [ -75.044275129810501, 40.115717255767699 ], [ -75.039045324845702, 40.119365816161299 ], [ -75.038339429335807, 40.119879228547497 ], [ -75.037910446728503, 40.120176647841703 ], [ -75.037672512247696, 40.120152664650902 ], [ -75.036497906998093, 40.1204000549859 ], [ -75.034875269945303, 40.120983787877002 ], [ -75.033740511048194, 40.121386037422702 ], [ -75.032649415516403, 40.121795580931398 ], [ -75.032145896934196, 40.1219403258604 ], [ -75.0316267582362, 40.122026026657103 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 56, "disday": "6AWED", "sandis": "6A", "collday": "WED", "Shape__Area": 16591480.09765625, "Shape__Length": 25834.679116585263 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.022874460837699, 40.086992838037503 ], [ -75.025064469473904, 40.084716333683403 ], [ -75.0263154133482, 40.083426490770002 ], [ -75.026835774334202, 40.082889929897902 ], [ -75.028777215793397, 40.080873874162201 ], [ -75.030410951680594, 40.079186355475102 ], [ -75.032828596495506, 40.076673629646599 ], [ -75.033394240585196, 40.076102132967499 ], [ -75.034952546349402, 40.074467614032997 ], [ -75.036047054414297, 40.073336524165299 ], [ -75.036192162411893, 40.073206264798202 ], [ -75.037363302107295, 40.071960539194798 ], [ -75.038135684374694, 40.071173205690997 ], [ -75.038992542615006, 40.070290499183201 ], [ -75.039191400243595, 40.070042335038103 ], [ -75.039575811943806, 40.069573787661703 ], [ -75.039907287232097, 40.069057165765997 ], [ -75.040110062837996, 40.068710760080698 ], [ -75.040578542663496, 40.067661494863202 ], [ -75.0412079378182, 40.066257759619603 ], [ -75.0413317548511, 40.065981605277898 ], [ -75.041342236710705, 40.065985426834096 ], [ -75.041471922104506, 40.066026760456197 ], [ -75.041814529135394, 40.066135952594202 ], [ -75.042148784011999, 40.066232534898603 ], [ -75.042524740366602, 40.066317427358797 ], [ -75.042893215393306, 40.066383132871501 ], [ -75.043120114930005, 40.066483519174902 ], [ -75.043321036078098, 40.066614973967702 ], [ -75.043510182845196, 40.066834854841701 ], [ -75.043680832054605, 40.0671049882285 ], [ -75.043784307640394, 40.067405219293803 ], [ -75.043864770798905, 40.068075567405401 ], [ -75.043889140032206, 40.068291566802799 ], [ -75.043861454246596, 40.068778791361197 ], [ -75.043763656853301, 40.069162986814803 ], [ -75.043577498939101, 40.069488077339898 ], [ -75.043026873939496, 40.070473035580001 ], [ -75.042854156226198, 40.070874474015199 ], [ -75.042763423555797, 40.0710814258345 ], [ -75.042490159350095, 40.071315757941797 ], [ -75.042086476781606, 40.071718089468298 ], [ -75.041814470307898, 40.071920768816099 ], [ -75.041476041017503, 40.072134554358001 ], [ -75.041363112297006, 40.072277622034498 ], [ -75.041322821952207, 40.0724604179821 ], [ -75.041389900505195, 40.072639408521603 ], [ -75.041613785418093, 40.072815758620102 ], [ -75.041855920487805, 40.0729481859901 ], [ -75.042343098460506, 40.073140243399699 ], [ -75.042731781828905, 40.073320474066598 ], [ -75.042998387917905, 40.073459812507103 ], [ -75.043382624171102, 40.073544895298298 ], [ -75.043675214095501, 40.073653163228101 ], [ -75.043890363223198, 40.0738419743817 ], [ -75.043880512958097, 40.074088848716798 ], [ -75.043813488828107, 40.074321704341202 ], [ -75.043582328902005, 40.074740775275401 ], [ -75.043483605770604, 40.074941204231799 ], [ -75.0434730498785, 40.075020466869901 ], [ -75.043448276846703, 40.0752064861164 ], [ -75.043506111940403, 40.075410602196001 ], [ -75.043818411372001, 40.075851975647403 ], [ -75.0439841276484, 40.076039623267 ], [ -75.044202726993703, 40.076348900330899 ], [ -75.044377190913295, 40.076524080939699 ], [ -75.044584615794705, 40.076700037206699 ], [ -75.0446255986284, 40.076733511807603 ], [ -75.044744368414797, 40.076830519491097 ], [ -75.044829454794098, 40.076971915435202 ], [ -75.044895284630002, 40.077182554118103 ], [ -75.044963639679395, 40.077329892284503 ], [ -75.045056715065996, 40.077477812243202 ], [ -75.045183509952196, 40.0776075172219 ], [ -75.045351001428102, 40.077750852155702 ], [ -75.045616619493501, 40.0779155035722 ], [ -75.045955898371403, 40.078094559853199 ], [ -75.046313173031294, 40.078236022349301 ], [ -75.046720394565199, 40.078365987130198 ], [ -75.047072206923502, 40.078437621789497 ], [ -75.047433269534693, 40.078484130024698 ], [ -75.047781130538198, 40.078447956576902 ], [ -75.048185412694295, 40.0784447902357 ], [ -75.048457434203897, 40.078476429570998 ], [ -75.048634194339499, 40.078496988073603 ], [ -75.048834007863803, 40.0785202281279 ], [ -75.049410076763294, 40.078552774847303 ], [ -75.049738936686694, 40.078579510589101 ], [ -75.049960924057501, 40.078597397537003 ], [ -75.0501589446894, 40.078595713454 ], [ -75.050391690222696, 40.078550492516399 ], [ -75.050650167233101, 40.078480531763098 ], [ -75.050968087416905, 40.078367614283501 ], [ -75.051229836710405, 40.078215359972504 ], [ -75.051508316487997, 40.078057162677503 ], [ -75.051687659793998, 40.077902972413497 ], [ -75.051867254093693, 40.077742452525797 ], [ -75.051987906530798, 40.077612228519897 ], [ -75.052130006200002, 40.0775648760889 ], [ -75.052344757606093, 40.077557244915702 ], [ -75.052633165813106, 40.077564014460698 ], [ -75.052914594679805, 40.077538939622698 ], [ -75.053254710875805, 40.077489896630503 ], [ -75.053463485499705, 40.077425099562497 ], [ -75.053624832981797, 40.077308501073702 ], [ -75.053779322496794, 40.0771568926437 ], [ -75.053870029687403, 40.076949932205302 ], [ -75.053931361886796, 40.076444488875502 ], [ -75.053967909813693, 40.076147553479103 ], [ -75.053997160068207, 40.0760341907569 ], [ -75.054149003823099, 40.075949048522403 ], [ -75.054315566436102, 40.075908603507301 ], [ -75.054561511070304, 40.075946052158798 ], [ -75.0547866989277, 40.076090726219 ], [ -75.054798477486301, 40.076100344492303 ], [ -75.054986412256596, 40.0762538108659 ], [ -75.055174869110303, 40.0764926631687 ], [ -75.0553470981217, 40.076724798478701 ], [ -75.055377950798501, 40.076792519089103 ], [ -75.055526720088395, 40.0766794219196 ], [ -75.057585366079707, 40.075114345149998 ], [ -75.057824084716003, 40.074925477066998 ], [ -75.058061764182796, 40.074735776839503 ], [ -75.058298967228197, 40.0745456937603 ], [ -75.058536253049397, 40.0743556779356 ], [ -75.058774184323298, 40.074166180449303 ], [ -75.059013320247004, 40.073977651398103 ], [ -75.059254224705199, 40.0737905409839 ], [ -75.0594974557239, 40.073605299266703 ], [ -75.059743619973304, 40.073422391856901 ], [ -75.059993243339505, 40.073242132895601 ], [ -75.060245998301298, 40.073064322771899 ], [ -75.060501450434302, 40.072888707115197 ], [ -75.060759161799893, 40.072715031476001 ], [ -75.061018693360396, 40.072543039581099 ], [ -75.0612796095226, 40.072372477043501 ], [ -75.061542497269002, 40.072203744133702 ], [ -75.061807931971899, 40.0720372381423 ], [ -75.062075668478997, 40.071872841587798 ], [ -75.062345467568903, 40.071710435327503 ], [ -75.062617083062094, 40.071549898256301 ], [ -75.062890258238994, 40.071391079290002 ], [ -75.063164519490101, 40.071233262728299 ], [ -75.0634399206794, 40.071076480457897 ], [ -75.063716709591802, 40.070921109492801 ], [ -75.063995135116599, 40.070767528671702 ], [ -75.064275443875104, 40.070616114976303 ], [ -75.064557885901294, 40.0704672481681 ], [ -75.064843047186798, 40.070321650143399 ], [ -75.065132381443107, 40.070180846972598 ], [ -75.065425020731496, 40.070043863242098 ], [ -75.065719787385802, 40.069909400045802 ], [ -75.0660155059998, 40.069776160344801 ], [ -75.0663110168814, 40.069642864599302 ], [ -75.066606675338505, 40.069509869811299 ], [ -75.066903105216198, 40.069377860019799 ], [ -75.067200271090002, 40.069246811865703 ], [ -75.067498133913602, 40.069116704608803 ], [ -75.067796654640404, 40.068987517509001 ], [ -75.067841163301097, 40.068968412728204 ], [ -75.068916747583103, 40.069511163256102 ], [ -75.070414118692895, 40.070229718450399 ], [ -75.071419036268907, 40.070721228696499 ], [ -75.072300597738902, 40.071150257964398 ], [ -75.073163254364701, 40.071575432098101 ], [ -75.074031886825793, 40.071992128319103 ], [ -75.075901955394698, 40.072893854735298 ], [ -75.075278311269102, 40.073496278702201 ], [ -75.074725654935605, 40.074058107800802 ], [ -75.073480661910693, 40.075269287942099 ], [ -75.072865163783405, 40.075863940489697 ], [ -75.072244862914701, 40.076467962410199 ], [ -75.071635586272194, 40.0770897615688 ], [ -75.071010399700299, 40.0776913856077 ], [ -75.073016277024493, 40.078790350536501 ], [ -75.073706987181296, 40.079191452953097 ], [ -75.074637457959, 40.079700005799502 ], [ -75.075170222959898, 40.080000173050699 ], [ -75.076261202414699, 40.0806148326946 ], [ -75.077124709547107, 40.081089252111099 ], [ -75.0778705894692, 40.081510412426901 ], [ -75.078846758802598, 40.082057386982498 ], [ -75.081683850145296, 40.083646989308498 ], [ -75.081190903554898, 40.084125935036397 ], [ -75.077804133068796, 40.085778699805701 ], [ -75.076286788947399, 40.087349936822797 ], [ -75.076212768132294, 40.0874265863362 ], [ -75.071235374932201, 40.0925800992174 ], [ -75.0707105652953, 40.0931234208973 ], [ -75.069457859880202, 40.094420267789403 ], [ -75.0671763431139, 40.096782016861198 ], [ -75.065672024261005, 40.098339122309298 ], [ -75.065671565470495, 40.098339597257301 ], [ -75.065545035392205, 40.098285830313799 ], [ -75.065412357955495, 40.098270689645297 ], [ -75.065491668298094, 40.0978777012186 ], [ -75.065547899322098, 40.0974460408749 ], [ -75.065558952395193, 40.0971668799817 ], [ -75.065537524703402, 40.096915865988102 ], [ -75.065456600128101, 40.096601782753801 ], [ -75.065347222872902, 40.096177046727298 ], [ -75.065292851537095, 40.095965908330498 ], [ -75.065240557171094, 40.095785496140202 ], [ -75.065064299873796, 40.095247156933297 ], [ -75.064997814982107, 40.095052350608903 ], [ -75.064931782629003, 40.094728600527603 ], [ -75.064238030014295, 40.0947627341504 ], [ -75.064012052213499, 40.094765188754899 ], [ -75.063782356560296, 40.094800983769098 ], [ -75.063525601049193, 40.094853658584 ], [ -75.063310864082595, 40.094917094798099 ], [ -75.062934396355899, 40.095067905028102 ], [ -75.062823181034503, 40.095013266550097 ], [ -75.062557724381193, 40.094857113156301 ], [ -75.062395956715804, 40.0947620583418 ], [ -75.062250149552298, 40.094660330318298 ], [ -75.056152185380398, 40.0945779074518 ], [ -75.054426349853003, 40.093815548499002 ], [ -75.054209237516304, 40.093691862544397 ], [ -75.054058273782303, 40.0936049854215 ], [ -75.053912365170405, 40.093516944468298 ], [ -75.053852710987996, 40.093484774645397 ], [ -75.053789798562406, 40.093450605538301 ], [ -75.053728350406004, 40.093421598585103 ], [ -75.053679887980493, 40.093401871499402 ], [ -75.053626550339999, 40.093378824119803 ], [ -75.053561511745301, 40.093356143786401 ], [ -75.053481284724498, 40.093337594328503 ], [ -75.053368764122695, 40.093312518756498 ], [ -75.053262583025997, 40.093295924657703 ], [ -75.053200269157401, 40.093288692473898 ], [ -75.053175379957196, 40.093284903543697 ], [ -75.053155595269303, 40.093278669990902 ], [ -75.053127674758201, 40.093267116813401 ], [ -75.053084165442996, 40.093248787861597 ], [ -75.053044825378606, 40.093230556711099 ], [ -75.052993232426203, 40.093205627133202 ], [ -75.052944165099106, 40.093180116146499 ], [ -75.052848763520004, 40.093123387944203 ], [ -75.052780142207794, 40.093085878395698 ], [ -75.052677667775001, 40.093018086849199 ], [ -75.052651000338102, 40.0930020829597 ], [ -75.052626931327097, 40.0930235090715 ], [ -75.052102582150695, 40.093519467929497 ], [ -75.051488512799096, 40.094100276474101 ], [ -75.050754633431296, 40.094789181115402 ], [ -75.048690491948804, 40.092923355302801 ], [ -75.048125567715601, 40.092414672222098 ], [ -75.0475694094809, 40.091929190549898 ], [ -75.047550156324206, 40.091844354900402 ], [ -75.047509849520495, 40.091765544239003 ], [ -75.047055627818196, 40.091089215200398 ], [ -75.046343476961695, 40.090021888547703 ], [ -75.046027429966799, 40.089520208312798 ], [ -75.045816927335807, 40.0892406755924 ], [ -75.045686995081496, 40.089030572471003 ], [ -75.044338155330607, 40.088491966286497 ], [ -75.044141096318199, 40.088388233863 ], [ -75.043718583539999, 40.088205189093998 ], [ -75.042610270913897, 40.087756217823497 ], [ -75.042245262732905, 40.087615305181899 ], [ -75.041672176269699, 40.087419886796603 ], [ -75.041491357274197, 40.087347212122303 ], [ -75.041069132934695, 40.087177511317201 ], [ -75.040336606973099, 40.086916910074898 ], [ -75.039614289443307, 40.086610540780597 ], [ -75.039151948815103, 40.086397101282103 ], [ -75.038644303431795, 40.086139190281301 ], [ -75.038183126273395, 40.085896839667498 ], [ -75.037850779932498, 40.085729861664902 ], [ -75.037500696187706, 40.085468764770802 ], [ -75.0372330339641, 40.085729231495002 ], [ -75.036760491914507, 40.086202148774198 ], [ -75.036271760612905, 40.086583481310498 ], [ -75.035818474011904, 40.087008453288099 ], [ -75.035472710788198, 40.087393781228698 ], [ -75.034634181427904, 40.088268490258002 ], [ -75.033960587272801, 40.088978031383 ], [ -75.033549863868203, 40.089591612245997 ], [ -75.032707279869996, 40.091033265680103 ], [ -75.031302738955105, 40.093501250970199 ], [ -75.031107669336805, 40.093821903320602 ], [ -75.031045857463397, 40.093903913812397 ], [ -75.030930306615403, 40.094060583860298 ], [ -75.030933482419599, 40.094225530700101 ], [ -75.030901840383606, 40.094358724458999 ], [ -75.030840639847995, 40.094550273040198 ], [ -75.030794927871199, 40.0948608060149 ], [ -75.030727660533401, 40.095540016946998 ], [ -75.030727248392196, 40.095544179066501 ], [ -75.030623373832498, 40.096782394178 ], [ -75.030575530348102, 40.097164288595501 ], [ -75.030480582225394, 40.0980980214608 ], [ -75.030147147601099, 40.099766331367498 ], [ -75.029866220394794, 40.1004105853537 ], [ -75.028886329530806, 40.102552348587601 ], [ -75.027914749909201, 40.101958239887097 ], [ -75.027637861079, 40.101774988085502 ], [ -75.026969978928904, 40.101515354036401 ], [ -75.025658168166999, 40.101151400095702 ], [ -75.024066616181102, 40.100746849142098 ], [ -75.023928778625105, 40.100711979890299 ], [ -75.022791806724697, 40.100424344204797 ], [ -75.0222945457284, 40.100286055031397 ], [ -75.022089087812404, 40.100221261655001 ], [ -75.021860603569294, 40.100118149282402 ], [ -75.021851094247197, 40.100110289887297 ], [ -75.019728746366994, 40.098355983256504 ], [ -75.018877824703395, 40.097646912212703 ], [ -75.018235021006106, 40.097114169974503 ], [ -75.015618377162099, 40.094931395666499 ], [ -75.015530614465206, 40.094869449041497 ], [ -75.015369646316799, 40.094743572653996 ], [ -75.018869364155194, 40.0911288793029 ], [ -75.019747003117303, 40.090216434502103 ], [ -75.020949094133897, 40.0889854738369 ], [ -75.021083704384395, 40.0888261590908 ], [ -75.022874460837699, 40.086992838037503 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 57, "disday": "6BFRI", "sandis": "6B", "collday": "FRI", "Shape__Area": 9625582.93359375, "Shape__Length": 15507.622609798162 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.023773195702702, 40.017076792138297 ], [ -75.024757413843304, 40.016932977080202 ], [ -75.029215609428903, 40.022589512900197 ], [ -75.029648555843906, 40.023138774504702 ], [ -75.030140722689495, 40.023755287905999 ], [ -75.031328530930793, 40.025289571240798 ], [ -75.031635809971803, 40.025685947130199 ], [ -75.031710801768995, 40.025754682378803 ], [ -75.032080703036399, 40.026206889092499 ], [ -75.032754451690394, 40.027059944286897 ], [ -75.033110296074994, 40.027510480257902 ], [ -75.033527432016598, 40.028040421341402 ], [ -75.033942005888306, 40.028571047122497 ], [ -75.0343574554567, 40.029105433124101 ], [ -75.034749981043504, 40.029600303988701 ], [ -75.0351011746599, 40.030051550320799 ], [ -75.035172244242403, 40.030125538130001 ], [ -75.035628138806103, 40.030688524848898 ], [ -75.035739401683401, 40.030833452461401 ], [ -75.036057663005806, 40.031215601159801 ], [ -75.036480662394396, 40.0317418898914 ], [ -75.036908094074803, 40.032261120036303 ], [ -75.037332855331201, 40.032791572836501 ], [ -75.037756675296094, 40.033317234197902 ], [ -75.038197720458399, 40.033837577062101 ], [ -75.038618479399204, 40.0343646619813 ], [ -75.039053397876202, 40.034886118053798 ], [ -75.039476523706398, 40.0354132896015 ], [ -75.040025430982197, 40.036088620991798 ], [ -75.040342938338995, 40.036467463460703 ], [ -75.040755249774193, 40.0368028192295 ], [ -75.041022668470205, 40.036895707139998 ], [ -75.042538215240796, 40.0377319293627 ], [ -75.044195484944893, 40.0386699074025 ], [ -75.045281455572294, 40.039288824977298 ], [ -75.045808608994506, 40.039588497334499 ], [ -75.047426089038396, 40.040506401952101 ], [ -75.049029855087497, 40.041422059936401 ], [ -75.050645980675597, 40.042342947903798 ], [ -75.051428050905301, 40.042797193472197 ], [ -75.052155694505501, 40.043219978175401 ], [ -75.052229965063802, 40.043280545627297 ], [ -75.053115771011207, 40.043773583554398 ], [ -75.054064728438803, 40.044334842471002 ], [ -75.054288833384703, 40.044457277715502 ], [ -75.054436579782106, 40.044537996170298 ], [ -75.052829288906494, 40.046026475591702 ], [ -75.052288458708603, 40.046550785425502 ], [ -75.051981049658195, 40.046946827636297 ], [ -75.051726498296105, 40.047390088452801 ], [ -75.051572387900606, 40.047820437261997 ], [ -75.051453659279503, 40.048359157099704 ], [ -75.051411003677899, 40.048925451014597 ], [ -75.051359473328006, 40.049559829529301 ], [ -75.051203002260706, 40.051455345672601 ], [ -75.051054781568695, 40.052060416622403 ], [ -75.050885200333994, 40.052443225145197 ], [ -75.050644397141795, 40.052844989477698 ], [ -75.050463586371507, 40.053088287501403 ], [ -75.0500429485311, 40.053539975027803 ], [ -75.049620388014304, 40.053955515458398 ], [ -75.049330368149498, 40.054235963002199 ], [ -75.049285420699306, 40.054282453783003 ], [ -75.048206759686096, 40.055377526091398 ], [ -75.046858692042903, 40.056747027287699 ], [ -75.046681442299999, 40.056653233947699 ], [ -75.046539087960696, 40.056576711004404 ], [ -75.046395361276495, 40.0564970289428 ], [ -75.045270559846003, 40.055884606301397 ], [ -75.044498581421905, 40.055465010991803 ], [ -75.043642345705805, 40.055004786633198 ], [ -75.042833706863206, 40.0545723599949 ], [ -75.041985086412296, 40.054104326086801 ], [ -75.041563846190201, 40.0538777077454 ], [ -75.041129023260396, 40.053641616450697 ], [ -75.0406702009778, 40.053392005749103 ], [ -75.040249581427702, 40.053167589268199 ], [ -75.039190383701794, 40.052582400241597 ], [ -75.039129551508694, 40.052549733455301 ], [ -75.038865486817301, 40.052407931597998 ], [ -75.036039388140296, 40.050890252254902 ], [ -75.033049559904796, 40.049264748284997 ], [ -75.032739356263093, 40.049096088361999 ], [ -75.032139602179797, 40.048769992388998 ], [ -75.031988664818599, 40.048660311328398 ], [ -75.031861074086095, 40.048542339543197 ], [ -75.0317413539874, 40.048371498000499 ], [ -75.031672475652101, 40.048223966783198 ], [ -75.031637097451593, 40.048106760305899 ], [ -75.031626505098302, 40.047935495942902 ], [ -75.031614207338905, 40.047863305337202 ], [ -75.031783165167198, 40.0471504079621 ], [ -75.031811438020497, 40.047004554820198 ], [ -75.031846692945606, 40.046824391667897 ], [ -75.031854626999305, 40.046626343968299 ], [ -75.031839807881497, 40.046436376446003 ], [ -75.031778366065197, 40.046150497692302 ], [ -75.031670383891694, 40.045906612251301 ], [ -75.031608853303197, 40.045762943709697 ], [ -75.0315433543675, 40.045690383398103 ], [ -75.030991118065103, 40.044977484132701 ], [ -75.030538633616899, 40.044381344128098 ], [ -75.030164105010897, 40.043904923968498 ], [ -75.029799973393693, 40.043412098983303 ], [ -75.029417068887398, 40.042911802546399 ], [ -75.028943533703298, 40.042295299501703 ], [ -75.028328459935295, 40.041457799750802 ], [ -75.028258771826501, 40.041372930611303 ], [ -75.028193583529401, 40.041281771463403 ], [ -75.027899370035698, 40.040789355760303 ], [ -75.027847946325807, 40.040687253097701 ], [ -75.027583644943903, 40.040056034943397 ], [ -75.027310227958694, 40.039409829860297 ], [ -75.027034250110802, 40.038753514698797 ], [ -75.026617464830295, 40.037856562541897 ], [ -75.0261551073216, 40.036889057289997 ], [ -75.026132326058999, 40.036830234007901 ], [ -75.025865569780507, 40.036265083141203 ], [ -75.025804313839004, 40.036214872281697 ], [ -75.025510877330404, 40.035781420347199 ], [ -75.025185838051897, 40.035289400620897 ], [ -75.024858112194806, 40.034791130352502 ], [ -75.024063021006299, 40.0336092390801 ], [ -75.023897936910103, 40.033455908335696 ], [ -75.023744562723806, 40.033297700357998 ], [ -75.023383690586897, 40.032925451493803 ], [ -75.021763956165699, 40.0312545891246 ], [ -75.012310787633496, 40.021500915455199 ], [ -75.012596261334494, 40.021281184639399 ], [ -75.013678728008699, 40.020607006614703 ], [ -75.014865809760295, 40.019903494418202 ], [ -75.014876225921697, 40.019898468624604 ], [ -75.016279612953298, 40.019221276715797 ], [ -75.018257905886003, 40.0183933877532 ], [ -75.019370742191995, 40.017990326594997 ], [ -75.020416438587006, 40.017712928027002 ], [ -75.022502698022606, 40.017285247319499 ], [ -75.023773195702702, 40.017076792138297 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 58, "disday": "6BMON", "sandis": "6B", "collday": "MON", "Shape__Area": 29814023.46484375, "Shape__Length": 28609.688867644363 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.975672961105005, 40.120198138196102 ], [ -74.975567864826601, 40.120179640215497 ], [ -74.975391354302303, 40.120197148568501 ], [ -74.975227708069099, 40.120223674981098 ], [ -74.975102189298397, 40.120219194579697 ], [ -74.974973672409803, 40.120172558223103 ], [ -74.974807220318198, 40.120082922754101 ], [ -74.974689390700803, 40.1200060707733 ], [ -74.974613582050694, 40.119918622589303 ], [ -74.974537648872001, 40.119857292402202 ], [ -74.974428253185906, 40.119805313132701 ], [ -74.974288870080599, 40.119793241784599 ], [ -74.974077075274394, 40.119795384710798 ], [ -74.973609401246506, 40.119814568362202 ], [ -74.973367868470703, 40.119804383530898 ], [ -74.973112410186104, 40.119788057234302 ], [ -74.972992789186506, 40.119801130976199 ], [ -74.972869214351405, 40.1198184621705 ], [ -74.972772610269899, 40.1198233854237 ], [ -74.9726735363774, 40.119796323187103 ], [ -74.972572349276902, 40.119728577038302 ], [ -74.9725485259507, 40.119664151015797 ], [ -74.972507424179099, 40.119560125588102 ], [ -74.972430132368999, 40.119508918883199 ], [ -74.972240608854904, 40.119428880949698 ], [ -74.972057471372693, 40.119308364169498 ], [ -74.971934694815801, 40.1192139747927 ], [ -74.971860124693606, 40.119142517938101 ], [ -74.971786505547101, 40.119047865264598 ], [ -74.971711486993101, 40.1188951318709 ], [ -74.971604466400606, 40.118808379090503 ], [ -74.9714959661558, 40.118734650544702 ], [ -74.971297910458603, 40.118586200196603 ], [ -74.9712084857549, 40.118462141748601 ], [ -74.971142956602094, 40.1183546231183 ], [ -74.971021466019195, 40.118113697659197 ], [ -74.970915597470594, 40.1179297439541 ], [ -74.970844128240898, 40.117759681620903 ], [ -74.970752104356905, 40.117652974010298 ], [ -74.970615296113493, 40.117532123760903 ], [ -74.970452826015105, 40.117391787347898 ], [ -74.970348320167204, 40.1171977082304 ], [ -74.970269457123706, 40.117092769051901 ], [ -74.970180141401201, 40.117012247505102 ], [ -74.970083614455802, 40.116969281131801 ], [ -74.9699877884389, 40.1169553550708 ], [ -74.969917505543705, 40.116963814525398 ], [ -74.969867339319507, 40.116988721854199 ], [ -74.969814987952205, 40.1170208335447 ], [ -74.969739217889298, 40.117024806256197 ], [ -74.969647286241198, 40.117008071726197 ], [ -74.969593596484998, 40.116980652425497 ], [ -74.969480670558099, 40.116922777283499 ], [ -74.969326560217496, 40.116855199970701 ], [ -74.969204007551994, 40.116824664486799 ], [ -74.969087691770298, 40.116849423377197 ], [ -74.968918147759396, 40.116881601842501 ], [ -74.968686928633304, 40.116942763389098 ], [ -74.968441241021793, 40.117034047780301 ], [ -74.9683213114089, 40.117100802971301 ], [ -74.968218019948594, 40.117176666687698 ], [ -74.968126301930795, 40.117223787738503 ], [ -74.968036227658402, 40.117299971055502 ], [ -74.967891911743607, 40.117408218515799 ], [ -74.967733721916602, 40.117532093477003 ], [ -74.9675652740315, 40.117629598891497 ], [ -74.967517573698998, 40.117686491617803 ], [ -74.967485193941599, 40.117807605794702 ], [ -74.967463156281099, 40.117883984287197 ], [ -74.967355149412398, 40.117936514392802 ], [ -74.967123942332407, 40.117951235640803 ], [ -74.966951374693394, 40.118010909974601 ], [ -74.966722752090405, 40.118054716456797 ], [ -74.966534320620099, 40.118086434345798 ], [ -74.966385483822293, 40.118120562040403 ], [ -74.966080886035002, 40.118242341330699 ], [ -74.965921236742901, 40.118309583231301 ], [ -74.965774407179893, 40.118340856402497 ], [ -74.965593688419801, 40.118414843137899 ], [ -74.9654319122358, 40.1184878375783 ], [ -74.965334220295205, 40.118565286046703 ], [ -74.9652619099693, 40.1186230326554 ], [ -74.965149357153706, 40.118671097594202 ], [ -74.964994632971496, 40.118664448058098 ], [ -74.964837085315907, 40.118634511126899 ], [ -74.964734656691803, 40.118597202002199 ], [ -74.964628988854997, 40.118546754196302 ], [ -74.964535484186896, 40.118476284468599 ], [ -74.964489366348104, 40.118402609476703 ], [ -74.9645090796067, 40.1182449102552 ], [ -74.964489237579599, 40.1181297872158 ], [ -74.964418481480195, 40.117988762189597 ], [ -74.964334276828694, 40.1178299963128 ], [ -74.9642820743763, 40.117628471282799 ], [ -74.964207220839199, 40.117403178657803 ], [ -74.964146985964703, 40.117332903638797 ], [ -74.964117036037194, 40.117297960751202 ], [ -74.963998807431594, 40.117231245506098 ], [ -74.963830906497293, 40.117131400726997 ], [ -74.963736272294994, 40.117088474795203 ], [ -74.963576372874101, 40.117046870541202 ], [ -74.963443616505998, 40.117011727630299 ], [ -74.963379016669506, 40.116973883199798 ], [ -74.963295254416906, 40.1168963921372 ], [ -74.963221192534405, 40.1167668946634 ], [ -74.963175552083001, 40.116682727749897 ], [ -74.963151550616502, 40.116506900208599 ], [ -74.963142226358897, 40.1163659105923 ], [ -74.963156455545402, 40.116203725526901 ], [ -74.963134073011503, 40.116104503983003 ], [ -74.963115468259701, 40.1160053739925 ], [ -74.963112156116694, 40.115879041839797 ], [ -74.963147595283402, 40.115798635792203 ], [ -74.963250094076798, 40.115650198517002 ], [ -74.963317591659205, 40.115525583359101 ], [ -74.963330768912996, 40.115480916698402 ], [ -74.963395929929007, 40.1152981978301 ], [ -74.963414373616899, 40.115217379837397 ], [ -74.963349734349904, 40.115134548378002 ], [ -74.963261265103498, 40.1150337243322 ], [ -74.963237452274498, 40.114969296359803 ], [ -74.963146187892306, 40.114775530992198 ], [ -74.963090891736002, 40.114649390522104 ], [ -74.963112396782805, 40.114586060884299 ], [ -74.963249519067901, 40.114468937056998 ], [ -74.963457744326803, 40.114208420398398 ], [ -74.963670430468596, 40.114000252933302 ], [ -74.964001642036393, 40.113690474116297 ], [ -74.964091973519501, 40.1135620578439 ], [ -74.964139215033498, 40.113470328084702 ], [ -74.964157071037306, 40.113380788701697 ], [ -74.964138166460103, 40.113288907040399 ], [ -74.964035589956396, 40.113047961194503 ], [ -74.964022682541994, 40.1130176436657 ], [ -74.963920164043003, 40.112637856550997 ], [ -74.963879175506307, 40.112439505209899 ], [ -74.963884227939403, 40.1122016365468 ], [ -74.963880705066501, 40.112011448454297 ], [ -74.963850412685204, 40.111920742403598 ], [ -74.963784811311498, 40.111746464138001 ], [ -74.963777296174598, 40.111653407648497 ], [ -74.963796571510002, 40.1115522932933 ], [ -74.9638524191285, 40.111481087774202 ], [ -74.963935892363097, 40.111381529006003 ], [ -74.964046531123401, 40.1112187775569 ], [ -74.964105595673701, 40.1110692872603 ], [ -74.964121452758704, 40.110959382982202 ], [ -74.964121489765404, 40.110866509504 ], [ -74.964040832529406, 40.110713634659 ], [ -74.963903175715302, 40.110568084728698 ], [ -74.9638393756954, 40.1104649572911 ], [ -74.963841062301, 40.110377927578298 ], [ -74.963813154223004, 40.110229233109798 ], [ -74.963746889426204, 40.110094119997498 ], [ -74.963710595022306, 40.109965537835798 ], [ -74.963710513409694, 40.109875563815997 ], [ -74.963771923582001, 40.109760958765598 ], [ -74.963891524492198, 40.109610033191998 ], [ -74.963978533210593, 40.109516364814603 ], [ -74.964075319905405, 40.109460663887397 ], [ -74.964235109920097, 40.109435512037997 ], [ -74.964409848768398, 40.109506498871397 ], [ -74.964509338955907, 40.109476984257299 ], [ -74.964602826758806, 40.1094095926669 ], [ -74.964680153766807, 40.109321493942801 ], [ -74.9647385004494, 40.1091894000972 ], [ -74.964765208010405, 40.109091368010098 ], [ -74.964810319741204, 40.109005391154803 ], [ -74.964877491445904, 40.108934460419903 ], [ -74.9649361589032, 40.108886541563699 ], [ -74.965059496063901, 40.108828580629101 ], [ -74.9651181633009, 40.108780661679702 ], [ -74.965206240127799, 40.108660897140901 ], [ -74.965387242110907, 40.108395364140399 ], [ -74.965516633985999, 40.108235967986303 ], [ -74.965576040334597, 40.108160064121499 ], [ -74.965592429466099, 40.108139124557503 ], [ -74.965609201265494, 40.1080988978118 ], [ -74.965562136524895, 40.108048418932903 ], [ -74.9655041020645, 40.1079889664069 ], [ -74.965432391361006, 40.1078943553036 ], [ -74.965368947679707, 40.107782530265801 ], [ -74.965295844669996, 40.107629838308398 ], [ -74.965212484582494, 40.1074507775893 ], [ -74.9651236824525, 40.107312217007099 ], [ -74.9650573994289, 40.107223541809603 ], [ -74.964979056375896, 40.107198425282697 ], [ -74.964726538311893, 40.107180699645497 ], [ -74.964421753746905, 40.107147194469903 ], [ -74.964195787570503, 40.107127207708999 ], [ -74.963958494550795, 40.107106946025503 ], [ -74.963710706592806, 40.107066113034897 ], [ -74.963517334092799, 40.1069888686418 ], [ -74.9633366000904, 40.106880004348803 ], [ -74.963250029024906, 40.106779226883098 ], [ -74.963201217291399, 40.106679364603004 ], [ -74.963219977436694, 40.106648972017901 ], [ -74.963270058309305, 40.106567841414297 ], [ -74.963374035838896, 40.106521022510897 ], [ -74.963397195991803, 40.1065128209273 ], [ -74.9634660904631, 40.1064884254126 ], [ -74.963596261459102, 40.106448045866301 ], [ -74.963659298396294, 40.106385721811897 ], [ -74.963670902398903, 40.106287323909697 ], [ -74.963606767508196, 40.106146457490297 ], [ -74.963628746090095, 40.106071529856202 ], [ -74.963693094713094, 40.105977312589502 ], [ -74.963786577293106, 40.105909922518002 ], [ -74.963907802367302, 40.105811278778297 ], [ -74.963963764304395, 40.1057371737108 ], [ -74.963963801524201, 40.105644300198897 ], [ -74.963927948480205, 40.105596993714997 ], [ -74.963797697555194, 40.105547400492497 ], [ -74.963592761920196, 40.1054756796972 ], [ -74.963399632463904, 40.105392636166499 ], [ -74.963184561793597, 40.105291646326002 ], [ -74.962964882595301, 40.105210859930899 ], [ -74.9626936320536, 40.105143335492301 ], [ -74.962556188699097, 40.105084859379801 ], [ -74.962499469673801, 40.1049935120867 ], [ -74.962429317460803, 40.104861206080301 ], [ -74.962433371153296, 40.104762625187 ], [ -74.962467989839894, 40.104656077414397 ], [ -74.962540127816595, 40.104556244928702 ], [ -74.962539332430694, 40.104483667662599 ], [ -74.962378441154598, 40.104352063899498 ], [ -74.962092150178194, 40.104144861074403 ], [ -74.9619930849409, 40.104026365398099 ], [ -74.9617673295879, 40.103817727352201 ], [ -74.961565026237693, 40.1036822156547 ], [ -74.961402825621505, 40.103582504593703 ], [ -74.961228701567904, 40.103497015845001 ], [ -74.961157465435406, 40.103453223017702 ], [ -74.961110738464598, 40.103424497739603 ], [ -74.961020159540894, 40.103329425874101 ], [ -74.960989995322393, 40.103235819580398 ], [ -74.960995243867998, 40.1031082440932 ], [ -74.961024894100404, 40.1030306006488 ], [ -74.961089782917099, 40.1027854762361 ], [ -74.961199242828698, 40.102605284863699 ], [ -74.961202742831702, 40.102428326885502 ], [ -74.961235137006994, 40.102283995745701 ], [ -74.961290662709402, 40.102128617183098 ], [ -74.961294956435907, 40.102024237383802 ], [ -74.961269380886407, 40.101956862772298 ], [ -74.961178208494104, 40.101876288369702 ], [ -74.961101780309505, 40.101804778643199 ], [ -74.961061720786205, 40.101676104004298 ], [ -74.961125792045493, 40.101404838533497 ], [ -74.961226604827999, 40.1012969963354 ], [ -74.961394803699804, 40.101158861815001 ], [ -74.961477910052395, 40.101068003152299 ], [ -74.961643404257401, 40.100903681475003 ], [ -74.961701511109894, 40.100777388022898 ], [ -74.961744276498493, 40.100656527169598 ], [ -74.961768401827399, 40.100529409499501 ], [ -74.961800792682496, 40.100385079053602 ], [ -74.961847134976495, 40.100177234215998 ], [ -74.961854249428498, 40.100096141672502 ], [ -74.961890197691403, 40.099911264488902 ], [ -74.961932723717894, 40.099796202488498 ], [ -74.961977594380997, 40.099716025619699 ], [ -74.962013959824503, 40.099658860421002 ], [ -74.962020358608399, 40.099595164655199 ], [ -74.961986060163596, 40.099510165399899 ], [ -74.961918140161302, 40.099415642746301 ], [ -74.9618160001326, 40.0993260957028 ], [ -74.961739217580103, 40.099263284811101 ], [ -74.961673641603795, 40.099203647137202 ], [ -74.961686637876596, 40.099163330261597 ], [ -74.961730792965596, 40.099100549374697 ], [ -74.961786036238493, 40.099043843022798 ], [ -74.962071091192698, 40.098775034328803 ], [ -74.962094261392394, 40.098671112297097 ], [ -74.962062427340996, 40.0986180987423 ], [ -74.961908385435606, 40.098504074162797 ], [ -74.961724259976805, 40.098386417336101 ], [ -74.961606900316497, 40.098299402360901 ], [ -74.961579200130302, 40.098237781856 ], [ -74.961596925872598, 40.098174359948899 ], [ -74.961660315837506, 40.098103339489001 ], [ -74.961775032622697, 40.098024856847701 ], [ -74.961812707780098, 40.097935798461002 ], [ -74.961808256997102, 40.097860229219002 ], [ -74.961788824491194, 40.097781395145603 ], [ -74.961723488357293, 40.097715959463997 ], [ -74.961619563613397, 40.097669903341902 ], [ -74.961414654048696, 40.097598179527402 ], [ -74.961190987831998, 40.097523097045503 ], [ -74.961060277322503, 40.097485098554401 ], [ -74.960924479421905, 40.097478901520802 ], [ -74.960791264246495, 40.097501789675697 ], [ -74.960679746526495, 40.097548423924103 ], [ -74.960569184179505, 40.097571862380697 ], [ -74.960463351661602, 40.097572196637302 ], [ -74.960078294204706, 40.097469976622499 ], [ -74.959734292243397, 40.097380362159797 ], [ -74.959626951830202, 40.097325515105197 ], [ -74.9594762151238, 40.097223175854801 ], [ -74.959375708908794, 40.097185908613497 ], [ -74.958784147336303, 40.096913238169499 ], [ -74.958758728566593, 40.096904091402202 ], [ -74.958516016272696, 40.0968167550676 ], [ -74.958252376614098, 40.096702966230801 ], [ -74.958168288204305, 40.0966341706403 ], [ -74.958111104603503, 40.096554418077801 ], [ -74.958080111622607, 40.096481107210103 ], [ -74.957996619501401, 40.096397814156298 ], [ -74.957653075728999, 40.096113747038402 ], [ -74.957354888005895, 40.095967191732903 ], [ -74.957209319878899, 40.0959230221601 ], [ -74.957059020995899, 40.095901956359398 ], [ -74.956899737998697, 40.095915500419999 ], [ -74.956640622866004, 40.0959672505616 ], [ -74.956462581999006, 40.095977435840702 ], [ -74.956286691582704, 40.095935431466899 ], [ -74.956187146066796, 40.095874964884899 ], [ -74.956096704782198, 40.095776989662298 ], [ -74.956087887656196, 40.095715826626297 ], [ -74.956109273794098, 40.0956553967753 ], [ -74.956119453180705, 40.095591792180997 ], [ -74.955838118638596, 40.095265696742402 ], [ -74.955760079080207, 40.095141901393497 ], [ -74.955748562434707, 40.095054551421697 ], [ -74.955773962982903, 40.094988415383703 ], [ -74.955880868723199, 40.094732705388701 ], [ -74.956008776385104, 40.094471701057799 ], [ -74.956235175952798, 40.094021536199399 ], [ -74.956392590841901, 40.093732225908802 ], [ -74.956403533995498, 40.093558351834901 ], [ -74.956402673443904, 40.093395799448203 ], [ -74.956382458662304, 40.0932443870471 ], [ -74.9563744060452, 40.093072952772602 ], [ -74.956454735981495, 40.092865936638802 ], [ -74.9566917120369, 40.092479879176402 ], [ -74.9568239377396, 40.092297342829298 ], [ -74.956942568969794, 40.092169620022297 ], [ -74.957065451482805, 40.092030391846897 ], [ -74.957117203187906, 40.091874922564998 ], [ -74.957198699875093, 40.091685348513998 ], [ -74.957286889082098, 40.0915626904698 ], [ -74.957442837139098, 40.091354608571599 ], [ -74.957473323380498, 40.091256669777202 ], [ -74.957643847253493, 40.091153425911102 ], [ -74.957815415937205, 40.090841237962003 ], [ -74.957960774985196, 40.0905690471265 ], [ -74.957979934779502, 40.090470833093697 ], [ -74.957964760350805, 40.090380492155901 ], [ -74.957909253756597, 40.0902601478831 ], [ -74.957824025351698, 40.0901274721327 ], [ -74.957793870243194, 40.090033864890799 ], [ -74.957790857214306, 40.089923502803899 ], [ -74.957828653672905, 40.089831546241399 ], [ -74.957891323453794, 40.089777923696097 ], [ -74.957993749006107, 40.089722365351498 ], [ -74.958067504993593, 40.089674816730302 ], [ -74.958113447996396, 40.089568546149899 ], [ -74.958117268278002, 40.089475764234898 ], [ -74.958109524651306, 40.089388505261802 ], [ -74.958122998699295, 40.089336590911103 ], [ -74.9581552274568, 40.089288033560301 ], [ -74.958234429180095, 40.089199984940898 ], [ -74.958251797515601, 40.0891452628018 ], [ -74.958230505498193, 40.089019944952803 ], [ -74.958182042988497, 40.088728533370997 ], [ -74.958010866379396, 40.088251294821099 ], [ -74.957869942394396, 40.0879112001275 ], [ -74.957714351836103, 40.087652014193203 ], [ -74.957609696035405, 40.087211218358597 ], [ -74.957610577761201, 40.0870980484952 ], [ -74.957638673866398, 40.087058097988397 ], [ -74.958017926157197, 40.086840928586497 ], [ -74.958027715532793, 40.086603175288801 ], [ -74.958034497074195, 40.086484344022601 ], [ -74.958026321701198, 40.086315809253101 ], [ -74.958049732605602, 40.086206089025602 ], [ -74.958082199823906, 40.086151733687203 ], [ -74.958203875382907, 40.086041497977398 ], [ -74.958225540399297, 40.085882395137197 ], [ -74.958216215963006, 40.085649981380797 ], [ -74.958252137208305, 40.085282256457397 ], [ -74.9582988381283, 40.085065715354503 ], [ -74.958341122205098, 40.0849564534998 ], [ -74.9586278253621, 40.084600625144503 ], [ -74.9586799475275, 40.084390019408502 ], [ -74.958630681217997, 40.084301752899798 ], [ -74.958549069638195, 40.084264943319802 ], [ -74.958422638411804, 40.084215434720598 ], [ -74.958366061767705, 40.084121185800001 ], [ -74.958373536790106, 40.084031394995101 ], [ -74.958383831673004, 40.083964890688897 ], [ -74.958423130881002, 40.083928115403403 ], [ -74.958592993551804, 40.083932241046 ], [ -74.958722408106198, 40.0839092628432 ], [ -74.958903562798596, 40.083730814299997 ], [ -74.958965912091998, 40.083593016799 ], [ -74.958984613728603, 40.083459963157097 ], [ -74.958944687221603, 40.083328388134298 ], [ -74.958907819541494, 40.083214301554797 ], [ -74.959018762216701, 40.083089292660198 ], [ -74.959135029261105, 40.082926683142297 ], [ -74.959154780668499, 40.082813971511797 ], [ -74.959132058225407, 40.082723446491798 ], [ -74.959039287504496, 40.082590589157 ], [ -74.959000988086899, 40.082511295284498 ], [ -74.959052108861997, 40.082416759625801 ], [ -74.959103087629302, 40.082371560670701 ], [ -74.959250059796602, 40.082380934299003 ], [ -74.959279758370897, 40.082376769812797 ], [ -74.959666836197897, 40.0823224982055 ], [ -74.959744103499304, 40.082311664458999 ], [ -74.959859728196307, 40.082256424282903 ], [ -74.959954972468395, 40.0821455452582 ], [ -74.960011514445199, 40.082056945540003 ], [ -74.960050765496902, 40.081929766435103 ], [ -74.960073762994696, 40.0817934244021 ], [ -74.960078428944897, 40.081680011246299 ], [ -74.960079712561395, 40.0815431421005 ], [ -74.960061430857607, 40.081459222728 ], [ -74.960040728678095, 40.081328498628601 ], [ -74.960043198916594, 40.081268455998099 ], [ -74.960107424189701, 40.081186539515798 ], [ -74.9601811585988, 40.081084819332702 ], [ -74.960627618432397, 40.080798483435203 ], [ -74.960815901257902, 40.080659474909602 ], [ -74.960883919152394, 40.080591006700899 ], [ -74.960986813981606, 40.080520044561197 ], [ -74.961076680988398, 40.080448767090203 ], [ -74.961122300340094, 40.080396449412198 ], [ -74.961274037271494, 40.080194781967101 ], [ -74.961406551221501, 40.080037724164399 ], [ -74.961523980876805, 40.079930385553801 ], [ -74.961636106008399, 40.079846292003303 ], [ -74.961730040021706, 40.079781790594602 ], [ -74.961750007016505, 40.079768241689699 ], [ -74.961894570980107, 40.079670148275703 ], [ -74.961958085712496, 40.079627049910499 ], [ -74.962016045566202, 40.079591726386397 ], [ -74.962107555813006, 40.079480419952503 ], [ -74.962133244487802, 40.079384210963703 ], [ -74.962130821424196, 40.079337406249998 ], [ -74.962156898044299, 40.079126010621302 ], [ -74.962200505088305, 40.079016881461897 ], [ -74.962270439650794, 40.078901712159301 ], [ -74.962334111539207, 40.0788331368407 ], [ -74.962385924519793, 40.078784359685102 ], [ -74.962392893182994, 40.078777799495299 ], [ -74.962470140500898, 40.078696197670801 ], [ -74.962506936046694, 40.078647004847497 ], [ -74.962535458443696, 40.078587594106502 ], [ -74.962533583581006, 40.078527446077999 ], [ -74.962518682697194, 40.078466982101901 ], [ -74.962481794836194, 40.078412663582696 ], [ -74.962431514507898, 40.078261188056402 ], [ -74.962424315773703, 40.078119105053197 ], [ -74.962431673843199, 40.078045824348798 ], [ -74.962459647593306, 40.077999756945502 ], [ -74.962514085656593, 40.077944314198099 ], [ -74.962630001812201, 40.077873667452899 ], [ -74.963184389846703, 40.077392937295002 ], [ -74.963287457934499, 40.077211789616101 ], [ -74.963395440468403, 40.077122584973502 ], [ -74.963506463355102, 40.077065175365497 ], [ -74.963637689675807, 40.0770449841838 ], [ -74.963780709475103, 40.0770551295996 ], [ -74.964324173691494, 40.077051609326801 ], [ -74.964800156542495, 40.077158456292501 ], [ -74.964913143076501, 40.077183817804503 ], [ -74.964918659058597, 40.077200796151999 ], [ -74.964999033618, 40.077438095371903 ], [ -74.965159299137298, 40.077875351301699 ], [ -74.965320798529405, 40.0783188875902 ], [ -74.966148266122403, 40.080470561858199 ], [ -74.966176689678207, 40.080566119821498 ], [ -74.966377649727406, 40.081043073013397 ], [ -74.966467645003405, 40.081214661623399 ], [ -74.966610213359104, 40.0814665799236 ], [ -74.9667069754138, 40.081716692182603 ], [ -74.967021964486705, 40.0821250828647 ], [ -74.969015256192407, 40.084375195280202 ], [ -74.969327049840999, 40.084662834606902 ], [ -74.970594199221793, 40.085769463714698 ], [ -74.971946759469205, 40.086900437390597 ], [ -74.973766398489602, 40.084543176763702 ], [ -74.974857338878095, 40.085031145924802 ], [ -74.976192216706295, 40.085644451867303 ], [ -74.976350845998795, 40.085713433668197 ], [ -74.976579622461003, 40.085836815972897 ], [ -74.976782161851702, 40.085976403030202 ], [ -74.976954686623998, 40.086110223175901 ], [ -74.9772141987807, 40.086330492478901 ], [ -74.977827501584997, 40.086832452892899 ], [ -74.978414995410006, 40.087312557378098 ], [ -74.978718146866498, 40.087527725539502 ], [ -74.979005623361004, 40.0876728776839 ], [ -74.979306665617898, 40.0877732837506 ], [ -74.979506109911497, 40.087823971005903 ], [ -74.980604471193999, 40.087923868562399 ], [ -74.981201194257594, 40.087967482480799 ], [ -74.981491181844305, 40.088002742252598 ], [ -74.981764021195701, 40.088082355123902 ], [ -74.981969149961898, 40.088167405597403 ], [ -74.982162375924204, 40.088275402187698 ], [ -74.982423182647693, 40.088078483484097 ], [ -74.982618874738094, 40.0879893247862 ], [ -74.982823282752094, 40.087943288028399 ], [ -74.983042392163497, 40.087937793318503 ], [ -74.983192839173597, 40.087957547646504 ], [ -74.9833475244601, 40.088017594086203 ], [ -74.9834838926147, 40.0880986547403 ], [ -74.983564554912306, 40.088175692909502 ], [ -74.983640963168099, 40.088271402361997 ], [ -74.983917889723898, 40.089015623560201 ], [ -74.983929112404297, 40.089082943816798 ], [ -74.983906323146002, 40.089127990273603 ], [ -74.983543595763194, 40.089386166551201 ], [ -74.984181796463503, 40.089915472823897 ], [ -74.984428977000704, 40.089746827860701 ], [ -74.984660548779004, 40.089538877194599 ], [ -74.984879154750701, 40.089312160339702 ], [ -74.985034967950199, 40.089110295119298 ], [ -74.985269978585507, 40.088733715773998 ], [ -74.985851340739202, 40.087690630205401 ], [ -74.986134098037596, 40.087276143517997 ], [ -74.986577726415504, 40.086630308899601 ], [ -74.986659153378099, 40.086523098841099 ], [ -74.986816802600401, 40.0863155294956 ], [ -74.987068587773194, 40.0860589819778 ], [ -74.987641055510494, 40.085582297216099 ], [ -74.988236159521406, 40.085106790762801 ], [ -74.988462148386802, 40.0849262174318 ], [ -74.988777489015504, 40.084713673286998 ], [ -74.9890808968632, 40.084547182569402 ], [ -74.989572655251607, 40.084323426197301 ], [ -74.990158457452793, 40.084061995360898 ], [ -74.990491998920703, 40.083907952907403 ], [ -74.991661344840693, 40.083232728965797 ], [ -74.994350747267603, 40.081690994195398 ], [ -74.995804896942701, 40.080854144993502 ], [ -74.997236394121401, 40.080032185265502 ], [ -74.997463685205503, 40.0798604666846 ], [ -74.997638048105003, 40.079708401899801 ], [ -74.997789208453995, 40.079549772034902 ], [ -74.998491532766906, 40.0787108208185 ], [ -75.000900081805, 40.075834895464801 ], [ -75.001467929976798, 40.075157632953101 ], [ -75.001541039840205, 40.075066913632497 ], [ -75.001633375461907, 40.074951286473997 ], [ -75.001772997900105, 40.074750216077398 ], [ -75.0018767594336, 40.074584361073597 ], [ -75.001953888811002, 40.074427585279501 ], [ -75.002098224421005, 40.0740588981811 ], [ -75.0022545605094, 40.073371645435003 ], [ -75.002341587648502, 40.0730891998207 ], [ -75.002468247682003, 40.0727612493164 ], [ -75.002622761722904, 40.0724920308569 ], [ -75.002831540151007, 40.072189269940203 ], [ -75.003042917325899, 40.071915603012002 ], [ -75.003303372832704, 40.071643109735199 ], [ -75.003609133187993, 40.071371698703302 ], [ -75.003943917751201, 40.071130013608901 ], [ -75.004231518058106, 40.070933653468103 ], [ -75.004835272089295, 40.070582259238101 ], [ -75.007271778509306, 40.069170936847698 ], [ -75.013129416850902, 40.0720807729518 ], [ -75.014090448601195, 40.072651746889399 ], [ -75.015066788259503, 40.073187526375797 ], [ -75.016838205535606, 40.074179292057501 ], [ -75.017146505683797, 40.074351894244003 ], [ -75.021751109020698, 40.076964544076397 ], [ -75.023716338287102, 40.078003832306202 ], [ -75.025380190210996, 40.078952511395798 ], [ -75.028451474494801, 40.080687485761501 ], [ -75.028607656406294, 40.080779189944501 ], [ -75.028777215793397, 40.080873874162201 ], [ -75.026835774334202, 40.082889929897902 ], [ -75.0263154133482, 40.083426490770002 ], [ -75.025064469473904, 40.084716333683403 ], [ -75.022874460837699, 40.086992838037503 ], [ -75.021083704384395, 40.0888261590908 ], [ -75.020949094133897, 40.0889854738369 ], [ -75.019747003117303, 40.090216434502103 ], [ -75.018869364155194, 40.0911288793029 ], [ -75.015369646316799, 40.094743572653996 ], [ -75.015255961153898, 40.094859234501101 ], [ -75.014950282214201, 40.095181024197203 ], [ -75.014728307260896, 40.095394537165703 ], [ -75.013902994709596, 40.096223473743201 ], [ -75.013347366591702, 40.096678990998299 ], [ -75.012758716571994, 40.097145873808799 ], [ -75.012155740234405, 40.097577780448901 ], [ -75.011700021425696, 40.097897830387303 ], [ -75.009488281706894, 40.0994159993446 ], [ -75.008498659374794, 40.100088505499698 ], [ -75.0062411556885, 40.101644794720798 ], [ -75.005282134948999, 40.102300294655002 ], [ -75.003135702869201, 40.103793701443003 ], [ -75.002242763539996, 40.104404090297002 ], [ -75.001648063974699, 40.104810600228802 ], [ -74.999053298511797, 40.106600387042498 ], [ -74.999047401092, 40.106604453888998 ], [ -74.996959718813599, 40.108016285651303 ], [ -74.996943105933795, 40.108027519661299 ], [ -74.996832633661597, 40.108103445121998 ], [ -74.996798831824094, 40.108126832809702 ], [ -74.990866354312601, 40.1122311912615 ], [ -74.9900620166854, 40.112793038064297 ], [ -74.989681458751505, 40.113070062606297 ], [ -74.987924346953804, 40.1142532171109 ], [ -74.984705688360293, 40.116489169886698 ], [ -74.983616680676903, 40.1173082704763 ], [ -74.983243942595394, 40.117638268125702 ], [ -74.982206798524999, 40.118401002502097 ], [ -74.981212618423896, 40.119109492059103 ], [ -74.980105979561102, 40.119858284319399 ], [ -74.9799670238761, 40.119742804897598 ], [ -74.979852125723696, 40.119647318304501 ], [ -74.979763502129401, 40.119572625911402 ], [ -74.979713234731094, 40.119507563584598 ], [ -74.979601126724802, 40.119429402961998 ], [ -74.979470540298195, 40.119387075758901 ], [ -74.979284837295907, 40.119352127411403 ], [ -74.979133649849501, 40.119351386850902 ], [ -74.979009603191699, 40.119380323457399 ], [ -74.978892397507707, 40.1194268378974 ], [ -74.978800799099801, 40.119494285675302 ], [ -74.9786891995074, 40.119542386633803 ], [ -74.978604870425997, 40.119547610588299 ], [ -74.978479831552605, 40.119508318285497 ], [ -74.978368249204706, 40.119463545508097 ], [ -74.978244320628704, 40.119489580911001 ], [ -74.977976975614297, 40.119602131514696 ], [ -74.977738261166294, 40.119661678969898 ], [ -74.977647728681504, 40.119703031433097 ], [ -74.977588349253793, 40.1197683526985 ], [ -74.977549623925896, 40.119837075135202 ], [ -74.977521083479701, 40.120026487832597 ], [ -74.977384166381896, 40.120069624112404 ], [ -74.977248084513903, 40.120069245319101 ], [ -74.977143699755203, 40.120033351917797 ], [ -74.9770424485381, 40.119967058990603 ], [ -74.976930627944299, 40.119928083745002 ], [ -74.976796198060498, 40.119933548922297 ], [ -74.976613074727695, 40.1199741183529 ], [ -74.976400201992604, 40.120048798015503 ], [ -74.976138047082401, 40.120149860297701 ], [ -74.976067395910704, 40.120213458208397 ], [ -74.976030378609394, 40.120286574432598 ], [ -74.976067947936798, 40.120384708568601 ], [ -74.976031464590406, 40.120444776702897 ], [ -74.975932319320506, 40.1204656037349 ], [ -74.975816070173195, 40.1204424829901 ], [ -74.975732754178907, 40.1203998402775 ], [ -74.975733891660298, 40.120325858541001 ], [ -74.975725231636801, 40.120260348353902 ], [ -74.975672961105005, 40.120198138196102 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 59, "disday": "6BTHU", "sandis": "6B", "collday": "THU", "Shape__Area": 21662202.1796875, "Shape__Length": 22819.534881533025 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.980830510447305, 40.062406664962801 ], [ -74.980869598816795, 40.062300758254501 ], [ -74.980913301137505, 40.062188285812397 ], [ -74.9809869825025, 40.062086553047003 ], [ -74.981008978058199, 40.061973556534099 ], [ -74.9810307000118, 40.061867232149197 ], [ -74.9810166033066, 40.061786755830703 ], [ -74.981002913929004, 40.061696273040802 ], [ -74.980954767690704, 40.061598281996901 ], [ -74.980909957765803, 40.061418565063001 ], [ -74.980918655708507, 40.061311926802297 ], [ -74.980936037050199, 40.0612054978195 ], [ -74.980944598780098, 40.061102194735902 ], [ -74.980927387297598, 40.060991592667897 ], [ -74.980918584548604, 40.060887871981699 ], [ -74.980887394931401, 40.0608003058489 ], [ -74.980843999696305, 40.060692412053299 ], [ -74.980768988504707, 40.060613806876702 ], [ -74.980549238153301, 40.060461594347402 ], [ -74.9804825704081, 40.060391537590903 ], [ -74.9804258799157, 40.060290000953103 ], [ -74.980434034900995, 40.060196705270798 ], [ -74.980486281361806, 40.060087777417699 ], [ -74.980558055704293, 40.060032744665598 ], [ -74.980668219061997, 40.059995332209297 ], [ -74.980816907642605, 40.059972203857697 ], [ -74.980935344386495, 40.059945006845901 ], [ -74.981089328624805, 40.059898633844803 ], [ -74.981209671233003, 40.059824736817802 ], [ -74.981312921723699, 40.059743749959402 ], [ -74.981402876018805, 40.0596691204343 ], [ -74.981526212842496, 40.0595218373862 ], [ -74.981612914058601, 40.059420417126702 ], [ -74.981991399156001, 40.058983780222299 ], [ -74.982105371012807, 40.058852965086501 ], [ -74.982187457890902, 40.058758111987601 ], [ -74.9822987070511, 40.058694012006498 ], [ -74.982476841363805, 40.0585881159096 ], [ -74.982610475747805, 40.058507859859702 ], [ -74.982756044673494, 40.058454603303197 ], [ -74.982959679060201, 40.058362677225603 ], [ -74.983329306828793, 40.0581428570122 ], [ -74.983515713005403, 40.058047175751199 ], [ -74.983686917741906, 40.058004551630702 ], [ -74.983841030557898, 40.057954838825303 ], [ -74.983998532591002, 40.0579285802296 ], [ -74.984112759005498, 40.057897939331802 ], [ -74.984209485590299, 40.057870217300497 ], [ -74.984288712452496, 40.0578454123794 ], [ -74.984373368661807, 40.057794026832298 ], [ -74.984540241852301, 40.057644449423897 ], [ -74.984915221796996, 40.057399710663901 ], [ -74.985067030214296, 40.057299855835801 ], [ -74.9851533834196, 40.057206772208403 ], [ -74.985187576767899, 40.057114102966203 ], [ -74.985182701604003, 40.057020494422098 ], [ -74.985168193122306, 40.056950025950499 ], [ -74.985122753080503, 40.056892169613398 ], [ -74.984951434769698, 40.056724435081698 ], [ -74.984821352485298, 40.056611118016797 ], [ -74.984694795101802, 40.056517918187303 ], [ -74.9845904866485, 40.056411899028198 ], [ -74.984495132154507, 40.056299416584601 ], [ -74.984411713098893, 40.056213933541798 ], [ -74.984339355691304, 40.0560702842374 ], [ -74.984296773956899, 40.055942377005103 ], [ -74.984285480455995, 40.055883477111998 ], [ -74.984271690369297, 40.055811551641 ], [ -74.984264923070498, 40.055657795300803 ], [ -74.984261137268206, 40.055537499826698 ], [ -74.984251228936301, 40.055426275788697 ], [ -74.984249213911696, 40.055403652810199 ], [ -74.984253973651803, 40.055286902419802 ], [ -74.9842450305879, 40.0551865171416 ], [ -74.984212343349895, 40.055135645224397 ], [ -74.984179928144897, 40.055078102026897 ], [ -74.984065785255893, 40.055000226503402 ], [ -74.983957635391704, 40.054935011897001 ], [ -74.983921596952698, 40.0549132799555 ], [ -74.983798568011295, 40.054840198340003 ], [ -74.983737263828601, 40.054745230943801 ], [ -74.983681389313105, 40.054623681171002 ], [ -74.983621309709207, 40.054498691647602 ], [ -74.983477123041098, 40.054411744539699 ], [ -74.982792960336596, 40.053927806840399 ], [ -74.982540731646196, 40.053826569132603 ], [ -74.982324237235702, 40.053807998018598 ], [ -74.9822070820465, 40.053778078563099 ], [ -74.982122126472007, 40.0537563821212 ], [ -74.981828859422194, 40.053702570310797 ], [ -74.981592703616002, 40.053633438101798 ], [ -74.981394117154807, 40.053601941105697 ], [ -74.981207192032002, 40.0536041139475 ], [ -74.981011857903894, 40.053599405977003 ], [ -74.980832797100007, 40.053621802145997 ], [ -74.980645328425197, 40.053637316628901 ], [ -74.980492857117099, 40.053646997585197 ], [ -74.980288568097805, 40.053648750335199 ], [ -74.980089030056703, 40.053640600079198 ], [ -74.979838287350205, 40.053609511607199 ], [ -74.979659244945694, 40.053525058418202 ], [ -74.979511813989504, 40.053411315700401 ], [ -74.979382154658197, 40.053287985090002 ], [ -74.979251952085306, 40.053177995980199 ], [ -74.979143043607607, 40.053078538414901 ], [ -74.979008773087699, 40.052961773961599 ], [ -74.978866094384998, 40.052838127785101 ], [ -74.978705098895404, 40.052737412420797 ], [ -74.978556853632597, 40.052643683149299 ], [ -74.9784045401653, 40.052543177693103 ], [ -74.978274628055502, 40.052454277654903 ], [ -74.974785860943598, 40.049324180049098 ], [ -74.975762614998402, 40.048158018053201 ], [ -74.976215735874206, 40.047707605461603 ], [ -74.976641675107302, 40.047415622706701 ], [ -74.977189739361606, 40.047174313482401 ], [ -74.979200299329804, 40.046602385917303 ], [ -74.979893754045804, 40.046348662689702 ], [ -74.980593040825099, 40.045951895969701 ], [ -74.981168892243502, 40.045536241513403 ], [ -74.981746684191506, 40.045072905938802 ], [ -74.982350331825302, 40.044482919047702 ], [ -74.983134951135895, 40.043515480276199 ], [ -74.983829709827901, 40.042720867463899 ], [ -74.984432024023405, 40.0421626569442 ], [ -74.984944491805393, 40.041777275438697 ], [ -74.985561637211305, 40.041362595343202 ], [ -74.986282164182001, 40.040950397874703 ], [ -74.987025303326803, 40.040491015853704 ], [ -74.987708985639898, 40.039966564137302 ], [ -74.992557137019404, 40.0357718004039 ], [ -74.996146264921805, 40.032580681325001 ], [ -74.997731571984801, 40.031171042341803 ], [ -74.998411015156904, 40.030588645852298 ], [ -74.998760693667407, 40.030288907009897 ], [ -74.999760741864606, 40.029612880076897 ], [ -75.000862852679802, 40.028971104779799 ], [ -75.006231600226201, 40.025679146553003 ], [ -75.009693755975306, 40.023470975756702 ], [ -75.010631577748697, 40.022793373993203 ], [ -75.012310787633496, 40.021500915455199 ], [ -75.021763956165699, 40.0312545891246 ], [ -75.023383690586897, 40.032925451493803 ], [ -75.023744562723806, 40.033297700357998 ], [ -75.023897936910103, 40.033455908335696 ], [ -75.024063021006299, 40.0336092390801 ], [ -75.024858112194806, 40.034791130352502 ], [ -75.025185838051897, 40.035289400620897 ], [ -75.025510877330404, 40.035781420347199 ], [ -75.025804313839004, 40.036214872281697 ], [ -75.025865569780507, 40.036265083141203 ], [ -75.026132326058999, 40.036830234007901 ], [ -75.0261551073216, 40.036889057289997 ], [ -75.026617464830295, 40.037856562541897 ], [ -75.027034250110802, 40.038753514698797 ], [ -75.027310227958694, 40.039409829860297 ], [ -75.027583644943903, 40.040056034943397 ], [ -75.027847946325807, 40.040687253097701 ], [ -75.027899370035698, 40.040789355760303 ], [ -75.028193583529401, 40.041281771463403 ], [ -75.028258771826501, 40.041372930611303 ], [ -75.028328459935295, 40.041457799750802 ], [ -75.028943533703298, 40.042295299501703 ], [ -75.029417068887398, 40.042911802546399 ], [ -75.029799973393693, 40.043412098983303 ], [ -75.030164105010897, 40.043904923968498 ], [ -75.030538633616899, 40.044381344128098 ], [ -75.030991118065103, 40.044977484132701 ], [ -75.0315433543675, 40.045690383398103 ], [ -75.031608853303197, 40.045762943709697 ], [ -75.031670383891694, 40.045906612251301 ], [ -75.031778366065197, 40.046150497692302 ], [ -75.031839807881497, 40.046436376446003 ], [ -75.031854626999305, 40.046626343968299 ], [ -75.031846692945606, 40.046824391667897 ], [ -75.031811438020497, 40.047004554820198 ], [ -75.031783165167198, 40.0471504079621 ], [ -75.031614207338905, 40.047863305337202 ], [ -75.031626505098302, 40.047935495942902 ], [ -75.031637097451593, 40.048106760305899 ], [ -75.031672475652101, 40.048223966783198 ], [ -75.0317413539874, 40.048371498000499 ], [ -75.031861074086095, 40.048542339543197 ], [ -75.031988664818599, 40.048660311328398 ], [ -75.032139602179797, 40.048769992388998 ], [ -75.032739356263093, 40.049096088361999 ], [ -75.033049559904796, 40.049264748284997 ], [ -75.0329938432685, 40.049344709117001 ], [ -75.032985542121494, 40.049373521291002 ], [ -75.032964205431099, 40.0494601295728 ], [ -75.0329508402302, 40.049526157114499 ], [ -75.032949413616095, 40.049606370279903 ], [ -75.032946316361205, 40.049683711019497 ], [ -75.032936687397793, 40.049745707313797 ], [ -75.032933906459505, 40.049770530433598 ], [ -75.032922034891499, 40.049799259057302 ], [ -75.032870941432193, 40.049825772381404 ], [ -75.032834416242906, 40.049867734624002 ], [ -75.032801857080898, 40.049922236915002 ], [ -75.032747154869597, 40.049994237404903 ], [ -75.032687601556404, 40.050075822061203 ], [ -75.032685706503102, 40.0500785236461 ], [ -75.032629108948996, 40.050153226564198 ], [ -75.032591688562107, 40.050195254062103 ], [ -75.032544727892201, 40.050230104243902 ], [ -75.032453367776398, 40.050280468164097 ], [ -75.032421519475506, 40.050294905613697 ], [ -75.032405229707607, 40.050300099578898 ], [ -75.032369804601302, 40.050292309010899 ], [ -75.032316692667095, 40.050279981295297 ], [ -75.032292757788895, 40.050275295442198 ], [ -75.032242262264504, 40.050242259404698 ], [ -75.032148860262097, 40.050181908286802 ], [ -75.032025893279794, 40.050286391043699 ], [ -75.031824403129505, 40.050376664983901 ], [ -75.031559808078498, 40.050395747892097 ], [ -75.031388723132594, 40.0503708182191 ], [ -75.0311618141873, 40.050337754229602 ], [ -75.030781106768998, 40.050282276822102 ], [ -75.030091999297298, 40.050196266586298 ], [ -75.029648223330298, 40.050160414628401 ], [ -75.029219905353102, 40.050150271017202 ], [ -75.028963546323297, 40.050169543008103 ], [ -75.028658273835703, 40.050174984189901 ], [ -75.028403947136695, 40.050143614249301 ], [ -75.028249477301799, 40.050089265701097 ], [ -75.0281142763925, 40.049965676907803 ], [ -75.0280230533848, 40.049773432506001 ], [ -75.027906866015499, 40.049586932684498 ], [ -75.027730989948097, 40.0494497071167 ], [ -75.027503916113403, 40.049355620542102 ], [ -75.027018581293703, 40.049328276760598 ], [ -75.0263458121116, 40.049451721799699 ], [ -75.026316145316898, 40.049456887883601 ], [ -75.0258974670149, 40.049529796164101 ], [ -75.025489798477196, 40.0496215059826 ], [ -75.025021927634597, 40.049775146778501 ], [ -75.024609931346703, 40.049974464906597 ], [ -75.024007214036303, 40.050200935349999 ], [ -75.0228746276495, 40.050687278472701 ], [ -75.022588466430193, 40.050832551630101 ], [ -75.022233479059693, 40.051049054700997 ], [ -75.022027901260799, 40.051240591748503 ], [ -75.021823341598306, 40.0514068095111 ], [ -75.021608506083098, 40.051623470928803 ], [ -75.021486315277599, 40.051791643471603 ], [ -75.021348410799703, 40.051940434869302 ], [ -75.021070986354303, 40.052073239493801 ], [ -75.020820817872305, 40.052143329560998 ], [ -75.021177061828695, 40.055014722798802 ], [ -75.021299764643103, 40.055104606344102 ], [ -75.021858398313796, 40.055675539989899 ], [ -75.021975926557204, 40.055824668691699 ], [ -75.022048290037105, 40.055945039884598 ], [ -75.022092776290805, 40.056071022257903 ], [ -75.022125368105606, 40.056201522116197 ], [ -75.022131698377194, 40.056333635736799 ], [ -75.022124332358601, 40.0563828846836 ], [ -75.019050153369307, 40.056400622058902 ], [ -75.016588259764504, 40.056405219995398 ], [ -75.014197853513494, 40.056409633892997 ], [ -75.012830482230797, 40.0564140107426 ], [ -75.012591880201398, 40.056413122175599 ], [ -75.012379264060996, 40.056449192957899 ], [ -75.011962944767006, 40.056521546677402 ], [ -75.011714120176805, 40.056570465632802 ], [ -75.011480058479606, 40.056622021042699 ], [ -75.011244355822896, 40.056676890610703 ], [ -75.010680767495998, 40.056873665975402 ], [ -75.010224438577595, 40.057064578847701 ], [ -75.009755903636105, 40.057286728739001 ], [ -75.009005998560696, 40.057634591327599 ], [ -75.008642320199897, 40.057782259938101 ], [ -75.008802970077696, 40.058410736159701 ], [ -75.008876401510605, 40.058657461269398 ], [ -75.009152908814798, 40.059828917284698 ], [ -75.0088440371335, 40.059892080832697 ], [ -75.008647206236404, 40.059951413962501 ], [ -75.008472924111402, 40.060025513460801 ], [ -75.008311511791902, 40.060124819723498 ], [ -75.008107832573501, 40.060292977226503 ], [ -75.006446748428203, 40.061584487812098 ], [ -75.005651439738799, 40.062213016678299 ], [ -75.004867758410796, 40.062821761443097 ], [ -75.0040868115602, 40.063428654476503 ], [ -75.003316258536202, 40.064037081302899 ], [ -75.0025573737896, 40.064621952788002 ], [ -75.000523322569293, 40.063462972890299 ], [ -75.0004274382772, 40.063418457277002 ], [ -75.000364057467706, 40.063400521362396 ], [ -75.000305813017306, 40.063395492613999 ], [ -75.0001653449374, 40.063407494044903 ], [ -75.000053937494002, 40.063444702453999 ], [ -74.999957208030594, 40.063496336673801 ], [ -74.999608047676205, 40.0638741910685 ], [ -74.999025458137496, 40.064489237489298 ], [ -74.9984225342901, 40.064146170984898 ], [ -74.995307211874405, 40.062373429265101 ], [ -74.994516409491297, 40.061923401837397 ], [ -74.994278703619599, 40.0617909732537 ], [ -74.993953963511899, 40.061637136726503 ], [ -74.993569477170794, 40.061502010113699 ], [ -74.993219470911399, 40.061405481250802 ], [ -74.992815754422097, 40.061340396307799 ], [ -74.992398840927905, 40.061277511664599 ], [ -74.991947449248897, 40.061176026971999 ], [ -74.991711113413203, 40.061104883835398 ], [ -74.991495239648998, 40.0610140863472 ], [ -74.991305148065095, 40.0609339805074 ], [ -74.991102781172501, 40.060833435349601 ], [ -74.990857136718702, 40.060668898448597 ], [ -74.990644029462601, 40.060510179391201 ], [ -74.990512256446607, 40.060446580959997 ], [ -74.990434296177, 40.060405298564099 ], [ -74.988390743981896, 40.0616412655395 ], [ -74.988800893633694, 40.062010740629901 ], [ -74.9889336758295, 40.0619734358581 ], [ -74.989068305861693, 40.061994019310703 ], [ -74.989143020659299, 40.062044389368097 ], [ -74.990172540407798, 40.063044090425898 ], [ -74.990245564901798, 40.0631360546802 ], [ -74.990278410565196, 40.0632166447241 ], [ -74.990291091398205, 40.0637929080793 ], [ -74.990254747370699, 40.0638958685985 ], [ -74.990181972075106, 40.063922133844102 ], [ -74.990091323924602, 40.063930364705101 ], [ -74.989874076590198, 40.063942495296899 ], [ -74.989705606669105, 40.0639766137325 ], [ -74.989477229496899, 40.064049267544497 ], [ -74.988815567915097, 40.064288446390698 ], [ -74.988609909188497, 40.064380520019398 ], [ -74.988438897395895, 40.064477029383298 ], [ -74.988235178007798, 40.064600509704398 ], [ -74.988194152882002, 40.064609932733603 ], [ -74.988134070210805, 40.064617839810801 ], [ -74.988024697147694, 40.064557283871999 ], [ -74.987657320320807, 40.064263942191197 ], [ -74.98690582287, 40.063312541017197 ], [ -74.986863378307802, 40.063218722081103 ], [ -74.986906958893996, 40.063173783257199 ], [ -74.986944461117503, 40.063139988618701 ], [ -74.987457690928096, 40.062831368588398 ], [ -74.9870435237317, 40.062462691318899 ], [ -74.985612654895604, 40.063326336470098 ], [ -74.985579684941698, 40.063354565714398 ], [ -74.984952875879699, 40.063669842550098 ], [ -74.984174623515102, 40.0640846538044 ], [ -74.983735081964795, 40.064268715792899 ], [ -74.983260681565596, 40.064425466091798 ], [ -74.9828264017181, 40.064557876019201 ], [ -74.982357208632195, 40.064681862694201 ], [ -74.981064291878099, 40.064939652000099 ], [ -74.981054190864697, 40.064911298831298 ], [ -74.980968142529505, 40.064677164731101 ], [ -74.980927195871502, 40.064509226952303 ], [ -74.980908243453896, 40.064228294422001 ], [ -74.980914915985295, 40.064064844508202 ], [ -74.980938546367298, 40.0639118195623 ], [ -74.980982793142601, 40.063786003655601 ], [ -74.981021420965504, 40.063584924784799 ], [ -74.981040845229003, 40.063428459997503 ], [ -74.9810848203132, 40.063309316236897 ], [ -74.981097860101499, 40.063202781707403 ], [ -74.981092990178695, 40.063109172121102 ], [ -74.981017448014299, 40.0629370630636 ], [ -74.980935114552494, 40.062824891586402 ], [ -74.980866214148307, 40.062703026607799 ], [ -74.980805111252806, 40.062603053567997 ], [ -74.9808089241982, 40.062509653226599 ], [ -74.980830510447305, 40.062406664962801 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 60, "disday": "6BTUE", "sandis": "6B", "collday": "TUE", "Shape__Area": 10317678.13671875, "Shape__Length": 15231.796581666591 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.983192839173597, 40.087957547646504 ], [ -74.983042392163497, 40.087937793318503 ], [ -74.982823282752094, 40.087943288028399 ], [ -74.982618874738094, 40.0879893247862 ], [ -74.982423182647693, 40.088078483484097 ], [ -74.982162375924204, 40.088275402187698 ], [ -74.981969149961898, 40.088167405597403 ], [ -74.981764021195701, 40.088082355123902 ], [ -74.981491181844305, 40.088002742252598 ], [ -74.981201194257594, 40.087967482480799 ], [ -74.980604471193999, 40.087923868562399 ], [ -74.979506109911497, 40.087823971005903 ], [ -74.979306665617898, 40.0877732837506 ], [ -74.979005623361004, 40.0876728776839 ], [ -74.978718146866498, 40.087527725539502 ], [ -74.978414995410006, 40.087312557378098 ], [ -74.977827501584997, 40.086832452892899 ], [ -74.9772141987807, 40.086330492478901 ], [ -74.976954686623998, 40.086110223175901 ], [ -74.976782161851702, 40.085976403030202 ], [ -74.976579622461003, 40.085836815972897 ], [ -74.976350845998795, 40.085713433668197 ], [ -74.976192216706295, 40.085644451867303 ], [ -74.974857338878095, 40.085031145924802 ], [ -74.973766398489602, 40.084543176763702 ], [ -74.971946759469205, 40.086900437390597 ], [ -74.970594199221793, 40.085769463714698 ], [ -74.969327049840999, 40.084662834606902 ], [ -74.969015256192407, 40.084375195280202 ], [ -74.967021964486705, 40.0821250828647 ], [ -74.9667069754138, 40.081716692182603 ], [ -74.966610213359104, 40.0814665799236 ], [ -74.966467645003405, 40.081214661623399 ], [ -74.966377649727406, 40.081043073013397 ], [ -74.966176689678207, 40.080566119821498 ], [ -74.966148266122403, 40.080470561858199 ], [ -74.965320798529405, 40.0783188875902 ], [ -74.965159299137298, 40.077875351301699 ], [ -74.964999033618, 40.077438095371903 ], [ -74.964918659058597, 40.077200796151999 ], [ -74.964913143076501, 40.077183817804503 ], [ -74.964974509116999, 40.077197592919298 ], [ -74.9650426311281, 40.077204093360599 ], [ -74.965149767001805, 40.077214316287197 ], [ -74.965255933117703, 40.0772244471326 ], [ -74.965442102085305, 40.077242313893201 ], [ -74.965736827324307, 40.077262811356 ], [ -74.966031962411094, 40.077273299855598 ], [ -74.966184146531702, 40.077271978248298 ], [ -74.966298962393196, 40.077228012679399 ], [ -74.966490060376202, 40.077125793083503 ], [ -74.966597696301804, 40.0770449246832 ], [ -74.966670868854294, 40.076956543654198 ], [ -74.966751022937999, 40.076698041487496 ], [ -74.9667755098409, 40.076525005875403 ], [ -74.966822217265005, 40.076446001038001 ], [ -74.966941920336097, 40.076388797525702 ], [ -74.967269364276305, 40.076353319510503 ], [ -74.967552838520106, 40.076330132582697 ], [ -74.9678088917358, 40.076339670352503 ], [ -74.968283421715398, 40.076321106901403 ], [ -74.968745746594195, 40.0762822116709 ], [ -74.968893859388103, 40.076274109250299 ], [ -74.969041631362501, 40.076274345925697 ], [ -74.969127517697103, 40.076299798083099 ], [ -74.969296965550996, 40.076407407188 ], [ -74.969481628954199, 40.076461960508503 ], [ -74.969628579592893, 40.076482211884901 ], [ -74.969750298325295, 40.076481817304597 ], [ -74.969825346295295, 40.076453581254597 ], [ -74.969901624814895, 40.0763953250759 ], [ -74.970012504292697, 40.076341244346601 ], [ -74.970110767014503, 40.076276840200102 ], [ -74.970251905655005, 40.076226830581099 ], [ -74.970369144535695, 40.076229666367503 ], [ -74.970511890209806, 40.076246474639603 ], [ -74.970693851895504, 40.076260892698102 ], [ -74.970838921506797, 40.076220993752202 ], [ -74.970942072627693, 40.076143352353199 ], [ -74.971054864448902, 40.076042570197203 ], [ -74.971171997404298, 40.075941892909803 ], [ -74.971261984295197, 40.075867272291802 ], [ -74.9713489962447, 40.0757591886669 ], [ -74.971382671113105, 40.075679866996197 ], [ -74.971416140921093, 40.075605548514901 ], [ -74.971398256796803, 40.0755116236164 ], [ -74.971350114664205, 40.075413627727201 ], [ -74.971290449385194, 40.075278624606099 ], [ -74.971233349014199, 40.0751870907918 ], [ -74.971237449181203, 40.0750870196037 ], [ -74.971250234496395, 40.0749871584256 ], [ -74.971281343233002, 40.074864367413397 ], [ -74.971320043677395, 40.074768471328603 ], [ -74.971367564603696, 40.074669450037398 ], [ -74.971452797084496, 40.074604730662799 ], [ -74.971593657957499, 40.074561390624801 ], [ -74.971623331063398, 40.074473623718497 ], [ -74.971617243514999, 40.074410035694001 ], [ -74.971576555844607, 40.074342271749501 ], [ -74.971488105058199, 40.074273352955203 ], [ -74.971271853822699, 40.074141241503803 ], [ -74.971080698245601, 40.074033110296199 ], [ -74.9710287618134, 40.073921666787001 ], [ -74.971031905456002, 40.073844945362701 ], [ -74.971043049528703, 40.073785112467398 ], [ -74.971106435538502, 40.0737232044306 ], [ -74.971200350898002, 40.073658695232297 ], [ -74.971539637910098, 40.073439846194503 ], [ -74.971733760518603, 40.073369411861101 ], [ -74.971874208728394, 40.0733360787778 ], [ -74.972014655665404, 40.073302744594301 ], [ -74.972130006342297, 40.073245430692801 ], [ -74.972220535104498, 40.073157465941499 ], [ -74.972272805904893, 40.073048541931399 ], [ -74.972298204468501, 40.072959002770901 ], [ -74.972332833162795, 40.072856330132701 ], [ -74.972414219353496, 40.072460955499103 ], [ -74.972435276304495, 40.0723713104721 ], [ -74.9725018687664, 40.0722310121281 ], [ -74.972575438243993, 40.072132620010599 ], [ -74.972656050768293, 40.072074466916099 ], [ -74.972798134943801, 40.072001103478399 ], [ -74.972918234890301, 40.071933886421903 ], [ -74.973063703676104, 40.071883977351497 ], [ -74.973213513420802, 40.071834173899902 ], [ -74.973381920349297, 40.071754767999202 ], [ -74.973475558889305, 40.071696928201902 ], [ -74.973529982892899, 40.0716414802177 ], [ -74.973567176251905, 40.071582276525 ], [ -74.973604095284699, 40.071529744031203 ], [ -74.973606689689205, 40.071466365905103 ], [ -74.973618105360103, 40.071399861540598 ], [ -74.973633041720205, 40.071353476652497 ], [ -74.973669961749195, 40.071300944165301 ], [ -74.973808178762198, 40.071215799217001 ], [ -74.973977129562499, 40.071123049961201 ], [ -74.974119345645406, 40.071046349687698 ], [ -74.974259923232495, 40.071009677586098 ], [ -74.974417595801, 40.070980096069398 ], [ -74.974612049628206, 40.070901317588103 ], [ -74.974801888887299, 40.070829105177502 ], [ -74.974900002581407, 40.070768032987999 ], [ -74.974981568046999, 40.0706865275857 ], [ -74.975041560586106, 40.070601162702403 ], [ -74.975071705137694, 40.070501720434699 ], [ -74.9750824474295, 40.0704673165597 ], [ -74.975101714322093, 40.070405613358602 ], [ -74.975123584681796, 40.070295954969502 ], [ -74.975121836546407, 40.070232471073702 ], [ -74.9750980618456, 40.070069954729597 ], [ -74.975106361781897, 40.069973324305302 ], [ -74.975165944157595, 40.069897965769101 ], [ -74.975251030542196, 40.069836579632302 ], [ -74.975349005922794, 40.069778843128198 ], [ -74.975459598517304, 40.0697314283967 ], [ -74.975582259059095, 40.069707677806498 ], [ -74.975723925785204, 40.069644318059801 ], [ -74.975968589942497, 40.069506647343303 ], [ -74.976185019389803, 40.069421719024596 ], [ -74.976402266749105, 40.069316775656603 ], [ -74.976609467381294, 40.069244979467001 ], [ -74.976733626909095, 40.069184535335701 ], [ -74.976828691095804, 40.0690916676214 ], [ -74.976872813644405, 40.068969189436601 ], [ -74.976912047122198, 40.068859949811497 ], [ -74.977007337017398, 40.068655230368499 ], [ -74.977079281339797, 40.068490016272101 ], [ -74.977153521961299, 40.068374942630797 ], [ -74.977204962953707, 40.068286030995701 ], [ -74.977271064300396, 40.068157404317198 ], [ -74.9773302335946, 40.068092051975697 ], [ -74.977460436913603, 40.0679900153945 ], [ -74.977628692972203, 40.067913939329699 ], [ -74.977858685835798, 40.0678159787143 ], [ -74.978009847530402, 40.067732810972501 ], [ -74.978161143977403, 40.067646307827303 ], [ -74.978372269666494, 40.067584620496902 ], [ -74.978617992058702, 40.067527106590703 ], [ -74.978882715533601, 40.067429981649397 ], [ -74.979093566188695, 40.0673749642188 ], [ -74.979183124237593, 40.067310343794297 ], [ -74.979413386446893, 40.067205709738701 ], [ -74.979557223166594, 40.067088973389701 ], [ -74.979606888888, 40.067043424283398 ], [ -74.979713743863101, 40.066980890183601 ], [ -74.979781456510196, 40.066919081996403 ], [ -74.979805480528796, 40.066862898325901 ], [ -74.979838459969997, 40.066800251827502 ], [ -74.979845799139099, 40.066726970889803 ], [ -74.979910122981906, 40.066641707198102 ], [ -74.980049344298294, 40.066531537736097 ], [ -74.980165902603403, 40.066444194642997 ], [ -74.980268891999302, 40.066369880009702 ], [ -74.980379338244703, 40.066325795685898 ], [ -74.980515289412594, 40.0662956825498 ], [ -74.980677425332303, 40.066262861886599 ], [ -74.9807539554795, 40.066197926314302 ], [ -74.980858578021994, 40.066083582699697 ], [ -74.980923173501594, 40.065991647207397 ], [ -74.980971558217107, 40.065870940050701 ], [ -74.9809657350593, 40.065800680330597 ], [ -74.980947976454104, 40.0657034216852 ], [ -74.980922352157506, 40.0655859391075 ], [ -74.9809461024157, 40.065536426453598 ], [ -74.980981609998494, 40.0655079613705 ], [ -74.980931997486294, 40.065442489789802 ], [ -74.980769902919207, 40.065211621999303 ], [ -74.980693765009605, 40.0650926452874 ], [ -74.980672060464897, 40.065017854249099 ], [ -74.981064291878099, 40.064939652000099 ], [ -74.982357208632195, 40.064681862694201 ], [ -74.9828264017181, 40.064557876019201 ], [ -74.983260681565596, 40.064425466091798 ], [ -74.983735081964795, 40.064268715792899 ], [ -74.984174623515102, 40.0640846538044 ], [ -74.984952875879699, 40.063669842550098 ], [ -74.985579684941698, 40.063354565714398 ], [ -74.985612654895604, 40.063326336470098 ], [ -74.9870435237317, 40.062462691318899 ], [ -74.987457690928096, 40.062831368588398 ], [ -74.986944461117503, 40.063139988618701 ], [ -74.986906958893996, 40.063173783257199 ], [ -74.986863378307802, 40.063218722081103 ], [ -74.98690582287, 40.063312541017197 ], [ -74.987657320320807, 40.064263942191197 ], [ -74.988024697147694, 40.064557283871999 ], [ -74.988134070210805, 40.064617839810801 ], [ -74.988194152882002, 40.064609932733603 ], [ -74.988235178007798, 40.064600509704398 ], [ -74.988438897395895, 40.064477029383298 ], [ -74.988609909188497, 40.064380520019398 ], [ -74.988815567915097, 40.064288446390698 ], [ -74.989477229496899, 40.064049267544497 ], [ -74.989705606669105, 40.0639766137325 ], [ -74.989874076590198, 40.063942495296899 ], [ -74.990091323924602, 40.063930364705101 ], [ -74.990181972075106, 40.063922133844102 ], [ -74.990254747370699, 40.0638958685985 ], [ -74.990291091398205, 40.0637929080793 ], [ -74.990278410565196, 40.0632166447241 ], [ -74.990245564901798, 40.0631360546802 ], [ -74.990172540407798, 40.063044090425898 ], [ -74.989143020659299, 40.062044389368097 ], [ -74.989068305861693, 40.061994019310703 ], [ -74.9889336758295, 40.0619734358581 ], [ -74.988800893633694, 40.062010740629901 ], [ -74.988390743981896, 40.0616412655395 ], [ -74.990434296177, 40.060405298564099 ], [ -74.990512256446607, 40.060446580959997 ], [ -74.990644029462601, 40.060510179391201 ], [ -74.990857136718702, 40.060668898448597 ], [ -74.991102781172501, 40.060833435349601 ], [ -74.991305148065095, 40.0609339805074 ], [ -74.991495239648998, 40.0610140863472 ], [ -74.991711113413203, 40.061104883835398 ], [ -74.991947449248897, 40.061176026971999 ], [ -74.992398840927905, 40.061277511664599 ], [ -74.992815754422097, 40.061340396307799 ], [ -74.993219470911399, 40.061405481250802 ], [ -74.993569477170794, 40.061502010113699 ], [ -74.993953963511899, 40.061637136726503 ], [ -74.994278703619599, 40.0617909732537 ], [ -74.994516409491297, 40.061923401837397 ], [ -74.995307211874405, 40.062373429265101 ], [ -74.9984225342901, 40.064146170984898 ], [ -74.999025458137496, 40.064489237489298 ], [ -75.000204927419105, 40.0651600689811 ], [ -75.002905378748807, 40.0666913700314 ], [ -75.007271778509306, 40.069170936847698 ], [ -75.004835272089295, 40.070582259238101 ], [ -75.004231518058106, 40.070933653468103 ], [ -75.003943917751201, 40.071130013608901 ], [ -75.003609133187993, 40.071371698703302 ], [ -75.003303372832704, 40.071643109735199 ], [ -75.003042917325899, 40.071915603012002 ], [ -75.002831540151007, 40.072189269940203 ], [ -75.002622761722904, 40.0724920308569 ], [ -75.002468247682003, 40.0727612493164 ], [ -75.002341587648502, 40.0730891998207 ], [ -75.0022545605094, 40.073371645435003 ], [ -75.002098224421005, 40.0740588981811 ], [ -75.001953888811002, 40.074427585279501 ], [ -75.0018767594336, 40.074584361073597 ], [ -75.001772997900105, 40.074750216077398 ], [ -75.001633375461907, 40.074951286473997 ], [ -75.001541039840205, 40.075066913632497 ], [ -75.001467929976798, 40.075157632953101 ], [ -75.000900081805, 40.075834895464801 ], [ -74.998491532766906, 40.0787108208185 ], [ -74.997789208453995, 40.079549772034902 ], [ -74.997638048105003, 40.079708401899801 ], [ -74.997463685205503, 40.0798604666846 ], [ -74.997236394121401, 40.080032185265502 ], [ -74.995804896942701, 40.080854144993502 ], [ -74.994350747267603, 40.081690994195398 ], [ -74.991661344840693, 40.083232728965797 ], [ -74.990491998920703, 40.083907952907403 ], [ -74.990158457452793, 40.084061995360898 ], [ -74.989572655251607, 40.084323426197301 ], [ -74.9890808968632, 40.084547182569402 ], [ -74.988777489015504, 40.084713673286998 ], [ -74.988462148386802, 40.0849262174318 ], [ -74.988236159521406, 40.085106790762801 ], [ -74.987641055510494, 40.085582297216099 ], [ -74.987068587773194, 40.0860589819778 ], [ -74.986816802600401, 40.0863155294956 ], [ -74.986659153378099, 40.086523098841099 ], [ -74.986577726415504, 40.086630308899601 ], [ -74.986134098037596, 40.087276143517997 ], [ -74.985851340739202, 40.087690630205401 ], [ -74.985269978585507, 40.088733715773998 ], [ -74.985034967950199, 40.089110295119298 ], [ -74.984879154750701, 40.089312160339702 ], [ -74.984660548779004, 40.089538877194599 ], [ -74.984428977000704, 40.089746827860701 ], [ -74.984181796463503, 40.089915472823897 ], [ -74.983543595763194, 40.089386166551201 ], [ -74.983906323146002, 40.089127990273603 ], [ -74.983929112404297, 40.089082943816798 ], [ -74.983917889723898, 40.089015623560201 ], [ -74.983640963168099, 40.088271402361997 ], [ -74.983564554912306, 40.088175692909502 ], [ -74.9834838926147, 40.0880986547403 ], [ -74.9833475244601, 40.088017594086203 ], [ -74.983192839173597, 40.087957547646504 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 61, "disday": "6BWED", "sandis": "6B", "collday": "WED", "Shape__Area": 12719494.32421875, "Shape__Length": 15783.544685331792 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.000204927419105, 40.0651600689811 ], [ -74.999025458137496, 40.064489237489298 ], [ -74.999608047676205, 40.0638741910685 ], [ -74.999957208030594, 40.063496336673801 ], [ -75.000053937494002, 40.063444702453999 ], [ -75.0001653449374, 40.063407494044903 ], [ -75.000305813017306, 40.063395492613999 ], [ -75.000364057467706, 40.063400521362396 ], [ -75.0004274382772, 40.063418457277002 ], [ -75.000523322569293, 40.063462972890299 ], [ -75.0025573737896, 40.064621952788002 ], [ -75.003316258536202, 40.064037081302899 ], [ -75.0040868115602, 40.063428654476503 ], [ -75.004867758410796, 40.062821761443097 ], [ -75.005651439738799, 40.062213016678299 ], [ -75.006446748428203, 40.061584487812098 ], [ -75.008107832573501, 40.060292977226503 ], [ -75.008311511791902, 40.060124819723498 ], [ -75.008472924111402, 40.060025513460801 ], [ -75.008647206236404, 40.059951413962501 ], [ -75.0088440371335, 40.059892080832697 ], [ -75.009152908814798, 40.059828917284698 ], [ -75.008876401510605, 40.058657461269398 ], [ -75.008802970077696, 40.058410736159701 ], [ -75.008642320199897, 40.057782259938101 ], [ -75.009005998560696, 40.057634591327599 ], [ -75.009755903636105, 40.057286728739001 ], [ -75.010224438577595, 40.057064578847701 ], [ -75.010680767495998, 40.056873665975402 ], [ -75.011244355822896, 40.056676890610703 ], [ -75.011480058479606, 40.056622021042699 ], [ -75.011714120176805, 40.056570465632802 ], [ -75.011962944767006, 40.056521546677402 ], [ -75.012379264060996, 40.056449192957899 ], [ -75.012591880201398, 40.056413122175599 ], [ -75.012830482230797, 40.0564140107426 ], [ -75.014197853513494, 40.056409633892997 ], [ -75.016588259764504, 40.056405219995398 ], [ -75.019050153369307, 40.056400622058902 ], [ -75.022124332358601, 40.0563828846836 ], [ -75.022131698377194, 40.056333635736799 ], [ -75.022125368105606, 40.056201522116197 ], [ -75.022092776290805, 40.056071022257903 ], [ -75.022048290037105, 40.055945039884598 ], [ -75.021975926557204, 40.055824668691699 ], [ -75.021858398313796, 40.055675539989899 ], [ -75.021299764643103, 40.055104606344102 ], [ -75.021177061828695, 40.055014722798802 ], [ -75.020820817872305, 40.052143329560998 ], [ -75.021070986354303, 40.052073239493801 ], [ -75.021348410799703, 40.051940434869302 ], [ -75.021486315277599, 40.051791643471603 ], [ -75.021608506083098, 40.051623470928803 ], [ -75.021823341598306, 40.0514068095111 ], [ -75.022027901260799, 40.051240591748503 ], [ -75.022233479059693, 40.051049054700997 ], [ -75.022588466430193, 40.050832551630101 ], [ -75.0228746276495, 40.050687278472701 ], [ -75.024007214036303, 40.050200935349999 ], [ -75.024609931346703, 40.049974464906597 ], [ -75.025021927634597, 40.049775146778501 ], [ -75.025489798477196, 40.0496215059826 ], [ -75.0258974670149, 40.049529796164101 ], [ -75.026316145316898, 40.049456887883601 ], [ -75.0263458121116, 40.049451721799699 ], [ -75.027018581293703, 40.049328276760598 ], [ -75.027503916113403, 40.049355620542102 ], [ -75.027730989948097, 40.0494497071167 ], [ -75.027906866015499, 40.049586932684498 ], [ -75.0280230533848, 40.049773432506001 ], [ -75.0281142763925, 40.049965676907803 ], [ -75.028249477301799, 40.050089265701097 ], [ -75.028403947136695, 40.050143614249301 ], [ -75.028658273835703, 40.050174984189901 ], [ -75.028963546323297, 40.050169543008103 ], [ -75.029219905353102, 40.050150271017202 ], [ -75.029648223330298, 40.050160414628401 ], [ -75.030091999297298, 40.050196266586298 ], [ -75.030781106768998, 40.050282276822102 ], [ -75.0311618141873, 40.050337754229602 ], [ -75.031388723132594, 40.0503708182191 ], [ -75.031559808078498, 40.050395747892097 ], [ -75.031824403129505, 40.050376664983901 ], [ -75.032025893279794, 40.050286391043699 ], [ -75.032148860262097, 40.050181908286802 ], [ -75.032242262264504, 40.050242259404698 ], [ -75.032292757788895, 40.050275295442198 ], [ -75.032316692667095, 40.050279981295297 ], [ -75.032369804601302, 40.050292309010899 ], [ -75.032405229707607, 40.050300099578898 ], [ -75.032421519475506, 40.050294905613697 ], [ -75.032453367776398, 40.050280468164097 ], [ -75.032544727892201, 40.050230104243902 ], [ -75.032591688562107, 40.050195254062103 ], [ -75.032629108948996, 40.050153226564198 ], [ -75.032685706503102, 40.0500785236461 ], [ -75.032687601556404, 40.050075822061203 ], [ -75.032747154869597, 40.049994237404903 ], [ -75.032801857080898, 40.049922236915002 ], [ -75.032834416242906, 40.049867734624002 ], [ -75.032870941432193, 40.049825772381404 ], [ -75.032922034891499, 40.049799259057302 ], [ -75.032933906459505, 40.049770530433598 ], [ -75.032936687397793, 40.049745707313797 ], [ -75.032946316361205, 40.049683711019497 ], [ -75.032949413616095, 40.049606370279903 ], [ -75.0329508402302, 40.049526157114499 ], [ -75.032964205431099, 40.0494601295728 ], [ -75.032985542121494, 40.049373521291002 ], [ -75.0329938432685, 40.049344709117001 ], [ -75.033049559904796, 40.049264748284997 ], [ -75.036039388140296, 40.050890252254902 ], [ -75.038865486817301, 40.052407931597998 ], [ -75.039129551508694, 40.052549733455301 ], [ -75.039190383701794, 40.052582400241597 ], [ -75.040249581427702, 40.053167589268199 ], [ -75.0406702009778, 40.053392005749103 ], [ -75.041129023260396, 40.053641616450697 ], [ -75.041563846190201, 40.0538777077454 ], [ -75.041985086412296, 40.054104326086801 ], [ -75.042833706863206, 40.0545723599949 ], [ -75.043642345705805, 40.055004786633198 ], [ -75.044498581421905, 40.055465010991803 ], [ -75.045270559846003, 40.055884606301397 ], [ -75.046395361276495, 40.0564970289428 ], [ -75.046539087960696, 40.056576711004404 ], [ -75.046681442299999, 40.056653233947699 ], [ -75.046858692042903, 40.056747027287699 ], [ -75.046480873958103, 40.057140560906198 ], [ -75.045956240052405, 40.057605279107399 ], [ -75.0449671827934, 40.058512694640598 ], [ -75.044817751117407, 40.058673998908297 ], [ -75.044704347126498, 40.058818993546097 ], [ -75.044277188872996, 40.059365137134499 ], [ -75.044240186314099, 40.059412445728498 ], [ -75.044203255454093, 40.059486119802202 ], [ -75.042912914360301, 40.062416726650298 ], [ -75.0424526310169, 40.0634815515266 ], [ -75.0413317548511, 40.065981605277898 ], [ -75.0412079378182, 40.066257759619603 ], [ -75.040578542663496, 40.067661494863202 ], [ -75.040110062837996, 40.068710760080698 ], [ -75.039907287232097, 40.069057165765997 ], [ -75.039575811943806, 40.069573787661703 ], [ -75.039191400243595, 40.070042335038103 ], [ -75.038992542615006, 40.070290499183201 ], [ -75.038135684374694, 40.071173205690997 ], [ -75.037363302107295, 40.071960539194798 ], [ -75.036192162411893, 40.073206264798202 ], [ -75.036047054414297, 40.073336524165299 ], [ -75.034952546349402, 40.074467614032997 ], [ -75.033394240585196, 40.076102132967499 ], [ -75.032828596495506, 40.076673629646599 ], [ -75.030410951680594, 40.079186355475102 ], [ -75.028777215793397, 40.080873874162201 ], [ -75.028607656406294, 40.080779189944501 ], [ -75.028451474494801, 40.080687485761501 ], [ -75.025380190210996, 40.078952511395798 ], [ -75.023716338287102, 40.078003832306202 ], [ -75.021751109020698, 40.076964544076397 ], [ -75.017146505683797, 40.074351894244003 ], [ -75.016838205535606, 40.074179292057501 ], [ -75.015066788259503, 40.073187526375797 ], [ -75.014090448601195, 40.072651746889399 ], [ -75.013129416850902, 40.0720807729518 ], [ -75.007271778509306, 40.069170936847698 ], [ -75.002905378748807, 40.0666913700314 ], [ -75.000204927419105, 40.0651600689811 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 62, "disday": "6LFRI", "sandis": "6L", "collday": "FRI", "Shape__Area": 7807975.3359375, "Shape__Length": 11717.803873875335 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.043733198683995, 40.012044657776201 ], [ -75.045507439559998, 40.011104248211701 ], [ -75.048099024649005, 40.014091944683202 ], [ -75.049085067813493, 40.015228615698902 ], [ -75.050285958732601, 40.016580791824602 ], [ -75.051443118831102, 40.0179302901388 ], [ -75.0519668949443, 40.018508277957203 ], [ -75.052411912417099, 40.019022677568302 ], [ -75.052841851503203, 40.019527724139799 ], [ -75.053274456954398, 40.020012837301003 ], [ -75.053727784019699, 40.020522260758902 ], [ -75.054211839054403, 40.021074192451501 ], [ -75.054660489640696, 40.021590851932402 ], [ -75.054920268627797, 40.021876617396401 ], [ -75.055103826534506, 40.022103901334503 ], [ -75.055340941846694, 40.022369623485801 ], [ -75.055565882066404, 40.022615563458203 ], [ -75.055799549176896, 40.022894076024997 ], [ -75.056004742320297, 40.023139895041197 ], [ -75.056457427719096, 40.023641357012004 ], [ -75.056917627355801, 40.024169706593803 ], [ -75.057357601342304, 40.0246702574605 ], [ -75.057591580158103, 40.024945231312799 ], [ -75.057809606079701, 40.0251833553761 ], [ -75.0580322342703, 40.025446259329101 ], [ -75.058253572654905, 40.025700945666301 ], [ -75.058806422831097, 40.026323019355999 ], [ -75.059346996177496, 40.026948584175997 ], [ -75.059856229273507, 40.027531997280498 ], [ -75.060018076818693, 40.027707732360497 ], [ -75.060020261722201, 40.027738217262801 ], [ -75.060009127597297, 40.0277623027171 ], [ -75.059984069533698, 40.027802347518197 ], [ -75.059229299200695, 40.027918096648698 ], [ -75.058672283686306, 40.028153491363597 ], [ -75.058582117949399, 40.0282341672903 ], [ -75.057874046760503, 40.028529331827102 ], [ -75.057252091365399, 40.028794751282 ], [ -75.056873821269605, 40.028952515339199 ], [ -75.0566673704773, 40.029068247302099 ], [ -75.056080652576199, 40.029464159407603 ], [ -75.0556634239733, 40.029852277508503 ], [ -75.055418885225507, 40.030095654432898 ], [ -75.055271926955001, 40.030229441143703 ], [ -75.054802227788997, 40.030651710162097 ], [ -75.054057495179407, 40.031189894493401 ], [ -75.053970533512498, 40.031246441891298 ], [ -75.053513808424697, 40.031576647751002 ], [ -75.053387787203903, 40.031652376409099 ], [ -75.053322317429604, 40.031687140557899 ], [ -75.053251690200796, 40.031709602302399 ], [ -75.052859704718699, 40.031805482885602 ], [ -75.052688024389994, 40.031855117301603 ], [ -75.050975284199097, 40.032333907835302 ], [ -75.049912069480399, 40.0326195889145 ], [ -75.049280622794797, 40.0332897471094 ], [ -75.048728355977303, 40.033870576474698 ], [ -75.048144205814097, 40.0344863078613 ], [ -75.047524937296203, 40.035146543773998 ], [ -75.046934775834899, 40.035771640424201 ], [ -75.046354149221003, 40.036387254423701 ], [ -75.045781069708994, 40.036995418728601 ], [ -75.045260924623506, 40.037545381087902 ], [ -75.044772223666101, 40.038071945455101 ], [ -75.044195484944893, 40.0386699074025 ], [ -75.042538215240796, 40.0377319293627 ], [ -75.041022668470205, 40.036895707139998 ], [ -75.040755249774193, 40.0368028192295 ], [ -75.040342938338995, 40.036467463460703 ], [ -75.040025430982197, 40.036088620991798 ], [ -75.039476523706398, 40.0354132896015 ], [ -75.039053397876202, 40.034886118053798 ], [ -75.038618479399204, 40.0343646619813 ], [ -75.038197720458399, 40.033837577062101 ], [ -75.037756675296094, 40.033317234197902 ], [ -75.037332855331201, 40.032791572836501 ], [ -75.036908094074803, 40.032261120036303 ], [ -75.036480662394396, 40.0317418898914 ], [ -75.036057663005806, 40.031215601159801 ], [ -75.035739401683401, 40.030833452461401 ], [ -75.035628138806103, 40.030688524848898 ], [ -75.035172244242403, 40.030125538130001 ], [ -75.0351011746599, 40.030051550320799 ], [ -75.034749981043504, 40.029600303988701 ], [ -75.0343574554567, 40.029105433124101 ], [ -75.033942005888306, 40.028571047122497 ], [ -75.033527432016598, 40.028040421341402 ], [ -75.033110296074994, 40.027510480257902 ], [ -75.032754451690394, 40.027059944286897 ], [ -75.032080703036399, 40.026206889092499 ], [ -75.031710801768995, 40.025754682378803 ], [ -75.031635809971803, 40.025685947130199 ], [ -75.031328530930793, 40.025289571240798 ], [ -75.030140722689495, 40.023755287905999 ], [ -75.029648555843906, 40.023138774504702 ], [ -75.029215609428903, 40.022589512900197 ], [ -75.024757413843304, 40.016932977080202 ], [ -75.026582886566402, 40.016666213669197 ], [ -75.030971789178693, 40.016086165051099 ], [ -75.031039295752507, 40.016074874054901 ], [ -75.033054750237994, 40.015737760607699 ], [ -75.034784386119597, 40.015428689243997 ], [ -75.036582369971796, 40.014962123726797 ], [ -75.037881070680498, 40.014563279382998 ], [ -75.0391829318839, 40.014084953986199 ], [ -75.040380789856599, 40.013620067026302 ], [ -75.041665114283106, 40.0130617573706 ], [ -75.042636204960502, 40.0125755901933 ], [ -75.043185192643307, 40.012309889478203 ], [ -75.043733198683995, 40.012044657776201 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 63, "disday": "6LMON", "sandis": "6L", "collday": "MON", "Shape__Area": 7694376.21484375, "Shape__Length": 13032.143804632598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.083376261233695, 40.046076995743299 ], [ -75.084400175119598, 40.045240410038303 ], [ -75.085789422874697, 40.044105556859598 ], [ -75.086231971311506, 40.044363267597703 ], [ -75.087119032473794, 40.044857089053998 ], [ -75.088315638947805, 40.045523211029703 ], [ -75.088978387182607, 40.044341588817403 ], [ -75.098418563108595, 40.036110767283802 ], [ -75.099388546207095, 40.036770789887299 ], [ -75.101575512369493, 40.038302552916598 ], [ -75.101883574009406, 40.038032873963701 ], [ -75.102125387262205, 40.037811307578501 ], [ -75.102332712830901, 40.037629885929 ], [ -75.103203690080804, 40.0367830870834 ], [ -75.104728580496001, 40.035330194891401 ], [ -75.105937924802404, 40.034109858260301 ], [ -75.106311395111007, 40.034312044781302 ], [ -75.107587819703198, 40.035022839489798 ], [ -75.107689391008407, 40.035079399413497 ], [ -75.108257445141106, 40.03539828273 ], [ -75.108573425823494, 40.035504736470202 ], [ -75.108592546969703, 40.035759355126899 ], [ -75.108685110673704, 40.036434420266502 ], [ -75.10873551, 40.036732906708899 ], [ -75.108860781906998, 40.037003258296302 ], [ -75.108981879843398, 40.037239742226902 ], [ -75.109128206681206, 40.037525490556199 ], [ -75.109168402465997, 40.037603986251 ], [ -75.109658801117604, 40.038527244457399 ], [ -75.110013245000303, 40.039158432311901 ], [ -75.110328316856297, 40.0396907712448 ], [ -75.110774372595202, 40.040308445998001 ], [ -75.111799401932998, 40.041279785646402 ], [ -75.111861705633402, 40.0413367461557 ], [ -75.111723875656295, 40.041479182300499 ], [ -75.111527020186401, 40.041695929119101 ], [ -75.111343956283207, 40.041919380743202 ], [ -75.111182947972196, 40.042151035381799 ], [ -75.111156588498005, 40.042196678760902 ], [ -75.111044561399197, 40.042390658347301 ], [ -75.110919796847, 40.042635538084397 ], [ -75.110803457901298, 40.042883645959499 ], [ -75.1106903551172, 40.0431329534767 ], [ -75.110575298918107, 40.0433814339194 ], [ -75.110455761148202, 40.0436281380697 ], [ -75.110335970039799, 40.043874762406297 ], [ -75.110216915544001, 40.044121595482302 ], [ -75.110099370642303, 40.044368837973302 ], [ -75.109984109567506, 40.0446166887846 ], [ -75.109873028042301, 40.0448656600284 ], [ -75.1097672916097, 40.045116078548197 ], [ -75.109662998026096, 40.045366877046 ], [ -75.109556045527, 40.045616932266299 ], [ -75.109442658018096, 40.045865246459798 ], [ -75.109433840918499, 40.0458834040654 ], [ -75.109322837381001, 40.046112010670797 ], [ -75.109194940051793, 40.046356316701697 ], [ -75.109056870155797, 40.046597069346298 ], [ -75.108912283642596, 40.046835760934897 ], [ -75.108762471552396, 40.047072685130203 ], [ -75.108607305306194, 40.047307469534097 ], [ -75.108446565973196, 40.047539773908497 ], [ -75.108277041370599, 40.047769019785001 ], [ -75.108093970118105, 40.047991808864303 ], [ -75.107893437469897, 40.048204557751902 ], [ -75.107677740914397, 40.048408961782201 ], [ -75.107453739448701, 40.048608653024601 ], [ -75.107228338786697, 40.048807118705497 ], [ -75.107004293833995, 40.049006894626899 ], [ -75.106775445062695, 40.049203214983102 ], [ -75.106534476669694, 40.049389454616502 ], [ -75.106271983500804, 40.049557696799397 ], [ -75.105996558883305, 40.049715240188398 ], [ -75.1057247989839, 40.049875827186 ], [ -75.105455778691095, 40.0500387670563 ], [ -75.105186808990496, 40.050201758848601 ], [ -75.104917258044196, 40.050364168106 ], [ -75.104646490504095, 40.050525360284801 ], [ -75.104374163187103, 40.050684995893398 ], [ -75.1041006586386, 40.050843457659397 ], [ -75.103826410464805, 40.051001171838401 ], [ -75.103551849996506, 40.051158562835802 ], [ -75.103276977200494, 40.051315631549599 ], [ -75.103000790716607, 40.0514713880982 ], [ -75.1027241573601, 40.051626694911 ], [ -75.102448138258694, 40.051782602714603 ], [ -75.102173788675302, 40.051940162110398 ], [ -75.101902179739099, 40.052100437591498 ], [ -75.101634643404097, 40.052264750160496 ], [ -75.101370202232502, 40.052432127623597 ], [ -75.101106918032102, 40.052600649364202 ], [ -75.100923588287401, 40.052717104564501 ], [ -75.100842852832699, 40.052768389346603 ], [ -75.100576070841896, 40.0529334260724 ], [ -75.100304911740196, 40.053094110182997 ], [ -75.100030022560901, 40.053251077383003 ], [ -75.099752762090304, 40.053405682607597 ], [ -75.099474433779093, 40.053559226367497 ], [ -75.099196343306303, 40.053713011940403 ], [ -75.098919550391003, 40.053868095464502 ], [ -75.098642827549995, 40.054023243039303 ], [ -75.098365996271397, 40.054178282052 ], [ -75.098089345225702, 40.054333506594901 ], [ -75.097813158430597, 40.054489209754102 ], [ -75.097537724482095, 40.054645687427801 ], [ -75.097263130843501, 40.054803041655802 ], [ -75.096988646038298, 40.054960577975599 ], [ -75.096714709318704, 40.055118697580802 ], [ -75.096441961204803, 40.0552779919309 ], [ -75.096171039799501, 40.055439054237802 ], [ -75.0959025799703, 40.055602470436099 ], [ -75.095636459412702, 40.055768129593503 ], [ -75.095372005174099, 40.055935399870201 ], [ -75.095108759772998, 40.0561038364078 ], [ -75.094846262145595, 40.056272996063001 ], [ -75.094682472381393, 40.056378835852001 ], [ -75.093620083562598, 40.057427384357098 ], [ -75.093617613670105, 40.057429821313399 ], [ -75.0927423977854, 40.058307462943098 ], [ -75.092076764944906, 40.058974921436601 ], [ -75.089764757251999, 40.061294319396502 ], [ -75.089765562652204, 40.0613019797226 ], [ -75.089004611709996, 40.062060352057998 ], [ -75.088241428698495, 40.062820927806399 ], [ -75.087466289175197, 40.063593396585702 ], [ -75.087067087918697, 40.063371564980898 ], [ -75.086991952831795, 40.063330345648303 ], [ -75.086570535455095, 40.063099146469803 ], [ -75.085742620662401, 40.062604476220997 ], [ -75.085732619141694, 40.062598738976703 ], [ -75.084782037495998, 40.062053409851899 ], [ -75.083836021615895, 40.061481921324699 ], [ -75.083527347543694, 40.0612797593975 ], [ -75.083099853407703, 40.061027847807203 ], [ -75.082279506296103, 40.060556129592896 ], [ -75.081404746867406, 40.060041055789497 ], [ -75.080508985452298, 40.059536662614697 ], [ -75.0796494231178, 40.059024483245501 ], [ -75.079613540090193, 40.059003004656503 ], [ -75.078762329605198, 40.058509282801197 ], [ -75.078078176456501, 40.058113187238 ], [ -75.077780664210906, 40.057934638911803 ], [ -75.076735990816601, 40.057359764519099 ], [ -75.078633734418304, 40.055366089982698 ], [ -75.078945634059096, 40.055024508337098 ], [ -75.079219041725196, 40.054728534593401 ], [ -75.079510494371704, 40.054427472554998 ], [ -75.079817510495801, 40.054093589918999 ], [ -75.080151879939393, 40.0537524590206 ], [ -75.080413828064295, 40.053480696652102 ], [ -75.080690921424605, 40.0531752966642 ], [ -75.081046065657603, 40.052777238209003 ], [ -75.080189761738197, 40.052311707575299 ], [ -75.079336885326498, 40.051818402452099 ], [ -75.079600241509198, 40.051522021421498 ], [ -75.079881156477398, 40.051226450714601 ], [ -75.080151538810796, 40.050941939021101 ], [ -75.080446466535804, 40.050645156426803 ], [ -75.080568730927794, 40.0505196788449 ], [ -75.081088699576298, 40.0499622615704 ], [ -75.081298803935496, 40.049730817425797 ], [ -75.081565736741993, 40.049491972737897 ], [ -75.081670150018397, 40.049430500940602 ], [ -75.081812167947703, 40.049282691902903 ], [ -75.0821039098348, 40.049056777303299 ], [ -75.082312907855496, 40.048841292862697 ], [ -75.082889942275699, 40.0482066938971 ], [ -75.083469154655504, 40.0475983476992 ], [ -75.084068509667205, 40.046972318471397 ], [ -75.083653499920899, 40.046732627077397 ], [ -75.083417625126899, 40.046608446448502 ], [ -75.083002709004106, 40.0463795798373 ], [ -75.083376261233695, 40.046076995743299 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 64, "disday": "6LTHU", "sandis": "6L", "collday": "THU", "Shape__Area": 5621685.1015625, "Shape__Length": 9494.1967296549446 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.057252091365399, 40.028794751282 ], [ -75.057874046760503, 40.028529331827102 ], [ -75.057953599572301, 40.0286012413385 ], [ -75.058410092813304, 40.028858595517796 ], [ -75.060039216793598, 40.029761954129299 ], [ -75.061648797156494, 40.030664538258698 ], [ -75.063050938573795, 40.0314394297341 ], [ -75.063191633039494, 40.031575827271602 ], [ -75.063420296188696, 40.031658607843198 ], [ -75.0635962774235, 40.0317490075252 ], [ -75.063845624283999, 40.031881536546202 ], [ -75.064102449806001, 40.032025572339002 ], [ -75.064437439665497, 40.032212602243803 ], [ -75.064765864270498, 40.0323963600135 ], [ -75.064896252494904, 40.032468679892297 ], [ -75.065128397957395, 40.032596387823503 ], [ -75.065485277204601, 40.032798955665903 ], [ -75.065818916053701, 40.0329794640651 ], [ -75.066171765303494, 40.033184150254897 ], [ -75.066526104756093, 40.033386152580597 ], [ -75.066954902305994, 40.033628551593601 ], [ -75.067271054068001, 40.033799841164203 ], [ -75.067312425366097, 40.033833635238899 ], [ -75.067739092602807, 40.0340711139932 ], [ -75.068164532285394, 40.034286753581398 ], [ -75.068539016740502, 40.034501274861903 ], [ -75.069444882028804, 40.035002459269798 ], [ -75.0695991306049, 40.035102503185897 ], [ -75.070004318286493, 40.035329308096998 ], [ -75.070161988982804, 40.035434603955601 ], [ -75.070525746643597, 40.035627318842202 ], [ -75.070898682753807, 40.0358112362048 ], [ -75.071195436123006, 40.035980989757398 ], [ -75.071452827875007, 40.036126063175402 ], [ -75.0717856899617, 40.036313270638601 ], [ -75.072107138007794, 40.036494555131398 ], [ -75.072376894841199, 40.036641377972302 ], [ -75.072689399774603, 40.036817218119097 ], [ -75.072962958644297, 40.036964804830802 ], [ -75.0732553205562, 40.037130568774501 ], [ -75.073552977963899, 40.037307263327797 ], [ -75.074452275894004, 40.037791874293298 ], [ -75.074944389543106, 40.038075471844202 ], [ -75.075339181207795, 40.038290681664598 ], [ -75.074768364225307, 40.0389375804031 ], [ -75.074189900539594, 40.039545313963103 ], [ -75.073921578311399, 40.039839920338302 ], [ -75.073277766529102, 40.040531569247698 ], [ -75.073276969445203, 40.040532369719003 ], [ -75.072997848243205, 40.040812742794103 ], [ -75.071815757573006, 40.042043021784302 ], [ -75.070635752883703, 40.043281456582001 ], [ -75.069766431321, 40.044237349261003 ], [ -75.069471408047605, 40.044536313006702 ], [ -75.069185170862795, 40.044858524355497 ], [ -75.068339899345602, 40.045737980613701 ], [ -75.067111835550094, 40.047024113676699 ], [ -75.065938182670607, 40.048282839261397 ], [ -75.064188377140297, 40.050138877934003 ], [ -75.063832592256801, 40.049940071396001 ], [ -75.063579306053001, 40.049802044729702 ], [ -75.063519700121404, 40.049773987134301 ], [ -75.063440409854707, 40.049760467938398 ], [ -75.0623859346437, 40.049157317103102 ], [ -75.061377023045694, 40.048594681088503 ], [ -75.059938996694399, 40.047760404567697 ], [ -75.058370216772005, 40.0468145028644 ], [ -75.058067916751895, 40.046640459865202 ], [ -75.057727770934605, 40.046419639679698 ], [ -75.057372466440995, 40.046216677749499 ], [ -75.057050435439706, 40.046039385207898 ], [ -75.056716471523799, 40.0458439478017 ], [ -75.056385772621198, 40.045649003124403 ], [ -75.056145853060002, 40.045508312813503 ], [ -75.055725206097705, 40.045265600687003 ], [ -75.054649700194801, 40.044654428735498 ], [ -75.054436579782106, 40.044537996170298 ], [ -75.054288833384703, 40.044457277715502 ], [ -75.054064728438803, 40.044334842471002 ], [ -75.053115771011207, 40.043773583554398 ], [ -75.052229965063802, 40.043280545627297 ], [ -75.052155694505501, 40.043219978175401 ], [ -75.051428050905301, 40.042797193472197 ], [ -75.050645980675597, 40.042342947903798 ], [ -75.049029855087497, 40.041422059936401 ], [ -75.047426089038396, 40.040506401952101 ], [ -75.045808608994506, 40.039588497334499 ], [ -75.045281455572294, 40.039288824977298 ], [ -75.044195484944893, 40.0386699074025 ], [ -75.044772223666101, 40.038071945455101 ], [ -75.045260924623506, 40.037545381087902 ], [ -75.045781069708994, 40.036995418728601 ], [ -75.046354149221003, 40.036387254423701 ], [ -75.046934775834899, 40.035771640424201 ], [ -75.047524937296203, 40.035146543773998 ], [ -75.048144205814097, 40.0344863078613 ], [ -75.048728355977303, 40.033870576474698 ], [ -75.049280622794797, 40.0332897471094 ], [ -75.049912069480399, 40.0326195889145 ], [ -75.050975284199097, 40.032333907835302 ], [ -75.052688024389994, 40.031855117301603 ], [ -75.052859704718699, 40.031805482885602 ], [ -75.053251690200796, 40.031709602302399 ], [ -75.053322317429604, 40.031687140557899 ], [ -75.053387787203903, 40.031652376409099 ], [ -75.053513808424697, 40.031576647751002 ], [ -75.053970533512498, 40.031246441891298 ], [ -75.054057495179407, 40.031189894493401 ], [ -75.054802227788997, 40.030651710162097 ], [ -75.055271926955001, 40.030229441143703 ], [ -75.055418885225507, 40.030095654432898 ], [ -75.0556634239733, 40.029852277508503 ], [ -75.056080652576199, 40.029464159407603 ], [ -75.0566673704773, 40.029068247302099 ], [ -75.056873821269605, 40.028952515339199 ], [ -75.057252091365399, 40.028794751282 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 65, "disday": "6LTUE", "sandis": "6L", "collday": "TUE", "Shape__Area": 7048256.70703125, "Shape__Length": 14117.83619660779 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.069766431321, 40.044237349261003 ], [ -75.070635752883703, 40.043281456582001 ], [ -75.071815757573006, 40.042043021784302 ], [ -75.072997848243205, 40.040812742794103 ], [ -75.073276969445203, 40.040532369719003 ], [ -75.073277766529102, 40.040531569247698 ], [ -75.073921578311399, 40.039839920338302 ], [ -75.074189900539594, 40.039545313963103 ], [ -75.074768364225307, 40.0389375804031 ], [ -75.075339181207795, 40.038290681664598 ], [ -75.075738615148296, 40.038515825803202 ], [ -75.076959113049696, 40.039225362237801 ], [ -75.076981848755693, 40.0392382301889 ], [ -75.077397553987097, 40.039473497109903 ], [ -75.077862380894899, 40.039731169782797 ], [ -75.078902291709994, 40.040320875335603 ], [ -75.0791381381121, 40.040067246892598 ], [ -75.079224161940004, 40.039974812839198 ], [ -75.079350422837507, 40.039842972960301 ], [ -75.079517784788294, 40.039661468164603 ], [ -75.079718406852805, 40.039449217130901 ], [ -75.079807893205199, 40.039352253454901 ], [ -75.079897443027804, 40.039259271080198 ], [ -75.080093713511602, 40.039051937971202 ], [ -75.080288789378997, 40.0388349518865 ], [ -75.080490231664598, 40.038625118140999 ], [ -75.080643532653696, 40.038461659921197 ], [ -75.080834603786101, 40.038255262629399 ], [ -75.081022303651494, 40.038056164412097 ], [ -75.081283156675696, 40.037791122865897 ], [ -75.082458362487898, 40.036546336699999 ], [ -75.082506663848307, 40.036494239563602 ], [ -75.083625061983895, 40.035294704914499 ], [ -75.0839940166709, 40.034915517961899 ], [ -75.084789672564199, 40.034058085391202 ], [ -75.084913697895203, 40.0339396287714 ], [ -75.085316317627601, 40.033530772107703 ], [ -75.085075353948994, 40.0331748991035 ], [ -75.084909030863898, 40.0329292578826 ], [ -75.084835366512294, 40.0323589394687 ], [ -75.084956481423205, 40.032317709063101 ], [ -75.085057563208096, 40.032284652836097 ], [ -75.085159030689596, 40.032241771544697 ], [ -75.085276528875696, 40.032181561226999 ], [ -75.085323661182898, 40.032156117424698 ], [ -75.085373032827903, 40.032102178880201 ], [ -75.085406792867403, 40.032024291644802 ], [ -75.085445820053096, 40.031942592672102 ], [ -75.0854746225112, 40.031860656468901 ], [ -75.0854876244818, 40.0317901545735 ], [ -75.085504116483804, 40.0317116062865 ], [ -75.085417275645497, 40.031557341355402 ], [ -75.085384592580297, 40.031500810626603 ], [ -75.085383953685593, 40.031500185800702 ], [ -75.085852479487997, 40.031297304874997 ], [ -75.086196931062403, 40.031137622484202 ], [ -75.086724176250499, 40.030883728172299 ], [ -75.088132806397297, 40.030094509282002 ], [ -75.089165771488197, 40.029555824069497 ], [ -75.089874361968, 40.029151347178001 ], [ -75.090348203676996, 40.028901828650298 ], [ -75.090583140056907, 40.028931772112401 ], [ -75.091409553479096, 40.0284796078138 ], [ -75.092164104478101, 40.028059162566798 ], [ -75.092901004747105, 40.027662350121602 ], [ -75.093510400407098, 40.027313466133698 ], [ -75.0941454472391, 40.026962510624003 ], [ -75.094565649366004, 40.026768313570997 ], [ -75.0949086964402, 40.026676382753401 ], [ -75.095239371954705, 40.026600054687997 ], [ -75.095499789606393, 40.026574584275203 ], [ -75.095741334571699, 40.026566172468101 ], [ -75.096041309717094, 40.026576604099297 ], [ -75.0964079879476, 40.026627063974402 ], [ -75.096728597617201, 40.026708061179001 ], [ -75.096736155280198, 40.026570170272898 ], [ -75.097463676445997, 40.026861157037999 ], [ -75.098811034711105, 40.027748534360597 ], [ -75.100593173074301, 40.028916410988003 ], [ -75.101284047395396, 40.0293706863323 ], [ -75.101808324923795, 40.0296284308981 ], [ -75.102159520682505, 40.029757341765801 ], [ -75.102538457809601, 40.029846620290101 ], [ -75.103071456528795, 40.0299044946915 ], [ -75.103229840933807, 40.0300577749599 ], [ -75.103905374573699, 40.030598255068803 ], [ -75.102382057270503, 40.032127978499702 ], [ -75.101150833947798, 40.033344018363501 ], [ -75.100549927199395, 40.033993762327903 ], [ -75.098418563108595, 40.036110767283802 ], [ -75.088978387182607, 40.044341588817403 ], [ -75.088315638947805, 40.045523211029703 ], [ -75.087119032473794, 40.044857089053998 ], [ -75.086231971311506, 40.044363267597703 ], [ -75.085789422874697, 40.044105556859598 ], [ -75.084400175119598, 40.045240410038303 ], [ -75.083376261233695, 40.046076995743299 ], [ -75.083002709004106, 40.0463795798373 ], [ -75.083417625126899, 40.046608446448502 ], [ -75.083653499920899, 40.046732627077397 ], [ -75.084068509667205, 40.046972318471397 ], [ -75.083469154655504, 40.0475983476992 ], [ -75.082889942275699, 40.0482066938971 ], [ -75.082312907855496, 40.048841292862697 ], [ -75.0821039098348, 40.049056777303299 ], [ -75.081812167947703, 40.049282691902903 ], [ -75.081670150018397, 40.049430500940602 ], [ -75.081565736741993, 40.049491972737897 ], [ -75.081298803935496, 40.049730817425797 ], [ -75.081088699576298, 40.0499622615704 ], [ -75.080568730927794, 40.0505196788449 ], [ -75.080446466535804, 40.050645156426803 ], [ -75.080151538810796, 40.050941939021101 ], [ -75.079881156477398, 40.051226450714601 ], [ -75.079600241509198, 40.051522021421498 ], [ -75.079336885326498, 40.051818402452099 ], [ -75.080189761738197, 40.052311707575299 ], [ -75.081046065657603, 40.052777238209003 ], [ -75.080690921424605, 40.0531752966642 ], [ -75.080413828064295, 40.053480696652102 ], [ -75.080151879939393, 40.0537524590206 ], [ -75.079817510495801, 40.054093589918999 ], [ -75.079510494371704, 40.054427472554998 ], [ -75.079219041725196, 40.054728534593401 ], [ -75.078945634059096, 40.055024508337098 ], [ -75.078633734418304, 40.055366089982698 ], [ -75.076735990816601, 40.057359764519099 ], [ -75.075034339485001, 40.056368199457701 ], [ -75.074097540284896, 40.055828358020001 ], [ -75.073258164643207, 40.055339140035898 ], [ -75.071473094868793, 40.054303698466001 ], [ -75.069724086594803, 40.053294013614597 ], [ -75.069135291661794, 40.052958499711202 ], [ -75.068505204251906, 40.052599882036397 ], [ -75.067726082026397, 40.052154676212801 ], [ -75.066048583769899, 40.051190411053902 ], [ -75.065757561183105, 40.051017340212397 ], [ -75.0654053606399, 40.050818126044199 ], [ -75.0651338611695, 40.050673630435 ], [ -75.064845249382998, 40.050503214827799 ], [ -75.064563048734996, 40.050347969624603 ], [ -75.064188377140297, 40.050138877934003 ], [ -75.065938182670607, 40.048282839261397 ], [ -75.067111835550094, 40.047024113676699 ], [ -75.068339899345602, 40.045737980613701 ], [ -75.069185170862795, 40.044858524355497 ], [ -75.069471408047605, 40.044536313006702 ], [ -75.069766431321, 40.044237349261003 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 66, "disday": "3C", "sandis": "3C", "collday": " ", "Shape__Area": 4593419.03515625, "Shape__Length": 11128.382599593617 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.188708919284693, 40.006851729539498 ], [ -75.188103189011997, 40.006434682814799 ], [ -75.187824019667801, 40.006111617955597 ], [ -75.187456061675803, 40.004975408397499 ], [ -75.187433024715205, 40.004650686279099 ], [ -75.187350727306196, 40.003335105634001 ], [ -75.187337043742403, 40.003223865364198 ], [ -75.187305384829997, 40.003043236343601 ], [ -75.187281925272998, 40.002970121135199 ], [ -75.187252616553096, 40.002913006996899 ], [ -75.187219700628603, 40.0028820253535 ], [ -75.187181623035897, 40.002852958442197 ], [ -75.1871867873665, 40.002781477821301 ], [ -75.187182329121597, 40.002725926649497 ], [ -75.187174756739495, 40.0026834129226 ], [ -75.187165451493598, 40.002642670635304 ], [ -75.187088892132707, 40.0024062335292 ], [ -75.1866917558079, 40.001179651312398 ], [ -75.1866732524729, 40.001116084674699 ], [ -75.186663508674101, 40.001018266274698 ], [ -75.186668874725001, 40.000955231714798 ], [ -75.186683450834394, 40.000885514597897 ], [ -75.186713854317503, 40.000792037200199 ], [ -75.186789504299796, 40.0005983895431 ], [ -75.186863266466105, 40.000418490527402 ], [ -75.1869552543628, 40.000194140797497 ], [ -75.187034394420394, 39.9999830445146 ], [ -75.187558704418606, 39.998652781350899 ], [ -75.187591781060206, 39.998569527706103 ], [ -75.187607617986501, 39.998204846764501 ], [ -75.187611749008994, 39.996584277502997 ], [ -75.187610463628801, 39.996440984897497 ], [ -75.187585635281195, 39.996051195103199 ], [ -75.187558655975593, 39.995838643267199 ], [ -75.187263447464403, 39.9949562962179 ], [ -75.186977837561798, 39.994353609418503 ], [ -75.186488194740804, 39.993357387227199 ], [ -75.186151134961904, 39.992671590508898 ], [ -75.186373994500798, 39.991786243596799 ], [ -75.186716307514104, 39.990224416148102 ], [ -75.187062157528899, 39.988674505280798 ], [ -75.187174426307095, 39.988084293555303 ], [ -75.187276480929697, 39.9876507544258 ], [ -75.187385101238206, 39.987139970592096 ], [ -75.1874933860299, 39.986639121822002 ], [ -75.187599062112298, 39.986160525509199 ], [ -75.1877070220186, 39.985654606571302 ], [ -75.187952805003206, 39.984539650657403 ], [ -75.188035297539898, 39.984136065353503 ], [ -75.188205299863199, 39.983382577870401 ], [ -75.188370339503805, 39.982631477028399 ], [ -75.188540188449196, 39.981890490852599 ], [ -75.188663125797603, 39.981216721513398 ], [ -75.189064087686504, 39.979458782422697 ], [ -75.189163893761105, 39.979021188697502 ], [ -75.189235103451296, 39.9788099144873 ], [ -75.189310087725801, 39.978708196969002 ], [ -75.189433381071495, 39.978583229184899 ], [ -75.189662566461905, 39.978375479455799 ], [ -75.189883795597495, 39.9779429016533 ], [ -75.189784727900104, 39.977441605107899 ], [ -75.189718263232294, 39.977283062139598 ], [ -75.189676265994507, 39.977182883611697 ], [ -75.189545375325196, 39.976870656151199 ], [ -75.189266577915106, 39.976277811288 ], [ -75.189216977001195, 39.976128758880002 ], [ -75.189217484150603, 39.976049079611997 ], [ -75.189238270649298, 39.975928085735497 ], [ -75.189270458025007, 39.975835671264001 ], [ -75.189322397384004, 39.975748978348697 ], [ -75.189387781811007, 39.975669786281898 ], [ -75.189484303731504, 39.9755922485284 ], [ -75.189578818616496, 39.975534829581299 ], [ -75.1899634600409, 39.975412617162903 ], [ -75.190625452527797, 39.975495652 ], [ -75.190997581465595, 39.975540188633097 ], [ -75.1913366590273, 39.975553861018902 ], [ -75.191819436938502, 39.9755021836814 ], [ -75.191962761976498, 39.975486842253503 ], [ -75.192168871145896, 39.975463689097502 ], [ -75.193063645112503, 39.975363173184597 ], [ -75.193070758387407, 39.975362429772801 ], [ -75.193157211741095, 39.975516059557201 ], [ -75.193253235133398, 39.975670581847901 ], [ -75.193356688479199, 39.975821529500102 ], [ -75.193467853311404, 39.975968051006397 ], [ -75.193542236346104, 39.976052538576099 ], [ -75.193651334031699, 39.976160684095198 ], [ -75.193738977624406, 39.976238654409897 ], [ -75.193865428825205, 39.976342065847298 ], [ -75.194520120594802, 39.976848750681697 ], [ -75.194808106645993, 39.977063626586499 ], [ -75.194972102345304, 39.977178991113703 ], [ -75.195139973471896, 39.977290258299199 ], [ -75.195277599229598, 39.9773756714836 ], [ -75.195418630046404, 39.9774573436301 ], [ -75.195599977810701, 39.977553821853498 ], [ -75.195859275602501, 39.977682986084602 ], [ -75.196085330942793, 39.9777895983528 ], [ -75.196352746344999, 39.977910018516503 ], [ -75.196756594886196, 39.978082482005703 ], [ -75.196857129139005, 39.978125414460401 ], [ -75.197994107134903, 39.978594380947797 ], [ -75.1982659259901, 39.9787107984572 ], [ -75.198534994057297, 39.978830380644297 ], [ -75.198725034113195, 39.978918251386098 ], [ -75.199710770532207, 39.979384654218102 ], [ -75.200049873850304, 39.9795498761519 ], [ -75.200347339772094, 39.979700609173001 ], [ -75.200639399150703, 39.979856220967001 ], [ -75.200889248825206, 39.979997317189401 ], [ -75.201132643506199, 39.980143853006098 ], [ -75.201335312562605, 39.980274387518897 ], [ -75.2014290427459, 39.980338874431503 ], [ -75.201631830233794, 39.980478394040098 ], [ -75.201924271662605, 39.980690263318102 ], [ -75.202210254397897, 39.980909690210297 ], [ -75.202456981200598, 39.981110873586999 ], [ -75.202606776510393, 39.981239463471098 ], [ -75.202723814666697, 39.981343877450897 ], [ -75.202949479575906, 39.981556722434 ], [ -75.203057658221596, 39.981665109271297 ], [ -75.203162436032798, 39.981774774737701 ], [ -75.203263590121395, 39.981885696777397 ], [ -75.203360896460694, 39.9819978524093 ], [ -75.203498758515195, 39.982168728862803 ], [ -75.2035623249444, 39.982256853717999 ], [ -75.203622029540099, 39.982347051655402 ], [ -75.203678086382595, 39.982439141823903 ], [ -75.203730709450696, 39.982532946073 ], [ -75.203826509482397, 39.982724971576197 ], [ -75.203884064755798, 39.982855682165102 ], [ -75.203937160052703, 39.982988050734797 ], [ -75.203998031656198, 39.983155189429098 ], [ -75.204053717456901, 39.983323415885103 ], [ -75.204124846297901, 39.983559170924302 ], [ -75.204208569493105, 39.983859469364198 ], [ -75.204252038073093, 39.984028436522301 ], [ -75.204290921534096, 39.984201148340397 ], [ -75.204317037012203, 39.984340865999002 ], [ -75.204337318751598, 39.984481013776602 ], [ -75.204340407259494, 39.9845137968233 ], [ -75.2043504807407, 39.984620714407498 ], [ -75.204354903676105, 39.984724672101699 ], [ -75.204354053054203, 39.984827517217099 ], [ -75.204347386249097, 39.984928882723302 ], [ -75.204334358427104, 39.9850283979357 ], [ -75.204314425821593, 39.985125694895203 ], [ -75.204286605593694, 39.985220401308503 ], [ -75.204260348512307, 39.985281966532703 ], [ -75.204227440333099, 39.9853423255434 ], [ -75.204167077616702, 39.985430759012502 ], [ -75.2040955229144, 39.9855168835943 ], [ -75.204015039425599, 39.9856009413867 ], [ -75.203922929385598, 39.985687625319997 ], [ -75.203746489823502, 39.985838710776001 ], [ -75.203351566209804, 39.986176878372497 ], [ -75.203050195302595, 39.986426861793703 ], [ -75.202680762471402, 39.986721888788303 ], [ -75.201840652065698, 39.987380176354897 ], [ -75.201443387228295, 39.987701857788103 ], [ -75.201263874046802, 39.987852810140197 ], [ -75.201087558860806, 39.988005825369797 ], [ -75.200914951020195, 39.988161251779303 ], [ -75.200745988760701, 39.988319112340697 ], [ -75.200471351333306, 39.9885868373877 ], [ -75.200150881078699, 39.988914031682697 ], [ -75.199837151535107, 39.989245428535703 ], [ -75.199242885696194, 39.989883959143 ], [ -75.199039563217795, 39.990107747965098 ], [ -75.198839272596999, 39.990333300435701 ], [ -75.198074391544694, 39.991213711130897 ], [ -75.1979183686082, 39.991390294582303 ], [ -75.197775063769996, 39.991552482352802 ], [ -75.197443182904706, 39.99191491285 ], [ -75.197286257872605, 39.992079944380997 ], [ -75.197126413968107, 39.992243234024002 ], [ -75.196963169956305, 39.992404495355601 ], [ -75.196836266634406, 39.992525050978699 ], [ -75.196823799106696, 39.992536893987001 ], [ -75.196652824454802, 39.992693549102903 ], [ -75.196492637429699, 39.9928351989481 ], [ -75.196449048416795, 39.992873743758203 ], [ -75.1960918425915, 39.993177934758798 ], [ -75.195186879996697, 39.993931058507499 ], [ -75.194950443750699, 39.994134718454497 ], [ -75.194776150113697, 39.994290378048703 ], [ -75.194719074338906, 39.9943413514331 ], [ -75.194494345192197, 39.9945518872021 ], [ -75.1942504233444, 39.994794494532997 ], [ -75.194015047126001, 39.9950433464317 ], [ -75.193796013473204, 39.995289770497997 ], [ -75.1935731445366, 39.995557619394297 ], [ -75.193368362949798, 39.995821942356699 ], [ -75.193259701265802, 39.995970576799103 ], [ -75.193154874185794, 39.996120371462197 ], [ -75.193074350417703, 39.9962412282595 ], [ -75.193017114180506, 39.996333093976403 ], [ -75.192893013918194, 39.996551169874301 ], [ -75.192779286050893, 39.996773330328601 ], [ -75.192719488476996, 39.996899122124802 ], [ -75.192672397050202, 39.996998185683402 ], [ -75.192449954374197, 39.997482618902801 ], [ -75.1923252432737, 39.997739261767002 ], [ -75.192228621353195, 39.998107222682499 ], [ -75.191965992676998, 39.999076348327499 ], [ -75.191827182800793, 39.999624333401201 ], [ -75.191738982671197, 40.000015266336803 ], [ -75.191567865179906, 40.000859354394898 ], [ -75.191555939941907, 40.000923307891 ], [ -75.191485726545395, 40.001299831693402 ], [ -75.191420055512296, 40.001706985520798 ], [ -75.191372137332195, 40.002080452605497 ], [ -75.191352161688201, 40.002284185474203 ], [ -75.191339330055698, 40.002453943819297 ], [ -75.191330294510294, 40.002623666035497 ], [ -75.191326366156602, 40.002759494474397 ], [ -75.191326081808896, 40.0028955311722 ], [ -75.191330501979195, 40.003065813676798 ], [ -75.191339765622502, 40.003236281616203 ], [ -75.191356580571494, 40.003440972309001 ], [ -75.191378808229302, 40.003645669202001 ], [ -75.191410443619105, 40.003884297738999 ], [ -75.191458054959597, 40.004190467683998 ], [ -75.191516860977899, 40.004529269262797 ], [ -75.191560661311399, 40.004765218937003 ], [ -75.191592409060206, 40.004899442128199 ], [ -75.191640910822301, 40.005066356873698 ], [ -75.191697765617207, 40.005232053962402 ], [ -75.191774840130904, 40.005428896172198 ], [ -75.191859040330101, 40.0056231138866 ], [ -75.191904182050493, 40.005718874106897 ], [ -75.191956915103205, 40.005812610402202 ], [ -75.192016371510107, 40.005904442177297 ], [ -75.192093897362895, 40.006012225180598 ], [ -75.192356234486496, 40.006347445343103 ], [ -75.192429148540199, 40.0064343589572 ], [ -75.192480049545395, 40.006490202887299 ], [ -75.192160012002105, 40.006535451283902 ], [ -75.191823191418905, 40.006582371019597 ], [ -75.191741428978304, 40.006593824562302 ], [ -75.191601407407305, 40.006613439468403 ], [ -75.191486423985907, 40.006629545947099 ], [ -75.191149715281597, 40.006677045568701 ], [ -75.190812602140994, 40.006722641281598 ], [ -75.190474580639403, 40.006763912554199 ], [ -75.190135702177102, 40.006801113706302 ], [ -75.189796737008507, 40.006837900172698 ], [ -75.188757563172302, 40.006886426832303 ], [ -75.188708919284693, 40.006851729539498 ] ] ] } }, +{ "type": "Feature", "properties": { "objectid": 67, "disday": "2D", "sandis": "2D", "collday": " ", "Shape__Area": 25721354.77734375, "Shape__Length": 23774.980586947819 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.212431739052704, 39.910747990796402 ], [ -75.211969547064399, 39.910737244332203 ], [ -75.210366516616205, 39.910491289714997 ], [ -75.190076572796798, 39.907529668015997 ], [ -75.189407161058398, 39.907471343390696 ], [ -75.187885745971798, 39.907253883672503 ], [ -75.187554937033497, 39.907206182237402 ], [ -75.186988195849906, 39.907158370778497 ], [ -75.186267386936507, 39.907072056392501 ], [ -75.185303045467506, 39.906935160459099 ], [ -75.185126403940899, 39.9069104888518 ], [ -75.184329635504199, 39.906799203061198 ], [ -75.1833907405845, 39.906626691983597 ], [ -75.178151436659206, 39.9059559799461 ], [ -75.175343936807906, 39.905596473271999 ], [ -75.1741435790086, 39.9054427422153 ], [ -75.173849995987396, 39.905427630470697 ], [ -75.173549834864701, 39.905397629535699 ], [ -75.168516663523405, 39.904758129849199 ], [ -75.167001715051796, 39.904553745600197 ], [ -75.164645160643403, 39.904253012832697 ], [ -75.162309293256698, 39.903952605343498 ], [ -75.160601770448196, 39.903740722255698 ], [ -75.1605270800803, 39.903731453908598 ], [ -75.158433116469496, 39.903471581400701 ], [ -75.156269962183899, 39.903168284844497 ], [ -75.154733351145495, 39.902977791881497 ], [ -75.153429771330195, 39.902788390578898 ], [ -75.152877990854904, 39.9027164231955 ], [ -75.152226181886604, 39.902596921741399 ], [ -75.151178616009801, 39.902434270949797 ], [ -75.150967863016803, 39.9024015466319 ], [ -75.150200469691498, 39.9022823888589 ], [ -75.131699476084606, 39.899685534905799 ], [ -75.131757136821406, 39.899548290293801 ], [ -75.133205054754498, 39.896272493531903 ], [ -75.135522795600593, 39.891855245949102 ], [ -75.135854904449602, 39.891274226423 ], [ -75.136287730221596, 39.890759135204803 ], [ -75.136891720810695, 39.890088865595501 ], [ -75.137731818792005, 39.889185355575698 ], [ -75.137749304799598, 39.889168069717797 ], [ -75.139556371275106, 39.887381605906199 ], [ -75.140390911776706, 39.886621122320697 ], [ -75.141119226384205, 39.885937754627598 ], [ -75.142344513239706, 39.885217968313398 ], [ -75.143308184567204, 39.884858102128902 ], [ -75.144608039364897, 39.884346791490998 ], [ -75.1461657333152, 39.884111760892601 ], [ -75.1523739475534, 39.883759505990199 ], [ -75.157633064338, 39.883385451286003 ], [ -75.159973463801705, 39.883199753672997 ], [ -75.162173060184699, 39.882915380649798 ], [ -75.163122372420304, 39.882757008727502 ], [ -75.164188773112301, 39.882579093496403 ], [ -75.1669968885316, 39.882037927027902 ], [ -75.169656925629596, 39.881588803158998 ], [ -75.172145860660805, 39.881294849028798 ], [ -75.175046783060196, 39.8810260068785 ], [ -75.178234706790306, 39.880811256221698 ], [ -75.179289264697701, 39.880771286788402 ], [ -75.184569480509197, 39.880921432370499 ], [ -75.185418327704596, 39.880860893821797 ], [ -75.186267777168993, 39.880784454253003 ], [ -75.186461451650501, 39.8807487398009 ], [ -75.187037096567806, 39.8806425869628 ], [ -75.187663196839694, 39.880465695805803 ], [ -75.188332350684107, 39.880242040852401 ], [ -75.188981467567402, 39.880002026063899 ], [ -75.189106826966196, 39.879944430240201 ], [ -75.190137072888803, 39.8794710777399 ], [ -75.193969253762603, 39.877784653096903 ], [ -75.1941663444575, 39.877697914043502 ], [ -75.194513091791507, 39.884259002765802 ], [ -75.1946997312576, 39.886816916788597 ], [ -75.194766961786797, 39.887738278281397 ], [ -75.194966842343206, 39.888727246145798 ], [ -75.194989231417793, 39.888838019639103 ], [ -75.195314388209994, 39.889934651381502 ], [ -75.1956659541801, 39.890722155442198 ], [ -75.196069457331404, 39.891342990292998 ], [ -75.196592369714395, 39.891928734356497 ], [ -75.197083113399003, 39.892342866159296 ], [ -75.197388287025404, 39.892534020974303 ], [ -75.197633024866903, 39.892687318495199 ], [ -75.198361772230498, 39.893009719469397 ], [ -75.198418320942196, 39.893034737028103 ], [ -75.199434584033, 39.893365556790698 ], [ -75.200460330274296, 39.893630884096901 ], [ -75.204867967876098, 39.894430319618898 ], [ -75.205730278030202, 39.894645924744303 ], [ -75.206414038265905, 39.894816880719098 ], [ -75.207240606580697, 39.8951050183367 ], [ -75.208021506590299, 39.895451869104797 ], [ -75.209066148479806, 39.896004349950502 ], [ -75.210211084509595, 39.896687563291799 ], [ -75.211031281041201, 39.897237415315303 ], [ -75.211667004588307, 39.897732428096603 ], [ -75.211718577608707, 39.897778156297498 ], [ -75.212620510680907, 39.898577880330798 ], [ -75.213240336398002, 39.8992628741224 ], [ -75.213894460189906, 39.900253538530599 ], [ -75.2144493972379, 39.901289000233803 ], [ -75.214899012388997, 39.902347528949498 ], [ -75.215194357201, 39.903295436903697 ], [ -75.215407813905699, 39.904260495864797 ], [ -75.215557720417706, 39.905228722789701 ], [ -75.215620118486598, 39.9060625540668 ], [ -75.215619543432894, 39.9069215104969 ], [ -75.215619464640397, 39.907040039142203 ], [ -75.215556444311503, 39.9084459088862 ], [ -75.215462970920399, 39.909147412171102 ], [ -75.215291250441993, 39.9096288582898 ], [ -75.215277236446795, 39.909668148380099 ], [ -75.214992710090101, 39.910031161760401 ], [ -75.214587659064193, 39.910340315990297 ], [ -75.214284181415707, 39.910491705631301 ], [ -75.213793468984704, 39.910633797981497 ], [ -75.213252893143405, 39.9107131870365 ], [ -75.212508960070494, 39.910749785575703 ], [ -75.212431739052704, 39.910747990796402 ] ] ] } } +] +} diff --git a/datacleaning/data_filters.R b/datacleaning/data_filters.R new file mode 100644 index 0000000..045a3a0 --- /dev/null +++ b/datacleaning/data_filters.R @@ -0,0 +1,61 @@ +library(tidyverse) +library(dplyr) +library(sf) +library(jsonlite) + + +crashes <- st_read("https://services.arcgis.com/fLeGjb7u4uXqeF9q/arcgis/rest/services/collision_crash_2018_2022/FeatureServer/0/query?where=crash_year%3D2022&objectIds=&geometry=&geometryType=esriGeometryEnvelope&inSR=&spatialRel=esriSpatialRelIntersects&resultType=none&distance=0.0&units=esriSRUnit_Meter&relationParam=&returnGeodetic=false&outFields=*&returnGeometry=true&featureEncoding=esriDefault&multipatchOption=xyFootprint&maxAllowableOffset=&geometryPrecision=&outSR=&defaultSR=&datumTransformation=&applyVCSProjection=false&returnIdsOnly=false&returnUniqueIdsOnly=false&returnCountOnly=false&returnExtentOnly=false&returnQueryGeometry=false&returnDistinctValues=false&cacheHint=false&collation=&orderByFields=&groupByFieldsForStatistics=&outStatistics=&having=&resultOffset=&resultRecordCount=&returnZ=false&returnM=false&returnTrueCurves=false&returnExceededLimitFeatures=true&quantizationParameters=&sqlFormat=none&f=pgeojson&token=") # nolint + +investigations <- read_csv("https://phl.carto.com/api/v2/sql?filename=car_ped_stops&format=csv&skipfields=cartodb_id,the_geom,the_geom_webmercator&q=SELECT%20*,%20ST_Y(the_geom)%20AS%20lat,%20ST_X(the_geom)%20AS%20lng%20FROM%20car_ped_stops%20WHERE%20datetimeoccur%20%3E=%20%272022-01-01%27%20AND%20datetimeoccur%20%3C%20%272023-01-01%27") %>% # nolint: line_length_linter. + st_as_sf(coords = c('lng', 'lat')) %>% # nolint + st_set_crs("EPSG: 4326") + +#https://walk.dvrpc.org/help/glossary/ +ramps <- st_read("https://arcgis.dvrpc.org/portal/rest/services/Transportation/pedestriannetwork_points/FeatureServer/0/query?where=county%20%3D%20'PHILADELPHIA'&outFields=*&outSR=4326&f=json") # nolint +write_json(ramps, "/Users/amysolano/Documents/GitHub/engagement-project/data/ramps.json") + + +sidewalks <- st_read("https://arcgis.dvrpc.org/portal/rest/services/Transportation/pedestriannetwork_lines/FeatureServer/0/query?where=county%20%3D%20'PHILADELPHIA'&outFields=line_type,material,material_o,feat_type,raised,width,captured,state,county,muni,community,ped_sig,Shape__Length,vertchange,cracking,cross_slope,fix_obstr,veg,over_obj,buff_zone,st_light,tree,cond_date&outSR=4326&f=json") # nolint +write_json(sidewalks, "/Users/amysolano/Documents/GitHub/engagement-project/data/sidewalks.json") # nolint + + +ped_crashes <- crashes %>% + filter(ped_count > 0) +# percent of all crashes: 0.1528969 +write_json(ped_crashes, "/Users/amysolano/Documents/GitHub/engagement-project/data/ped_crashes.json") + +investigations <- investigations %>% + mutate(mvc_code = as.numeric(gsub("\\D", "", investigations$mvc_code)), + mvc_reason = toupper(mvc_reason)) %>% + filter(stoptype == "vehicle" & + point_x > -76 & + str_detect(mvc_reason, "RED|SPEED|SIGN|PEDESTRIAN|SIDEWALK|CROSSWALK|DISREGARD|PARKING|PARKED|BIKE|CROSS WALK|TURN|BUS|CURB|MPH")) %>% # nolint + drop_na(mvc_code) %>% + select(objectid, districtoccur, age, mvc_reason, geometry) + +ped_inves <- investigations %>% + filter(str_detect(mvc_reason, + "PEDESTRIAN|SIDEWALK|CROSSWALK|BIKE")) # nolint +write_json(ped_inves, "/Users/amysolano/Documents/GitHub/engagement-project/data/ped_inv.json") + +`%notin%` <- Negate(`%in%`) +ppa_csv <- read_csv("https://phl.carto.com/api/v2/sql?filename=parking_violations&format=csv&skipfields=cartodb_id,the_geom,the_geom_webmercator&q=SELECT%20*%20FROM%20parking_violations%20WHERE%20issue_datetime%20%3E=%20%272017-07-01%27%20AND%20issue_datetime%20%3C%20%272018-01-01%27") %>% # nolint + drop_na(c('lon','lat')) %>% + filter(anon_ticket_number %notin% c(8543657,9256982,8973963, 8973261) & str_detect(violation_desc, # nolint + "BLOCKING|CORNER|CROSSWALK|HP|SIDEWALK|INTERSECTION")) %>% # nolint + mutate(violation = case_when( + violation_desc == "BLOCKING DRIVEWAY" | violation_desc == "BLOCKING DRIVEWAY CC" ~ "BLOCKING DRIVEWAY", # nolint + violation_desc == "CORNER CLEARANCE" | violation_desc == "CORNER CLEARANCE CC" ~ "CORNER CLEARANCE", # nolint + violation_desc == "COUNTERFEIT HP PERM" | violation_desc == "FRAUD PARK HP SPACE" | # nolint + violation_desc == "HP RAMP BLOCKED" | violation_desc == "HP RESERVED SPACE" ~ "HANDICAP VIOLATION", # nolint + violation_desc == "CROSSWALK" | violation_desc == "CROSSWALK CC" ~ "CROSSWALK", # nolint + violation_desc == "SIDEWALK" | violation_desc == "SIDEWALK CC" ~ "SIDEWALK", # nolint + violation_desc == "INTERSECTION CC" | violation_desc == "STOP IN INTERSECTION " ~ "INTERSECTION" # nolint + )) %>% + drop_na(violation) %>% + filter(violation %in% c("CROSSWALK","CORNER CLEARANCE","SIDEWALK")) %>% # nolint + select(location, violation_desc, lon, lat, violation) + +write.csv(ppa_csv,"/Users/amysolano/Documents/GitHub/engagement-project/data/ppa.csv", row.names = FALSE) +write_json(ppa_csv, "/Users/amysolano/Documents/GitHub/engagement-project/data/ppa.json") + # nolint diff --git a/img/octagon-exclamation.png b/img/octagon-exclamation.png new file mode 100644 index 0000000..2834686 Binary files /dev/null and b/img/octagon-exclamation.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..04c2eb9 --- /dev/null +++ b/index.html @@ -0,0 +1,48 @@ + + + + + + + Clear Paths PHL + + + + + + +
+ +
+
+

Report obstructions here to help find safe and clear routes for all! Please note that you must have location services enabled to make a report.

+
+

+ +
+

+ +
+
+ + +
+ +
+ +
+
+ + + + + + + + + diff --git a/js/firebase.js b/js/firebase.js new file mode 100644 index 0000000..9096bc2 --- /dev/null +++ b/js/firebase.js @@ -0,0 +1,26 @@ +// Import the functions you need from the SDKs you need +import { initializeApp } from "https://www.gstatic.com/firebasejs/9.15.0/firebase-app.js"; +import { getDatabase, ref, push, onValue } from "https://www.gstatic.com/firebasejs/9.15.0/firebase-database.js"; +import { getAnalytics } from "https://www.gstatic.com/firebasejs/9.15.0/firebase-analytics.js"; +// TODO: Add SDKs for Firebase products that you want to use +// https://firebase.google.com/docs/web/setup#available-libraries + +// Your web app's Firebase configuration +// For Firebase JS SDK v7.20.0 and later, measurementId is optional +const firebaseConfig = { + apiKey: "AIzaSyBMmpbsiI-8HJ6voovk6YiWS8eoLSfm3EU", + authDomain: "clear-paths-phl.firebaseapp.com", + projectId: "clear-paths-phl", + storageBucket: "clear-paths-phl.firebasestorage.app", + messagingSenderId: "109790454993", + appId: "1:109790454993:web:f363fa81273237cc1551f0", + measurementId: "G-KM5RR1MHED", + databaseURL: "clear-paths-phl-default-rtdb.firebaseio.com/" +}; + +const app = initializeApp(firebaseConfig); +const analytics = getAnalytics(app); +const db = getDatabase(app); +const reportsRef = ref(db, 'reports'); + +export { app, analytics, db, ref, push, onValue, reportsRef }; \ No newline at end of file diff --git a/js/main.js b/js/main.js new file mode 100644 index 0000000..c453799 --- /dev/null +++ b/js/main.js @@ -0,0 +1,74 @@ +import { db, ref, push } from './firebase.js'; +import { initMap } from './navigation.js'; + +const mapboxToken = 'pk.eyJ1Ijoic29sYW5vYSIsImEiOiJjbTR3ZWU4MzAwY3JkMmpwb252czJudDVjIn0.6GUU4rEhxQx-bsGw5d7zeQ'; + +const el = document.querySelector('.map'); +console.log('Map container found:', el); +initMap(el, mapboxToken); + +const reportButton = document.getElementById('report-button'); +const formContainer = document.querySelector('.form-container'); +const closeButton = document.getElementById('close-form-button'); + +reportButton.addEventListener('click', () => { + formContainer.style.display = 'block'; + getUserLocation(); +}); + +closeButton.addEventListener('click', () => { + formContainer.style.display = 'none'; +}); + +formContainer.addEventListener('submit', (event) => { + event.preventDefault(); + + const location = document.getElementById('location').value; + const description = document.getElementById('description').value; + const category = document.getElementById('category').value; + + const reportsRef = ref(db, 'reports'); + push(reportsRef, { + location: location, + description: description, + category: category, + timestamp: firebase.database.ServerValue.TIMESTAMP + }) + .then(() => { + console.log('Report added successfully!'); + }) + .catch((error) => { + console.error('Error adding report:', error); + }); +}); + +function getUserLocation() { + if (navigator.geolocation) { + navigator.geolocation.getCurrentPosition(showPosition, showError); + } else { + alert("Geolocation is not supported by this browser."); + } +} + +function showPosition(position) { + const latitude = position.coords.latitude; + const longitude = position.coords.longitude; + document.getElementById('location').value = `${latitude}, ${longitude}`; +} + +function showError(error) { + switch (error.code) { + case error.PERMISSION_DENIED: + alert("User denied the request for Geolocation."); + break; + case error.POSITION_UNAVAILABLE: + alert("Location information is unavailable."); + break; + case error.TIMEOUT: + alert("The request to get user location timed out."); + break; + case error.UNKNOWN_ERROR: + alert("An unknown error occurred."); + break; + } +} \ No newline at end of file diff --git a/js/navigation.js b/js/navigation.js new file mode 100644 index 0000000..33b5254 --- /dev/null +++ b/js/navigation.js @@ -0,0 +1,276 @@ +import { db, ref, onValue } from "./firebase.js"; + +async function initMap(El, mapboxToken) { + const map = new mapboxgl.Map({ + container: El, + style: 'mapbox://styles/mapbox/light-v11', + center: [-75.16, 39.95], + zoom: 12, + accessToken: mapboxToken, + }); + + const geocoder = { + accessToken: mapboxToken, + mapboxgl: mapboxgl, + bbox: [-75.28918, 39.88428, -74.93725, 40.12464], + }; + + const directions = new MapboxDirections({ + accessToken: mapboxToken, + unit: 'imperial', + profile: 'mapbox/walking', + alternatives: true, + interactive: false, + geocoder: geocoder, + controls: { + profileSwitcher: false, + }, + }); + + map.addControl(directions, 'top-left'); + + let isUserInteracting = false; + + map.on('mousedown', () => { + isUserInteracting = true; + }); + + map.on('mouseup', () => { + isUserInteracting = false; + }); + + const geolocate = new mapboxgl.GeolocateControl({ + positionOptions: { enableHighAccuracy: true }, + trackUserLocation: true, + showUserHeading: true, + }); + map.addControl(geolocate); + + map.on('load', () => { + geolocate.trigger(); + }); + + let debounceTimer; + + geolocate.on('geolocate', (e) => { + const userCoordinates = [e.coords.longitude, e.coords.latitude]; + directions.setOrigin(userCoordinates); + + clearTimeout(debounceTimer); + debounceTimer = setTimeout(() => { + map.flyTo({ + center: userCoordinates, + zoom: 14, + }); + }, 3000); + }); + + geolocate.on('error', () => { + console.error('Failed to get position!'); + }); + + const rampsResponse = await fetch("data/ramps.json"); + const rampsCollection = await rampsResponse.json(); + + const saniResponse = await fetch("data/sanitation_day.json"); + const sanitation = await saniResponse.json(); + + const ppaResponse = await fetch("data/ppa.json"); + const ppaViols = await ppaResponse.json(); + + delete ppaViols.features[0].properties.violation_desc; + + map.on('load', () => { + const weekday = ["SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT"]; + const d = new Date(); + const todayWeekday = weekday[d.getDay()]; + + map.addSource('sanitation', { + type: 'geojson', + data: sanitation, + }); + + map.addLayer({ + id: 'sanitation-layer', + type: 'fill', + source: 'sanitation', + filter: ["==", ["get", "collday"], todayWeekday], + paint: { + "fill-color": "#ff5722", + "fill-opacity": 0.5, + }, + }); + + map.addSource('ramps', { + type: 'geojson', + data: rampsCollection, + }); + + map.addLayer({ + id: 'ramps-layer', + type: 'circle', + source: 'ramps', + paint: { + 'circle-radius': 3, + 'circle-color': 'firebrick', + 'circle-opacity': 0.4, + 'circle-stroke-width': 1, + 'circle-stroke-color': 'firebrick', + }, + }); + + map.on('click', 'ramps-layer', (e) => { + const coordinates = e.features[0].geometry.coordinates.slice(); + const description = 'Missing curb ramp'; + + new mapboxgl.Popup() + .setLngLat(coordinates) + .setHTML(description) + .addTo(map); + }); + + map.on('mouseenter', 'ramps-layer', () => { + map.getCanvas().style.cursor = 'pointer'; + }); + + map.on('mouseleave', 'ramps-layer', () => { + map.getCanvas().style.cursor = ''; + }); + + map.addSource('ppa', { + type: 'geojson', + data: ppaViols, + cluster: true, + clusterMaxZoom: 15, + clusterRadius: 50, + }); + + map.addLayer({ + id: 'ppa-cluster', + type: 'circle', + source: 'ppa', + filter: ['all', ['!=', 'violation', 'CORNER CLEARANCE'], ['has', 'point_count']], + paint: { + 'circle-color': [ + 'step', + ['get', 'point_count'], + 'royalblue', + 20, + 'royalblue', + 90, + 'royalblue', + ], + 'circle-radius': [ + 'step', + ['get', 'point_count'], + 4, + 20, + 10, + 90, + 15, + ], + 'circle-opacity': 0.9, + }, + }); + + map.addLayer({ + id: 'ppa-cluster-count', + type: 'symbol', + source: 'ppa', + filter: ['has', 'point_count'], + layout: { + 'text-field': ['get', 'point_count_abbreviated'], + 'text-font': ['DIN Offc Pro Medium', 'Arial Unicode MS Bold'], + 'text-size': 10, + }, + paint: { + 'text-color': 'white', + }, + }); + + map.addLayer({ + id: 'unclustered-point', + type: 'circle', + source: 'ppa', + filter: ['!', ['has', 'point_count']], + paint: { + 'circle-color': 'white', + 'circle-radius': 3, + 'circle-stroke-width': 1, + 'circle-stroke-color': 'royalblue', + }, + }); + + map.on('click', 'unclustered-point', (e) => { + const coordinates = e.features[0].geometry.coordinates.slice(); + const violAddress = e.features[0].properties.location; + const violType = e.features[0].properties.violation; + + new mapboxgl.Popup() + .setLngLat(coordinates) + .setHTML(`${violAddress}
Violation: ${violType}`) + .addTo(map); + }); + + map.on('mouseenter', 'ppa-cluster', () => { + map.getCanvas().style.cursor = 'pointer'; + }); + + map.on('mouseleave', 'ppa-cluster', () => { + map.getCanvas().style.cursor = ''; + }); + + function updateMapLayer(map) { + const reportsRef = ref(db, 'reports'); + + onValue(reportsRef, (snapshot) => { + const reportsData = snapshot.val(); + + const geojson = { + type: 'FeatureCollection', + features: Object.entries(reportsData).map(([key, report]) => { + const [lat, lng] = report.location.split(',').map(parseFloat); + return { + type: 'Feature', + id: key, + geometry: { + type: 'Point', + coordinates: [lng, lat], + }, + properties: { + description: report.description, + category: report.category, + }, + }; + }), + }; + + geojson.features.forEach((feature) => { + const el = document.createElement('div'); + el.className = 'marker'; + const [lng, lat] = feature.geometry.coordinates; + + const marker = new mapboxgl.Marker(el) + .setLngLat([lng, lat]) + .addTo(map); + + const popupContent = ` + Category: ${feature.properties.category}
+ Description: ${feature.properties.description} + `; + const popup = new mapboxgl.Popup({ offset: 25 }) + .setLngLat([lng, lat]) + .setHTML(popupContent); + + marker.setPopup(popup); + }); + }); + }; + + updateMapLayer(map); + }); + + document.querySelector('button.mapboxgl-ctrl-geolocate').innerHTML = 'Get current location'; +} + +export { initMap }; \ No newline at end of file diff --git a/linksToData.md b/linksToData.md new file mode 100644 index 0000000..f25e9c0 --- /dev/null +++ b/linksToData.md @@ -0,0 +1,16 @@ +**Clear Paths Philadelphia**- a navigation tool that provides walking routes to Philadelphians that account for walking safety and the likelihood of potential obstructions from parked cars, damaged sidewalks, and more. The app will use data from sources like PPA, DVRPC, and Walk Score as its base data. The engagement portion of the app will be a feature where users can submit any obstructions they come across that the algorithm will account for when creating new routes for users. + +This application is primarily intended for users who are most affected by unsafe walking conditions and sidewalk obstruction like individuals with impaired vision or cannot walk on their own, like wheelchair users, walkers, canes, and other devices to assist movement. Other users are welcome to utilize the tool and contribute potential obstructions, since being able-bodied doesn't mean that these obstructions aren't inconvenient and dangerous. Some users are more vulnerable than others, but obstructions are unsafe for *everyone on the path*. + +Here I compile the datasets that I will be using to access later on and also document exactly what I am looking at. For data that span many years, I will make an API call that looks at the last 5-7 years to get a better idea for recent trends. + +- The [Complete Streets Dataset](https://opendataphilly.org/datasets/complete-streets/) provides a lot of information about the streets of Philly for the purpose of building complete streets. For me, the important information this dataset contains are speed limit, sidewalk width, street type, and street geometry. +- The [Parking Violations Dataset](https://opendataphilly.org/datasets/parking-violations/) will give information about the where there are pedestrian-unfriendly violations in the city. This dataset will require some cleaning. +- Walk Score - obtained API key +- [Crash data](https://opendataphilly.org/datasets/vehicular-crashes/) to get an idea about crashes that involve pedestrians +- [Vision Zero High Injury Network](https://opendataphilly.org/datasets/vision-zero-high-injury-network/) another reference for streets where pedestrians may be at higher risk +- [Vehicle and Pedestrian Investigations](https://opendataphilly.org/datasets/vehicle-pedestrian-investigations/) police data about people who got pulled over, can filter down to offenses that involve driving on sidewalk, failing to yield for pedestrians, running red lights/stop signs, things like that. +- DVRPC [Pedestrian Network (Lines)](https://dvrpc-dvrpcgis.opendata.arcgis.com/datasets/40186cee01824f11a407766e0cf32940_0/explore?filters=eyJjb3VudHkiOlsiUEhJTEFERUxQSElBIl19&location=39.951338%2C-75.168345%2C18.30) & [Pedestrian Network (Points)](https://dvrpc-dvrpcgis.opendata.arcgis.com/datasets/ec3411c2564640a58e7c3657c17d4f29/explore?filters=eyJjb3VudHkiOlsiUEhJTEFERUxQSElBIl19&location=39.958969%2C-75.159269%2C16.48) to have more info about the sidewalk network itself, the status of ADA ramps, and the with the help of some JavaScript, the length of crossings. +- [Sanitation Collection Day Boundary](https://opendataphilly.org/datasets/sanitation-collection-day-boundary/) for information on trash day throughout the city to see if users are likely to encounter trash and trash bins along the route. + + diff --git a/report.html b/report.html new file mode 100644 index 0000000..9ae154e --- /dev/null +++ b/report.html @@ -0,0 +1,39 @@ + + + + + + + + Report an Obstruction + + + + + +
+ +

Make a report

+

User reports are important to Clear Paths PHL, providing valuable information + that makes our walk routes safer. If you come across an obstruction or other + events that may affect the pedestrian experience, please use our reporting tool. +

+
+ + + + \ No newline at end of file